HomeSort by relevance Sort by last modified time
    Searched defs:TypeID (Results 26 - 36 of 36) sorted by null

12

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 133 int TypeID = TypeIds[J];
134 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
136 isFilterEHSelector(TypeID) ? FilterOffsets[-1 - TypeID] : TypeID;
640 unsigned TypeID = *I;
643 if (isFilterEHSelector(TypeID))
647 Asm->EmitULEB128(TypeID);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Type.h 54 enum TypeID {
82 TypeID ID : 8; // The current base type of this type.
89 explicit Type(LLVMContext &C, TypeID tid)
112 static bool isSequentialType(TypeID TyID) {
134 /// Return the type id for the type. This will return one of the TypeID enum
136 TypeID getTypeID() const { return ID; }
372 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
YAMLParser.h 147 unsigned int getType() const { return TypeID; }
168 unsigned int TypeID;
  /external/llvm/lib/AsmParser/
LLParser.cpp 357 unsigned TypeID = Lex.getUIntVal();
366 NumberedTypes[TypeID], Result)) return true;
369 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
LLParser.cpp 424 unsigned TypeID = Lex.getUIntVal();
433 NumberedTypes[TypeID], Result)) return true;
436 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
772 "Expected 'gv', 'module', or 'typeid' at the start of summary entry");
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp 955 case bitc::TST_CODE_ENTRY: // TST_ENTRY: [typeid, namechar x N]
958 unsigned TypeID = Record[0];
959 if (TypeID >= TypeList.size())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 99 "Import typeid resolutions from summary and globals"),
101 "Export typeid resolutions to summary and globals")),
237 // A slot in a set of virtual tables. The TypeID identifies the set of virtual
241 Metadata *TypeID;
259 return DenseMapInfo<Metadata *>::getHashValue(I.TypeID) ^
264 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
681 auto TypeID = Type->getOperand(1).get();
688 TypeIdMap[TypeID].insert({BitsPtr, Offset});
847 if (isa<MDString>(Slot.TypeID)) {
    [all...]
  /external/clang/include/clang/Serialization/
ASTBitCodes.h 80 typedef uint32_t TypeID;
90 TypeID asTypeID(unsigned FastQuals) const {
92 return TypeID(-1);
96 static TypeIdx fromTypeID(TypeID ID) {
97 if (ID == TypeID(-1))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 356 milliseconds

12