| /freebsd-src/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | TypeMap.cpp | 1 //===-- TypeMap.cpp -------------------------------------------------------===// 17 #include "lldb/Symbol/TypeMap.h" 22 TypeMap::TypeMap() : m_types() {} in TypeMap() function in TypeMap 25 TypeMap::~TypeMap() = default; 27 void TypeMap::Insert(const TypeSP &type_sp) { in Insert() 34 bool TypeMap::InsertUnique(const TypeSP &type_sp) { in InsertUnique() 51 // TypeMap::FindType(lldb::user_id_t uid) 60 // TypeMap [all...] |
| H A D | SymbolContext.cpp | 572 void SymbolContext::SortTypeList(TypeMap &type_map, TypeList &type_list) const { in SortTypeList()
|
| /freebsd-src/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | TypeMap.h | 1 //===-- TypeMap.h ----------------------------------------------*- C++ -*-===// 20 class TypeMap { 23 TypeMap(); 25 virtual ~TypeMap(); 32 TypeMap FindTypes(ConstString name); 64 TypeMap(const TypeMap &) = delete; 65 const TypeMap &operator=(const TypeMap &) = delete;
|
| H A D | Type.h | 16 #include "lldb/Symbol/TypeMap.h" 350 TypeMap &GetTypeMap() { return m_type_map; } 351 const TypeMap &GetTypeMap() const { return m_type_map; } 355 TypeMap m_type_map;
|
| H A D | SymbolContext.h | 265 /// Sorts the types in TypeMap according to SymbolContext to TypeList 267 void SortTypeList(TypeMap &type_map, TypeList &type_list) const;
|
| /freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | TaggedUnionModeling.h | 35 template <class TypeMap> 47 State = State->remove<TypeMap>(Region); in removeInformationStoredForDeadInstances() 52 template <class TypeMap> 69 const QualType *OtherQType = State->get<TypeMap>(ArgMemRegion); in handleConstructorAndAssignment() 74 State = State->remove<TypeMap>(ThisRegion); in handleConstructorAndAssignment() 80 State = State->remove<TypeMap>(ArgMemRegion); in handleConstructorAndAssignment() 82 State = State->set<TypeMap>(ThisRegion, *OtherQType); in handleConstructorAndAssignment() 90 State = State->set<TypeMap>(ThisRegion, WoPointer); in handleConstructorAndAssignment()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 38 // TypeMap implementation. 395 TypeMapTy TypeMap; 483 if (FDGV->getFunctionType() != TypeMap.get(FSrcGV->getFunctionType())) in getLinkedToGlobal() 545 TypeMap(Set), GValMaterializer(*this), LValMaterializer(*this), in IRLinker() 548 &TypeMap, &GValMaterializer), in IRLinker() 660 new GlobalVariable(DstM, TypeMap.get(SGVar->getValueType()), in copyGlobalVariableProto() 679 TypeMap.get(Ty)); in mapAttributeTypes() 693 auto *F = Function::Create(TypeMap.get(SF->getFunctionType()), in copyFunctionProto() 707 auto *Ty = TypeMap.get(SGV->getValueType()); in copyIndirectSymbolProto() 740 Function::Create(cast<FunctionType>(TypeMap in copyGlobalValueProto() 394 TypeMapTy TypeMap; global() member in __anon3b46d3ba0211::IRLinker [all...] |
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
| H A D | DXILValueEnumerator.h | 61 TypeMapType TypeMap; variable 166 TypeMapType::const_iterator I = TypeMap.find(T); in getTypeID() 167 assert(I != TypeMap.end() && "Type not in ValueEnumerator!"); in getTypeID()
|
| H A D | DXILValueEnumerator.cpp | 927 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType() 946 TypeID = &TypeMap[Ty]; in EnumerateType()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | ValueEnumerator.h | 58 TypeMapType TypeMap; variable 167 TypeMapType::const_iterator I = TypeMap.find(T); in getTypeID() 168 assert(I != TypeMap.end() && "Type not in ValueEnumerator!"); in getTypeID()
|
| H A D | ValueEnumerator.cpp | 959 unsigned *TypeID = &TypeMap[Ty]; 978 TypeID = &TypeMap[Ty]; in EnumerateOperandType()
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | BlockFrequencyInfoImpl.h | 544 template <class BlockT> struct TypeMap {}; 545 template <> struct TypeMap<BasicBlock> { 553 template <> struct TypeMap<MachineBasicBlock> { 849 using BlockT = typename bfi_detail::TypeMap<BT>::BlockT; 850 using BlockKeyT = typename bfi_detail::TypeMap<BT>::BlockKeyT; 851 using FunctionT = typename bfi_detail::TypeMap<BT>::FunctionT; 853 typename bfi_detail::TypeMap<BT>::BranchProbabilityInfoT; 854 using LoopT = typename bfi_detail::TypeMap<BT>::LoopT; 855 using LoopInfoT = typename bfi_detail::TypeMap<BT>::LoopInfoT; 547 template <class BlockT> struct TypeMap {}; global() struct
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegacyLegalizerInfo.h | 453 using TypeMap = DenseMap<LLT, LegacyLegalizeActions::LegacyLegalizeAction>; variable 454 SmallVector<TypeMap, 1> SpecifiedActions[LastOp - FirstOp + 1];
|
| /freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 140 uint32_t max_matches, lldb_private::TypeMap &types); 186 uint32_t max_matches, lldb_private::TypeMap &types);
|
| H A D | SymbolFilePDB.cpp | 25 #include "lldb/Symbol/TypeMap.h" 1468 lldb_private::TypeMap &types) { in FindTypesByRegex()
|
| /freebsd-src/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangOpenCLBuiltinEmitter.cpp | 205 MapVector<const Record *, unsigned> TypeMap; member in __anonb33cd94e0111::BuiltinNameEmitter 505 TypeMap.insert(std::make_pair(T, I++)); in GetOverloads() 557 for (const auto &T : TypeMap) { in EmitTypeTable() 585 unsigned Entry = TypeMap.find(R)->second; in EmitSignatureTable()
|
| /freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | SymbolFileCTF.h | 112 uint32_t max_matches, lldb_private::TypeMap &types);
|
| H A D | SymbolFileCTF.cpp | 21 #include "lldb/Symbol/TypeMap.h" 1044 lldb_private::TypeMap &types) { in FindTypesByRegex()
|
| /freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.h | 192 TypeMap &types);
|
| H A D | SymbolFileNativePDB.cpp | 1750 TypeMap &types) { in FindTypesByName()
|
| /freebsd-src/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Module.h | 60 class TypeMap; variable
|
| /freebsd-src/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | llvm-pdbutil.cpp | 1329 SmallVector<TypeIndex, 128> TypeMap; in mergePdbs() local 1334 codeview::mergeTypeRecords(MergedTpi, TypeMap, Tpi.typeArray())); in mergePdbs() 1338 ExitOnErr(codeview::mergeIdRecords(MergedIpi, TypeMap, IdMap, in mergePdbs()
|
| /freebsd-src/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 265 class TypeMap; 261 class TypeMap; global() variable
|
| /freebsd-src/lib/clang/liblldb/ |
| H A D | Makefile | 619 SRCS+= Symbol/TypeMap.cpp
|
| /freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 7414 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1)); in visitIntrinsicCall() 7417 GFI->addStackRoot(FI->getIndex(), TypeMap); in visitIntrinsicCall() 7056 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1)); visitIntrinsicCall() local
|