Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DTypeMap.cpp22 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()
73 void TypeMap::Clear() { m_types.clear(); } in Clear()
75 uint32_t TypeMap::GetSize() const { return m_types.size(); } in GetSize()
77 bool TypeMap::Empty() const { return m_types.empty(); } in Empty()
83 TypeSP TypeMap::GetTypeAtIndex(uint32_t idx) { in GetTypeAtIndex()
94 lldb::TypeSP TypeMap::FirstType() const { in FirstType()
100 void TypeMap::ForEach( in ForEach()
[all …]
H A DSymbolContext.cpp572 void SymbolContext::SortTypeList(TypeMap &type_map, TypeList &type_list) const { in SortTypeList()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeMap.h20 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 DType.h350 TypeMap &GetTypeMap() { return m_type_map; } in GetTypeMap()
351 const TypeMap &GetTypeMap() const { return m_type_map; } in GetTypeMap()
355 TypeMap m_type_map;
H A DSymbolContext.h267 void SortTypeList(TypeMap &type_map, TypeList &type_list) const;
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTaggedUnionModeling.h35 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/contrib/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp395 TypeMapTy TypeMap; member in __anone1f06e680211::IRLinker
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.get(SGV->getValueType())), in copyGlobalValueProto()
745 new GlobalVariable(DstM, TypeMap.get(SGV->getValueType()), in copyGlobalValueProto()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h140 uint32_t max_matches, lldb_private::TypeMap &types);
186 uint32_t max_matches, lldb_private::TypeMap &types);
H A DSymbolFilePDB.cpp1468 lldb_private::TypeMap &types) { in FindTypesByRegex()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILValueEnumerator.h61 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 DDXILValueEnumerator.cpp927 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType()
946 TypeID = &TypeMap[Ty]; in EnumerateType()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULowerBufferFatPointers.cpp414 BufferFatPtrToIntTypeMap *TypeMap; member in __anone5d2dd830311::StoreFatPtrsAsIntsVisitor
429 StoreFatPtrsAsIntsVisitor(BufferFatPtrToIntTypeMap *TypeMap, LLVMContext &Ctx) in StoreFatPtrsAsIntsVisitor() argument
430 : TypeMap(TypeMap), IRB(Ctx) {} in StoreFatPtrsAsIntsVisitor()
525 Type *NewTy = TypeMap->remapType(Ty); in visitAllocaInst()
534 Type *NewTy = TypeMap->remapType(Ty); in visitGetElementPtrInst()
540 I.setResultElementType(TypeMap->remapType(I.getResultElementType())); in visitGetElementPtrInst()
546 Type *IntTy = TypeMap->remapType(Ty); in visitLoadInst()
566 Type *IntTy = TypeMap->remapType(Ty); in visitStoreInst()
590 BufferFatPtrToStructTypeMap *TypeMap; member in __anone5d2dd830411::FatPtrConstMaterializer
602 FatPtrConstMaterializer(BufferFatPtrToStructTypeMap *TypeMap, in FatPtrConstMaterializer() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.h58 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 DValueEnumerator.cpp959 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType()
978 TypeID = &TypeMap[Ty]; in EnumerateType()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h544 template <class BlockT> struct TypeMap {}; struct
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;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h60 class TypeMap; variable
435 /// TypeMap::InsertUnique(...).
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.h112 uint32_t max_matches, lldb_private::TypeMap &types);
H A DSymbolFileCTF.cpp1044 lldb_private::TypeMap &types) { in FindTypesByRegex()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DLegacyLegalizerInfo.h453 using TypeMap = DenseMap<LLT, LegacyLegalizeActions::LegacyLegalizeAction>; variable
454 SmallVector<TypeMap, 1> SpecifiedActions[LastOp - FirstOp + 1];
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h192 TypeMap &types);
H A DSymbolFileNativePDB.cpp1750 TypeMap &types) { in FindTypesByName()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp1329 SmallVector<TypeIndex, 128> TypeMap; in mergePdbs()
1334 codeview::mergeTypeRecords(MergedTpi, TypeMap, Tpi.typeArray())); in mergePdbs()
1338 ExitOnErr(codeview::mergeIdRecords(MergedIpi, TypeMap, IdMap, in mergePdbs()
1331 SmallVector<TypeIndex, 128> TypeMap; mergePdbs() local
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h265 class TypeMap; variable
/freebsd/lib/clang/liblldb/
H A DMakefile619 SRCS+= Symbol/TypeMap.cpp
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp7412 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1)); in visitIntrinsicCall() local
7415 GFI->addStackRoot(FI->getIndex(), TypeMap); in visitIntrinsicCall()