Home
last modified time | relevance | path

Searched refs:TypeID (Results 1 – 25 of 36) sorted by relevance

12

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DBinary.h34 unsigned int TypeID;
105 return TypeID > ID_StartObjects && TypeID < ID_EndObjects; in isObject()
121 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B; in isELF()
125 return TypeID >= ID_MachO32L && TypeID <= ID_MachO64B; in isMachO()
129 return TypeID == ID_COFF; in isCOFF()
132 bool isXCOFF() const { return TypeID == ID_XCOFF32 || TypeID == ID_XCOFF64; } in isXCOFF()
137 return TypeID == ID_COFFImportFile; in isCOFFImportFile()
141 return TypeID == ID_IR; in isIR()
149 return !(TypeID == ID_ELF32B || TypeID == ID_ELF64B || in isLittleEndian()
150 TypeID == ID_MachO32B || TypeID == ID_MachO64B || in isLittleEndian()
[all …]
H A DWindowsResource.h69 support::ulittle16_t TypeID; member
75 TypeID = ID; in setType()
103 uint16_t getTypeID() const { return TypeID; } in getTypeID()
128 uint16_t TypeID; variable
265 void printResourceTypeName(uint16_t TypeID, raw_ostream &OS);
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DARMException.cpp125 unsigned TypeID = *I; in emitTypeInfos() local
128 if (TypeID != 0) in emitTypeInfos()
132 Asm->emitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]), in emitTypeInfos()
H A DEHStreamer.cpp124 int TypeID = TypeIds[J]; in computeActionsTable() local
125 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!"); in computeActionsTable()
127 isFilterEHSelector(TypeID) ? FilterOffsets[-1 - TypeID] : TypeID; in computeActionsTable()
832 unsigned TypeID = *I; in emitTypeInfos() local
835 if (isFilterEHSelector(TypeID)) in emitTypeInfos()
839 Asm->emitULEB128(TypeID); in emitTypeInfos()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp102 using TypeID = Type::TypeID; typedef
103 const Type::TypeID FloatTyID = Type::FloatTyID;
104 const Type::TypeID DoubleTyID = Type::DoubleTyID;
111 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID(); in whichFPParamVariantNeeded()
122 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID(); in whichFPParamVariantNeeded()
123 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID(); in whichFPParamVariantNeeded()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DType.h54 enum TypeID { enum
84 TypeID ID : 8; // The current base type of this type.
92 explicit Type(LLVMContext &C, TypeID tid) in Type()
135 TypeID getTypeID() const { return ID; } in getTypeID()
407 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
H A DGlobalObject.h138 void addTypeMetadata(unsigned Offset, Metadata *TypeID);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp312 Metadata *TypeID; member
330 return DenseMapInfo<Metadata *>::getHashValue(I.TypeID) ^ in getHashValue()
335 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset; in isEqual()
349 return DenseMapInfo<StringRef>::getHashValue(I.TypeID) ^ in getHashValue()
354 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset; in isEqual()
958 auto TypeID = Type->getOperand(1).get(); in buildTypeIdentifierMap() local
965 TypeIdMap[TypeID].insert({BitsPtr, Offset}); in buildTypeIdentifierMap()
1281 if (isa<MDString>(Slot.TypeID)) { in tryICallBranchFunnel()
1939 auto *TypeId = dyn_cast<MDString>(Slot.TypeID); in importResolution()
2132 if (ExportSummary && isa<MDString>(S.first.TypeID) && in run()
[all …]
H A DGlobalDCE.cpp180 Metadata *TypeID = Type->getOperand(1).get(); in ScanVTables() local
187 TypeIdMap[TypeID].insert(std::make_pair(&GV, Offset)); in ScanVTables()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DInstructionSelectorImpl.h239 const int64_t TypeID = TyI->second; in executeMatchTable() local
240 if (TypeID < LowerBound || UpperBound <= TypeID) { in executeMatchTable()
244 CurrentIdx = MatchTable[CurrentIdx + (TypeID - LowerBound)]; in executeMatchTable()
581 int64_t TypeID = MatchTable[CurrentIdx++]; in executeMatchTable() local
585 << "), TypeID=" << TypeID << ")\n"); in executeMatchTable()
589 MRI.getType(MO.getReg()) != ISelInfo.TypeObjects[TypeID]) { in executeMatchTable()
1123 int64_t TypeID = MatchTable[CurrentIdx++]; in executeMatchTable() local
1126 MRI.createGenericVirtualRegister(ISelInfo.TypeObjects[TypeID]); in executeMatchTable()
1129 << "] = GIR_MakeTempReg(" << TypeID << ")\n"); in executeMatchTable()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTBitCodes.h85 using TypeID = uint32_t; variable
97 TypeID asTypeID(unsigned FastQuals) const { in asTypeID()
99 return TypeID(-1); in asTypeID()
104 static TypeIdx fromTypeID(TypeID ID) { in fromTypeID()
105 if (ID == TypeID(-1)) in fromTypeID()
H A DASTWriter.h242 serialization::TypeID FirstTypeID = serialization::NUM_PREDEF_TYPE_IDS;
245 serialization::TypeID NextTypeID = FirstTypeID;
622 serialization::TypeID GetOrCreateTypeID(QualType T);
625 serialization::TypeID getTypeID(QualType T) const;
H A DModuleFile.h480 serialization::TypeID BaseTypeIndex = 0;
H A DASTReader.h472 ContinuousRangeMap<serialization::TypeID, ModuleFile *, 4>;
844 SmallVector<serialization::TypeID, 16> SpecialTypes;
1084 SmallVector<std::pair<FunctionDecl *, serialization::TypeID>, 16>
1800 QualType GetType(serialization::TypeID ID);
1806 serialization::TypeID getGlobalTypeID(ModuleFile &F, unsigned LocalID) const;
H A DASTRecordReader.h167 serialization::TypeID getGlobalTypeID(unsigned LocalID) const { in getGlobalTypeID()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp958 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType() local
961 if (*TypeID) in EnumerateType()
969 *TypeID = ~0U; in EnumerateType()
977 TypeID = &TypeMap[Ty]; in EnumerateType()
984 if (*TypeID && *TypeID != ~0U) in EnumerateType()
990 *TypeID = Types.size(); in EnumerateType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.h50 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) { in MakeTypeID()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTF.h247 uint32_t TypeID; ///< TypeID for the relocation member
H A DBTFDebug.h245 uint32_t TypeID; ///< Type ID member
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DBinary.cpp38 : TypeID(Type), Data(Source) {} in Binary()
H A DWindowsResource.cpp125 RETURN_IF_ERROR(readStringOrId(Reader, TypeID, Type, IsStringType)); in loadNext()
143 void printResourceTypeName(uint16_t TypeID, raw_ostream &OS) { in printResourceTypeName() argument
144 switch (TypeID) { in printResourceTypeName()
166 default: OS << "ID " << TypeID; break; in printResourceTypeName()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h178 unsigned int getType() const { return TypeID; } in getType()
187 unsigned int TypeID;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h238 StringRef TypeID; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp39 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType()
627 VectorType::VectorType(Type *ElType, unsigned EQ, Type::TypeID TID) in VectorType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp555 auto TypeID = Type->getOperand(1).get(); in recordTypeIdCompatibleVtableReferences() local
562 if (auto *TypeId = dyn_cast<MDString>(TypeID)) in recordTypeIdCompatibleVtableReferences()

12