Searched refs:AllocInfo (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMemoryMapper.h30 struct AllocInfo { struct in class:llvm::orc::MemoryMapper
63 virtual void initialize(AllocInfo &AI,
92 void initialize(AllocInfo &AI, OnInitializedFunction OnInitialized) override;
146 void initialize(AllocInfo &AI, OnInitializedFunction OnInitialized) override;
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMapperJITLinkMemoryManager.cpp25 std::vector<MemoryMapper::AllocInfo::SegInfo> Segs)
29 MemoryMapper::AllocInfo AI;
54 std::vector<MemoryMapper::AllocInfo::SegInfo> Segs;
85 std::vector<MemoryMapper::AllocInfo::SegInfo> SegInfos;
98 MemoryMapper::AllocInfo::SegInfo SI;
H A DMemoryMapper.cpp62 void InProcessMemoryMapper::initialize(MemoryMapper::AllocInfo &AI,
305 void SharedMemoryMapper::initialize(MemoryMapper::AllocInfo &AI,
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemProfiler.cpp643 const AllocationInfo *AllocInfo) {
645 for (const auto &StackFrame : AllocInfo->CallStack)
647 auto AllocType = getAllocType(AllocInfo->Info.getTotalLifetimeAccessDensity(),
648 AllocInfo->Info.getAllocCount(),
649 AllocInfo->Info.getTotalLifetime());
832 for (auto *AllocInfo : AllocInfoIter->second) {
836 if (stackFrameIncludesInlinedCallStack(AllocInfo->CallStack,
838 addCallStack(AllocTrie, AllocInfo);
642 addCallStack(CallStackTrie &AllocTrie, const AllocationInfo *AllocInfo) argument
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h391 struct AllocInfo { struct in class:llvm::CalleeInfo::AllocationType
405 AllocInfo(std::vector<MIBInfo> MIBs) : MIBs(std::move(MIBs)) { function in struct:llvm::CalleeInfo::AllocationType::AllocInfo
408 AllocInfo(SmallVector<uint8_t> Versions, std::vector<MIBInfo> MIBs) function in struct:llvm::CalleeInfo::AllocationType::AllocInfo
412 inline raw_ostream &operator<<(raw_ostream &OS, const AllocInfo &AE) {
825 std::vector<CallsiteInfo>(), std::vector<AllocInfo>());
865 /// comparing the stack ids in the AllocInfo to those in the instruction
869 using AllocsTy = std::vector<AllocInfo>;
1020 ArrayRef<AllocInfo> allocs() const {
H A DModuleSummaryIndexYAML.h238 ArrayRef<AllocInfo>{}));
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DMemProfContextDisambiguation.cpp615 struct IndexCall : public PointerUnion<CallsiteInfo *, AllocInfo *> {
619 IndexCall(AllocInfo *AllocNode) : PointerUnion(AllocNode) {}
624 PointerUnion<CallsiteInfo *, AllocInfo *> getBase() const { return *this; }
627 if (auto *AI = llvm::dyn_cast_if_present<AllocInfo *>(getBase())) {
714 : public DenseMapInfo<PointerUnion<CallsiteInfo *, AllocInfo *>> {};
1480 if (isa<AllocInfo *>(Call.getBase()))
2641 auto *AI = Call.call().dyn_cast<AllocInfo *>();
2700 (Call.call().is<AllocInfo *>()
2701 ? Call.call().dyn_cast<AllocInfo *>()->Versions.size()
2712 if (auto *AI = Inst.call().dyn_cast<AllocInfo *>()) {
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp300 std::vector<AllocInfo> Allocs;
511 Allocs.push_back(AllocInfo(std::move(MIBs)));
896 ArrayRef<CallsiteInfo>{}, ArrayRef<AllocInfo>{});
/freebsd-current/contrib/llvm-project/llvm/include/llvm/AsmParser/
H A DLLParser.h426 bool parseOptionalAllocs(std::vector<AllocInfo> &Allocs);
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp7251 std::vector<AllocInfo> PendingAllocs;
7694 PendingAllocs.push_back(AllocInfo(std::move(MIBs)));
7722 AllocInfo(std::move(Versions), std::move(MIBs)));
/freebsd-current/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp8934 std::vector<AllocInfo> Allocs;
9965 bool LLParser::parseOptionalAllocs(std::vector<AllocInfo> &Allocs) {

Completed in 146 milliseconds