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(nullptr) {}
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) {
142 class BitRecTy : public RecTy {
144 BitRecTy() : RecTy(BitRecTyKind) {}
147 static bool classof(const RecTy *RT)
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 28 class RecTy;
172 Init *ParseSimpleValue(Record *CurRec, RecTy *ItemType = nullptr,
174 Init *ParseValue(Record *CurRec, RecTy *ItemType = nullptr,
177 RecTy *EltTy = nullptr);
183 RecTy *ParseType();
184 Init *ParseOperation(Record *CurRec, RecTy *ItemType);
185 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 417 RecTy *Type = nullptr;
683 RecTy *TGParser::ParseType() {
717 RecTy *SubType = ParseType();
790 Init *TGParser::ParseOperation(Record *CurRec, RecTy *ItemType) {
800 RecTy *Type = nullptr;
918 RecTy *Type = nullptr;
998 RecTy *Type = nullptr;
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 58 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
59 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 576 RecTy *RegisterRecTy = RecordRecTy::get(RegisterCl);
    [all...]

Completed in 784 milliseconds