Home
last modified time | relevance | path

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

/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp51 struct OrderMap { struct
55 OrderMap() = default;
77 static void orderValue(const Value *V, OrderMap &OM) { in orderValue()
97 static OrderMap orderModule(const Module &M) { in orderModule()
100 OrderMap OM; in orderModule()
174 unsigned ID, const OrderMap &OM, in predictValueUseListOrderImpl()
232 OrderMap &OM, UseListOrderStack &Stack) { in predictValueUseListOrder()
259 OrderMap OM = orderModule(M); in predictUseListOrder()
/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILValueEnumerator.cpp54 struct OrderMap { struct
59 OrderMap() = default;
85 static void orderValue(const Value *V, OrderMap &OM) { in orderValue()
105 static OrderMap orderModule(const Module &M) { in orderModule()
108 OrderMap OM; in orderModule()
205 unsigned ID, const OrderMap &OM, in predictValueUseListOrderImpl()
275 OrderMap &OM, UseListOrderStack &Stack) { in predictValueUseListOrder()
302 OrderMap OM = orderModule(M); in predictUseListOrder()
/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h244 DenseMap<Instruction *, unsigned> OrderMap; in getMemoryInstructions()
247 OrderMap[InstMap[I]] = I;
249 return OrderMap; in generateInstructionOrderMap() local
/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp98 using OrderMap = MapVector<const Value *, unsigned>;
112 static void orderValue(const Value *V, OrderMap &OM) {
128 static OrderMap orderModule(const Module *M) {
129 OrderMap OM; in orderModule()
176 predictValueUseListOrder(const Value *V, unsigned ID, const OrderMap &OM) {
238 OrderMap OM = orderModule(M); in predictUseListOrder()
99 using OrderMap = MapVector<const Value *, unsigned>; global() typedef