| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| H A D | Binary.h | 34 unsigned int TypeID; 101 unsigned int getType() const { return TypeID; } in getType() 105 return TypeID > ID_StartObjects && TypeID < ID_EndObjects; in isObject() 112 bool isArchive() const { return TypeID == ID_Archive; } in isArchive() 115 return TypeID == ID_MachOUniversalBinary; in isMachOUniversalBinary() 118 bool isTapiUniversal() const { return TypeID == ID_TapiUniversal; } in isTapiUniversal() 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() [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);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| H A D | CFBundle.cpp | 151 auto PrintError = [&](CFTypeID TypeID) { in getBundleInfo() argument 152 CFString TypeIDCFStr(::CFCopyTypeIDDescription(TypeID)); in getBundleInfo() 164 CFTypeID TypeID = ::CFGetTypeID(TypeRef); in getBundleInfo() local 165 if (TypeID == ::CFStringGetTypeID()) in getBundleInfo() 168 PrintError(TypeID); in getBundleInfo() 172 CFTypeID TypeID = ::CFGetTypeID(TypeRef); in getBundleInfo() local 173 if (TypeID == ::CFStringGetTypeID()) in getBundleInfo() 176 PrintError(TypeID); in getBundleInfo()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | ARMException.cpp | 125 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 D | EHStreamer.cpp | 124 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | Mips16HardFloat.cpp | 102 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | Type.h | 55 enum TypeID { enum 85 TypeID ID : 8; // The current base type of this type. 93 explicit Type(LLVMContext &C, TypeID tid) in Type() 136 TypeID getTypeID() const { return ID; } in getTypeID() 405 static Type *getPrimitiveType(LLVMContext &C, TypeID IDNumber);
|
| H A D | GlobalObject.h | 138 void addTypeMetadata(unsigned Offset, Metadata *TypeID);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | WholeProgramDevirt.cpp | 312 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() 849 auto *TIdSum = Summary.getTypeIdSummary(SlotSummary.TypeID); in updateIndexWPDForExports() 953 auto TypeID = Type->getOperand(1).get(); in buildTypeIdentifierMap() local 960 TypeIdMap[TypeID].insert({BitsPtr, Offset}); in buildTypeIdentifierMap() 1272 if (isa<MDString>(Slot.TypeID)) { in tryICallBranchFunnel() 1443 OS << cast<MDString>(Slot.TypeID)->getString() << '_' << Slot.ByteOffset; in getGlobalName() [all …]
|
| H A D | GlobalDCE.cpp | 180 Metadata *TypeID = Type->getOperand(1).get(); in ScanVTables() local 187 TypeIdMap[TypeID].insert(std::make_pair(&GV, Offset)); in ScanVTables()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | InstructionSelectorImpl.h | 239 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()
|
| /netbsd-src/external/apache2/llvm/dist/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; 622 serialization::TypeID GetOrCreateTypeID(QualType T); 625 serialization::TypeID getTypeID(QualType T) const;
|
| H A D | ModuleFile.h | 479 serialization::TypeID BaseTypeIndex = 0;
|
| H A D | ASTReader.h | 472 ContinuousRangeMap<serialization::TypeID, ModuleFile *, 4>; 844 SmallVector<serialization::TypeID, 16> SpecialTypes; 1084 SmallVector<std::pair<FunctionDecl *, serialization::TypeID>, 16> 1797 QualType GetType(serialization::TypeID ID); 1803 serialization::TypeID getGlobalTypeID(ModuleFile &F, unsigned LocalID) const;
|
| H A D | ASTRecordReader.h | 167 serialization::TypeID getGlobalTypeID(unsigned LocalID) const { in getGlobalTypeID()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.cpp | 946 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType() local 949 if (*TypeID) in EnumerateType() 957 *TypeID = ~0U; in EnumerateType() 965 TypeID = &TypeMap[Ty]; in EnumerateType() 972 if (*TypeID && *TypeID != ~0U) in EnumerateType() 978 *TypeID = Types.size(); in EnumerateType()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTCommon.h | 50 TypeID MakeTypeID(ASTContext &Context, QualType T, IdxForTypeTy IdxForType) { in MakeTypeID()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BTF.h | 247 uint32_t TypeID; ///< TypeID for the relocation member
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | Binary.cpp | 38 : TypeID(Type), Data(Source) {} in Binary()
|
| H A D | WindowsResource.cpp | 125 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | YAMLParser.h | 178 unsigned int getType() const { return TypeID; } in getType() 187 unsigned int TypeID;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/ |
| H A D | WholeProgramDevirt.h | 238 StringRef TypeID; member
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | Type.cpp | 39 Type *Type::getPrimitiveType(LLVMContext &C, TypeID IDNumber) { in getPrimitiveType() 621 VectorType::VectorType(Type *ElType, unsigned EQ, Type::TypeID TID) in VectorType()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ModuleSummaryAnalysis.cpp | 555 auto TypeID = Type->getOperand(1).get(); in recordTypeIdCompatibleVtableReferences() local 562 if (auto *TypeId = dyn_cast<MDString>(TypeID)) in recordTypeIdCompatibleVtableReferences()
|