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

  /external/llvm/include/llvm/TableGen/
Record.h 40 class RecTy {
60 RecTy(RecTyKind K) : Kind(K) {}
61 virtual ~RecTy() {}
69 virtual bool typeIsConvertibleTo(const RecTy *RHS) const;
75 inline raw_ostream &operator<<(raw_ostream &OS, const RecTy &Ty) {
82 class BitRecTy : public RecTy {
84 BitRecTy() : RecTy(BitRecTyKind) {}
87 static bool classof(const RecTy *RT) {
95 bool typeIsConvertibleTo(const RecTy *RHS) const override;
100 class BitsRecTy : public RecTy {
    [all...]
  /external/llvm/lib/TableGen/
TGParser.h 28 class RecTy;
170 Init *ParseSimpleValue(Record *CurRec, RecTy *ItemType = nullptr,
172 Init *ParseValue(Record *CurRec, RecTy *ItemType = nullptr,
175 RecTy *EltTy = nullptr);
181 RecTy *ParseType();
182 Init *ParseOperation(Record *CurRec, RecTy *ItemType);
183 RecTy *ParseOperatorType();
Record.cpp 89 void RecTy::dump() const { print(errs()); }
91 ListRecTy *RecTy::getListTy() {
97 bool RecTy::typeIsConvertibleTo(const RecTy *RHS) const {
102 bool BitRecTy::typeIsConvertibleTo(const RecTy *RHS) const{
103 if (RecTy::typeIsConvertibleTo(RHS) || RHS->getRecTyKind() == IntRecTyKind)
124 bool BitsRecTy::typeIsConvertibleTo(const RecTy *RHS) const {
125 if (RecTy::typeIsConvertibleTo(RHS)) //argument and the sender are same type
131 bool IntRecTy::typeIsConvertibleTo(const RecTy *RHS) const {
144 bool ListRecTy::typeIsConvertibleTo(const RecTy *RHS) const
    [all...]
TGParser.cpp 399 RecTy *Type = nullptr;
664 RecTy *TGParser::ParseType() {
698 RecTy *SubType = ParseType();
769 Init *TGParser::ParseOperation(Record *CurRec, RecTy *ItemType) {
779 RecTy *Type = nullptr;
890 RecTy *Type = nullptr;
971 RecTy *Type = nullptr;
1025 RecTy *MHSTy = nullptr;
1026 RecTy *RHSTy = nullptr;
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 66 QualType RecTy = Context.getTagDeclType(RD)->getCanonicalTypeInternal();
67 return Context.getPointerType(CanQualType::CreateUnsafe(RecTy));
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 565 RecTy *RegisterRecTy = RecordRecTy::get(RegisterCl);
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 681 milliseconds