HomeSort by relevance Sort by last modified time
    Searched refs:RecTy (Results 1 - 6 of 6) sorted by null

  /external/llvm/include/llvm/TableGen/
Record.h 31 // RecTy subclasses.
69 class RecTy {
90 RecTy(RecTyKind K) : Kind(K), ListTy(0) {}
91 virtual ~RecTy() {}
99 virtual bool typeIsConvertibleTo(const RecTy *RHS) const = 0;
132 virtual bool baseClassOf(const RecTy*) const;
135 inline raw_ostream &operator<<(raw_ostream &OS, const RecTy &Ty) {
143 class BitRecTy : public RecTy {
145 BitRecTy() : RecTy(BitRecTyKind) {}
147 static bool classof(const RecTy *RT)
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 28 class RecTy;
169 Init *ParseSimpleValue(Record *CurRec, RecTy *ItemType = 0,
171 Init *ParseValue(Record *CurRec, RecTy *ItemType = 0,
174 RecTy *EltTy = 0);
180 RecTy *ParseType();
182 RecTy *ParseOperatorType();
Record.cpp 89 void RecTy::anchor() { }
90 void RecTy::dump() const { print(errs()); }
92 ListRecTy *RecTy::getListTy() {
98 bool RecTy::baseClassOf(const RecTy *RHS) const{
116 RecTy *Ty = VI->getType();
122 bool BitRecTy::baseClassOf(const RecTy *RHS) const{
123 if(RecTy::baseClassOf(RHS) || getRecTyKind() == IntRecTyKind)
205 bool BitsRecTy::baseClassOf(const RecTy *RHS) const{
206 if (RecTy::baseClassOf(RHS)) //argument and the receiver are the same typ
    [all...]
TGParser.cpp 411 RecTy *Type = 0;
677 RecTy *TGParser::ParseType() {
711 RecTy *SubType = ParseType();
810 RecTy *Type = 0;
927 RecTy *Type = 0;
990 RecTy *Type = 0;
1042 RecTy *MHSTy = 0;
1043 RecTy *RHSTy = 0;
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 55 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
56 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 576 RecTy *RegisterRecTy = RecordRecTy::get(RegisterCl);
    [all...]

Completed in 214 milliseconds