Home
last modified time | relevance | path

Searched refs:indexList (Results 1 – 9 of 9) sorted by relevance

/external/llvm/lib/CodeGen/
DSlotIndexes.cpp37 indexList.clear(); in releaseMemory()
57 assert(indexList.empty() && "Index list non-empty at initial numbering?"); in runOnMachineFunction()
69 indexList.push_back(createEntry(nullptr, index)); in runOnMachineFunction()
74 SlotIndex blockStartIndex(&indexList.back(), SlotIndex::Slot_Block); in runOnMachineFunction()
81 indexList.push_back(createEntry(&MI, index += SlotIndex::InstrDist)); in runOnMachineFunction()
85 &MI, SlotIndex(&indexList.back(), SlotIndex::Slot_Block))); in runOnMachineFunction()
89 indexList.push_back(createEntry(nullptr, index += SlotIndex::InstrDist)); in runOnMachineFunction()
92 MBBRanges[MBB.getNumber()].second = SlotIndex(&indexList.back(), in runOnMachineFunction()
113 for (IndexList::iterator I = indexList.begin(), E = indexList.end(); in renumberIndexes()
133 } while (curItr != indexList.end() && curItr->getIndex() <= index); in renumberIndexes()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DSlotIndexes.cpp37 indexList.clear(); in releaseMemory()
57 assert(indexList.empty() && "Index list non-empty at initial numbering?"); in runOnMachineFunction()
69 indexList.push_back(createEntry(nullptr, index)); in runOnMachineFunction()
74 SlotIndex blockStartIndex(&indexList.back(), SlotIndex::Slot_Block); in runOnMachineFunction()
81 indexList.push_back(createEntry(&MI, index += SlotIndex::InstrDist)); in runOnMachineFunction()
85 &MI, SlotIndex(&indexList.back(), SlotIndex::Slot_Block))); in runOnMachineFunction()
89 indexList.push_back(createEntry(nullptr, index += SlotIndex::InstrDist)); in runOnMachineFunction()
92 MBBRanges[MBB.getNumber()].second = SlotIndex(&indexList.back(), in runOnMachineFunction()
155 for (IndexList::iterator I = indexList.begin(), E = indexList.end(); in renumberIndexes()
175 } while (curItr != indexList.end() && curItr->getIndex() <= index); in renumberIndexes()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DSlotIndexes.h337 IndexList indexList;
377 indexList.clearAndLeakNodesUnsafely();
398 assert(indexList.front().getIndex() == 0 && "First index is not 0?");
399 return SlotIndex(&indexList.front(), 0);
404 return SlotIndex(&indexList.back(), 0);
432 IndexList::iterator E = indexList.end();
606 indexList.insert(nextItr, createEntry(&MI, newNumber));
653 startEntry = &indexList.back();
655 newItr = indexList.insertAfter(startEntry->getIterator(), endEntry);
659 newItr = indexList.insert(endEntry->getIterator(), startEntry);
[all …]
/external/llvm/include/llvm/CodeGen/
DSlotIndexes.h344 IndexList indexList;
385 indexList.clearAndLeakNodesUnsafely();
406 assert(indexList.front().getIndex() == 0 && "First index is not 0?");
407 return SlotIndex(&indexList.front(), 0);
412 return SlotIndex(&indexList.back(), 0);
439 IndexList::iterator E = indexList.end();
609 indexList.insert(nextItr, createEntry(&MI, newNumber));
658 startEntry = &indexList.back();
660 newItr = indexList.insertAfter(startEntry->getIterator(), endEntry);
664 newItr = indexList.insert(endEntry->getIterator(), startEntry);
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_misc.h93 Value *GEP(Value* ptr, const std::initializer_list<Value*> &indexList);
94 Value *GEP(Value* ptr, const std::initializer_list<uint32_t> &indexList);
95 Value *IN_BOUNDS_GEP(Value* ptr, const std::initializer_list<Value*> &indexList);
96 Value *IN_BOUNDS_GEP(Value* ptr, const std::initializer_list<uint32_t> &indexList);
Dbuilder_misc.cpp306 Value *Builder::GEP(Value* ptr, const std::initializer_list<Value*> &indexList) in GEP() argument
309 for (auto i : indexList) in GEP()
314 Value *Builder::GEP(Value* ptr, const std::initializer_list<uint32_t> &indexList) in GEP() argument
317 for (auto i : indexList) in GEP()
322 Value *Builder::IN_BOUNDS_GEP(Value* ptr, const std::initializer_list<Value*> &indexList) in IN_BOUNDS_GEP() argument
325 for (auto i : indexList) in IN_BOUNDS_GEP()
330 Value *Builder::IN_BOUNDS_GEP(Value* ptr, const std::initializer_list<uint32_t> &indexList) in IN_BOUNDS_GEP() argument
333 for (auto i : indexList) in IN_BOUNDS_GEP()
/external/deqp/modules/gles2/scripts/
Dgenutil.py323 def swizzle(self, indexList): argument
325 outScalars = map(lambda ndx: inScalars[ndx], indexList)
/external/deqp/modules/gles31/scripts/
Dgenutil.py383 def swizzle(self, indexList): argument
385 outScalars = map(lambda ndx: inScalars[ndx], indexList)
/external/deqp/modules/gles3/scripts/
Dgenutil.py381 def swizzle(self, indexList): argument
383 outScalars = map(lambda ndx: inScalars[ndx], indexList)