Home
last modified time | relevance | path

Searched refs:getAlloc (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAllocatorList.h50 AllocatorT &getAlloc() { return *this; } in getAlloc() function
51 const AllocatorT &getAlloc() const { return *this; } in getAlloc() function
54 return new (getAlloc()) Node(std::forward<ArgTs>(Args)...); in create()
72 AL.getAlloc().Deallocate(N); in operator()
133 : AllocatorT(std::move(X.getAlloc())), List(std::move(X.List)) {} in AllocatorList()
142 getAlloc() = std::move(X.getAlloc());
155 std::swap(getAlloc(), RHS.getAlloc()); in swap()
224 getAlloc().Reset(); in resetAlloc()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h762 CoroAllocaAllocInst *getAlloc() const { in getAlloc() function
779 CoroAllocaAllocInst *getAlloc() const { in getAlloc() function
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp11010 return new (DbgInfo->getAlloc()) in getDbgValue()
11011 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromNode(N, R), in getDbgValue()
11023 return new (DbgInfo->getAlloc()) in getConstantDbgValue()
11024 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromConst(C), {}, in getConstantDbgValue()
11049 return new (DbgInfo->getAlloc()) in getFrameIndexDbgValue()
11050 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromFrameIdx(FI), in getFrameIndexDbgValue()
11061 return new (DbgInfo->getAlloc()) in getVRegDbgValue()
11062 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromVReg(VReg), in getVRegDbgValue()
11074 return new (DbgInfo->getAlloc()) in getDbgValueList()
11075 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, Locs, Dependencies, IsIndirect, in getDbgValueList()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h190 BumpPtrAllocator &getAlloc() { return Alloc; }