| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | Binary.h | 34 unsigned int TypeID; 108 return TypeID > ID_StartObjects && TypeID < ID_EndObjects; in isObject() 124 return TypeID >= ID_ELF32L && TypeID <= ID_ELF64B; in isELF() 128 return TypeID >= ID_MachO32L && TypeID <= ID_MachO64B; in isMachO() 132 return TypeID == ID_COFF; in isCOFF() 135 bool isXCOFF() const { return TypeID == ID_XCOFF32 || TypeID == ID_XCOFF64; } in isXCOFF() 142 return TypeID == ID_COFFImportFile; in isCOFFImportFile() 146 return TypeID == ID_IR; in isIR() 156 return !(TypeID == ID_ELF32B || TypeID == ID_ELF64B || in isLittleEndian() 157 TypeID == ID_MachO32B || TypeID == ID_MachO64B || in isLittleEndian() [all …]
|
| H A D | WindowsResource.h | 69 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-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | ARMException.cpp | 122 unsigned TypeID = *I; in emitTypeInfos() local 125 if (TypeID != 0) in emitTypeInfos() 129 Asm->emitTTypeReference((TypeID == 0 ? nullptr : TypeInfos[TypeID - 1]), in emitTypeInfos()
|
| H A D | EHStreamer.cpp | 122 int TypeID = TypeIds[J]; in computeActionsTable() local 123 assert(-1 - TypeID < (int)FilterOffsets.size() && "Unknown filter id!"); in computeActionsTable() 125 isFilterEHSelector(TypeID) ? FilterOffsets[-1 - TypeID] : TypeID; in computeActionsTable() 840 unsigned TypeID = *I; in emitTypeInfos() local 843 if (isFilterEHSelector(TypeID)) in emitTypeInfos() 847 Asm->emitULEB128(TypeID); in emitTypeInfos()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | ValueList.cpp | 26 unsigned TypeID) { in assignValue() argument 28 push_back(V, TypeID); in assignValue() 38 Old.second = TypeID; in assignValue()
|
| H A D | ValueList.h | 52 void push_back(Value *V, unsigned TypeID) { in push_back() argument 53 ValuePtrs.emplace_back(V, TypeID); in push_back() 89 Error assignValue(unsigned Idx, Value *V, unsigned TypeID);
|
| H A D | BitcodeReader.cpp | 764 ResVal = getFnValueByID(ValNo, getTypeByID(TypeID), TypeID, in getValueTypePair() 1412 return TypeID; in getVirtualTypeID() 4164 Type *Ty = getTypeByID(TypeID); in parseGlobalIndirectSymbolRecord() 4174 TypeID = getContainedTypeID(TypeID); in parseGlobalIndirectSymbolRecord() 4175 Ty = getTypeByID(TypeID); in parseGlobalIndirectSymbolRecord() 4864 unsigned TypeID; in parseFunctionBody() local 4873 ResTypeID = TypeID; in parseFunctionBody() 4887 unsigned TypeID; in parseFunctionBody() local 4898 ResTypeID = TypeID; in parseFunctionBody() 5128 unsigned TypeID; in parseFunctionBody() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | Mips16HardFloat.cpp | 103 using TypeID = Type::TypeID; typedef 104 const Type::TypeID FloatTyID = Type::FloatTyID; 105 const Type::TypeID DoubleTyID = Type::DoubleTyID; 112 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID(); in whichFPParamVariantNeeded() 123 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID(); in whichFPParamVariantNeeded() 124 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID(); in whichFPParamVariantNeeded()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Type.h | 54 enum TypeID { enum 86 TypeID ID : 8; // The current base type of this type. 94 explicit Type(LLVMContext &C, TypeID tid) in Type() 137 TypeID getTypeID() const { return ID; } in getTypeID() 441 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
|
| H A D | GlobalObject.h | 145 void addTypeMetadata(unsigned Offset, Metadata *TypeID);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | WholeProgramDevirt.cpp | 323 Metadata *TypeID; member 346 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset; in isEqual() 365 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset; in isEqual() 785 typeIDVisibleToRegularObj(StringRef TypeID, in typeIDVisibleToRegularObj() argument 790 if (TypeID.ends_with(".virtual")) in typeIDVisibleToRegularObj() 796 if (!TypeID.consume_front("_ZTS")) in typeIDVisibleToRegularObj() 804 std::string typeInfo = ("_ZTI" + TypeID).str(); in typeIDVisibleToRegularObj() 1043 auto TypeID = Type->getOperand(1).get(); in buildTypeIdentifierMap() local 1050 TypeIdMap[TypeID].insert({BitsPtr, Offset}); in buildTypeIdentifierMap() 1425 if (isa<MDString>(Slot.TypeID)) { in tryICallBranchFunnel() [all …]
|
| H A D | GlobalDCE.cpp | 133 Metadata *TypeID = Type->getOperand(1).get(); in ScanVTables() local 140 TypeIdMap[TypeID].insert(std::make_pair(&GV, Offset)); in ScanVTables()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | GIMatchTableExecutorImpl.h | 288 const int64_t TypeID = TyI->second; in executeMatchTable() local 289 if (TypeID < LowerBound || UpperBound <= TypeID) { in executeMatchTable() 293 const auto NumEntry = (TypeID - LowerBound); in executeMatchTable() 667 int TypeID = readS8(); in executeMatchTable() local 671 << "), TypeID=" << TypeID << ")\n"); in executeMatchTable() 1203 int TypeID = readS8(); in executeMatchTable() local 1207 unsigned Width = ExecInfo.TypeObjects[TypeID].getScalarSizeInBits(); in executeMatchTable() 1213 << "], TypeID=" << TypeID << ", Imm=" << Imm in executeMatchTable() 1404 int TypeID = readS8(); in executeMatchTable() local 1407 MRI.createGenericVirtualRegister(getTypeFromIdx(TypeID)); in executeMatchTable() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | ASTBitCodes.h | 85 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 D | ASTWriter.h | 242 serialization::TypeID FirstTypeID = serialization::NUM_PREDEF_TYPE_IDS; 245 serialization::TypeID NextTypeID = FirstTypeID; 671 serialization::TypeID GetOrCreateTypeID(QualType T); 674 serialization::TypeID getTypeID(QualType T) const;
|
| H A D | ASTReader.h | 491 ContinuousRangeMap<serialization::TypeID, ModuleFile *, 4>; 871 SmallVector<serialization::TypeID, 16> SpecialTypes; 1116 SmallVector<std::pair<FunctionDecl *, serialization::TypeID>, 16> 1122 SmallVector<std::pair<VarDecl *, serialization::TypeID>, 16> 1876 QualType GetType(serialization::TypeID ID); 1882 serialization::TypeID getGlobalTypeID(ModuleFile &F, unsigned LocalID) const;
|
| H A D | ModuleFile.h | 499 serialization::TypeID BaseTypeIndex = 0;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.cpp | 923 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType() local 926 if (*TypeID) in EnumerateType() 934 *TypeID = ~0U; in EnumerateType() 942 TypeID = &TypeMap[Ty]; in EnumerateType() 949 if (*TypeID && *TypeID != ~0U) in EnumerateType() 955 *TypeID = Types.size(); in EnumerateType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
| H A D | DXILValueEnumerator.cpp | 927 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType() local 930 if (*TypeID) in EnumerateType() 938 *TypeID = ~0U; in EnumerateType() 946 TypeID = &TypeMap[Ty]; in EnumerateType() 953 if (*TypeID && *TypeID != ~0U) in EnumerateType() 959 *TypeID = Types.size(); in EnumerateType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTCommon.h | 50 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) { in MakeTypeID()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/BTF/ |
| H A D | BTFParser.cpp | 359 uint32_t TypeID = Extractor.getU32(C); in parseRelocInfo() local 364 Relocs.push_back({InsnOff, TypeID, OffsetNameOff, RelocKind}); in parseRelocInfo() 666 Stream << " [" << Reloc->TypeID << "] '" << FullSpecStr << "'" in symbolize() 689 uint32_t CurId = Reloc->TypeID; in symbolize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Object/ |
| H A D | Binary.cpp | 37 : TypeID(Type), Data(Source) {} in Binary()
|
| H A D | WindowsResource.cpp | 123 RETURN_IF_ERROR(readStringOrId(Reader, TypeID, Type, IsStringType)); in loadNext() 141 void printResourceTypeName(uint16_t TypeID, raw_ostream &OS) { in printResourceTypeName() argument 142 switch (TypeID) { in printResourceTypeName() 164 default: OS << "ID " << TypeID; break; in printResourceTypeName()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/BTF/ |
| H A D | BTF.h | 269 uint32_t TypeID; ///< TypeID for the relocation member
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | YAMLParser.h | 178 unsigned int getType() const { return TypeID; } in getType() 187 unsigned int TypeID;
|