OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntRecTy
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/TableGen/
Record.cpp
85
IntRecTy
IntRecTy
::Shared;
131
bool
IntRecTy
::typeIsConvertibleTo(const RecTy *RHS) const {
246
if (isa<
IntRecTy
>(Ty))
300
if (isa<
IntRecTy
>(Ty)) {
415
if (isa<
IntRecTy
>(Ty))
677
if (isa<
IntRecTy
>(getType())) {
679
if (Init *NewInit = BI->convertInitializerTo(
IntRecTy
::get()))
798
dyn_cast_or_null<IntInit>(LHS->convertInitializerTo(
IntRecTy
::get()));
800
dyn_cast_or_null<IntInit>(RHS->convertInitializerTo(
IntRecTy
::get()))
[
all
...]
TGParser.cpp
670
case tgtok::Int: Lex.Lex(); return
IntRecTy
::get();
806
Type =
IntRecTy
::get();
895
case tgtok::XADD: Code = BinOpInit::ADD; Type =
IntRecTy
::get(); break;
896
case tgtok::XAND: Code = BinOpInit::AND; Type =
IntRecTy
::get(); break;
897
case tgtok::XSRA: Code = BinOpInit::SRA; Type =
IntRecTy
::get(); break;
898
case tgtok::XSRL: Code = BinOpInit::SRL; Type =
IntRecTy
::get(); break;
899
case tgtok::XSHL: Code = BinOpInit::SHL; Type =
IntRecTy
::get(); break;
[
all
...]
/external/llvm/include/llvm/TableGen/
Record.h
118
///
IntRecTy
- 'int' - Represent an integer value of no particular size
120
class
IntRecTy
: public RecTy {
121
static
IntRecTy
Shared;
122
IntRecTy
() : RecTy(IntRecTyKind) {}
129
static
IntRecTy
*get() { return &Shared; }
513
: TypedInit(IK_IntInit,
IntRecTy
::get()), Value(V) {}
885
(isa<
IntRecTy
>(T->getType()) ||
[
all
...]
/external/llvm/utils/TableGen/
CodeGenInstruction.cpp
534
dyn_cast_or_null<IntInit>(BI->convertInitializerTo(
IntRecTy
::get()));
CodeGenDAGPatterns.cpp
[
all
...]
Completed in 71 milliseconds