OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitRecTy
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/TableGen/
Record.cpp
84
BitRecTy
BitRecTy
::Shared;
103
Init *
BitRecTy
::convertValue(BitsInit *BI) {
108
Init *
BitRecTy
::convertValue(IntInit *II) {
115
Init *
BitRecTy
::convertValue(TypedInit *VI) {
117
if (isa<
BitRecTy
>(Ty) || isa<BitsRecTy>(Ty) || isa<IntRecTy>(Ty))
122
bool
BitRecTy
::baseClassOf(const RecTy *RHS) const{
191
if (Size == 1 && isa<
BitRecTy
>(VI->getType()))
735
if (getType() ==
BitRecTy
::get())
[
all
...]
TGParser.cpp
688
case tgtok::Bit: Lex.Lex(); return
BitRecTy
::get();
927
case tgtok::XEq: Code = BinOpInit::EQ; Type =
BitRecTy
::get(); break;
[
all
...]
/external/llvm/include/llvm/TableGen/
Record.h
32
class
BitRecTy
;
140
///
BitRecTy
- 'bit' - Represent a single bit
142
class
BitRecTy
: public RecTy {
143
static
BitRecTy
Shared;
144
BitRecTy
() : RecTy(BitRecTyKind) {}
151
static
BitRecTy
*get() { return &Shared; }
[
all
...]
Completed in 903 milliseconds