Searched refs:TypeID (Results 1 - 16 of 16) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Object/
H A DBinary.h32 unsigned int TypeID; member in class:llvm::object::Binary
66 unsigned int getType() const { return TypeID; }
71 return TypeID > ID_StartObjects && TypeID < ID_EndObjects;
75 return TypeID == ID_Archive;
79 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B;
83 return TypeID == ID_MachO;
87 return TypeID == ID_COFF;
/macosx-10.9.5/llvmCore-3425.0.33/lib/MC/
H A DMCSectionMachO.cpp229 unsigned TypeID; local
230 for (TypeID = 0; TypeID !=MCSectionMachO::LAST_KNOWN_SECTION_TYPE+1; ++TypeID)
231 if (SectionTypeDescriptors[TypeID].AssemblerName &&
232 SectionType == SectionTypeDescriptors[TypeID].AssemblerName)
236 if (TypeID > MCSectionMachO::LAST_KNOWN_SECTION_TYPE)
239 // Remember the TypeID.
240 TAA = TypeID;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DType.h49 enum TypeID { enum in class:llvm::Type
83 // Note: TypeID : low 8 bit; SubclassData : high 24 bit.
88 explicit Type(LLVMContext &C, TypeID tid)
95 void setTypeID(TypeID ID) {
97 assert(getTypeID() == ID && "TypeID data too large for field");
131 /// of the TypeID enum elements defined above.
133 TypeID getTypeID() const { return (TypeID)(IDAndSubclassData & 0xFF); }
352 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
H A DDerivedTypes.h148 explicit CompositeType(LLVMContext &C, TypeID tid) : Type(C, tid) { }
316 SequentialType(TypeID TID, Type *ElType)
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/AsmPrinter/
H A DDwarfException.cpp151 int TypeID = TypeIds[J];
152 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
153 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
702 unsigned TypeID = *I;
705 if (TypeID != 0)
709 Asm->EmitULEB128(TypeID);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Bitcode/Writer/
H A DValueEnumerator.cpp353 unsigned *TypeID = &TypeMap[Ty]; local
356 if (*TypeID)
364 *TypeID = ~0U;
372 // Refresh the TypeID pointer in case the table rehashed.
373 TypeID = &TypeMap[Ty];
380 if (*TypeID && *TypeID != ~0U)
386 *TypeID = Types.size();
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/JIT/
H A DJITDwarfEmitter.cpp270 int TypeID = TypeIds[I]; local
271 assert(-1-TypeID < (int)FilterOffsets.size() && "Unknown filter id!");
272 int ValueForTypeID = TypeID < 0 ? FilterOffsets[-1 - TypeID] : TypeID;
472 unsigned TypeID = FilterIds[j]; local
473 JCE->emitULEB128Bytes(TypeID);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Object/
H A DBinary.cpp32 : TypeID(Type)
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A DSecCFWrappers.h60 static CFTypeID k##gibliClassName##TypeID = _kCFRuntimeNotATypeID; \
71 k##gibliClassName##TypeID = _CFRuntimeRegisterClass(&k##gibliClassName##Class); \
73 return k##gibliClassName##TypeID; \
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A DSecCFWrappers.h60 static CFTypeID k##gibliClassName##TypeID = _kCFRuntimeNotATypeID; \
71 k##gibliClassName##TypeID = _CFRuntimeRegisterClass(&k##gibliClassName##Class); \
73 return k##gibliClassName##TypeID; \
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DYAMLParser.h135 unsigned int getType() const { return TypeID; }
157 unsigned int TypeID; member in class:llvm::yaml::Node
/macosx-10.9.5/llvmCore-3425.0.33/lib/AsmParser/
H A DLLParser.cpp296 unsigned TypeID = Lex.getUIntVal(); local
303 if (TypeID >= NumberedTypes.size())
304 NumberedTypes.resize(TypeID+1);
308 NumberedTypes[TypeID], Result)) return true;
311 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DType.cpp25 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DYAMLParser.cpp1574 , TypeID(Type)
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4761 unsigned TypeID = DAG.getMachineFunction().getMMI().getTypeIDFor(GV); local
4762 Res = DAG.getConstant(TypeID, MVT::i32);
/macosx-10.9.5/llvmCore-3425.0.33/bindings/ocaml/llvm/
H A Dllvm.mli52 [llvm::Type::TypeID] enumeration. *)

Completed in 148 milliseconds