Home
last modified time | relevance | path

Searched refs:indexList (Results 1 – 17 of 17) 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-10.0/llvm/lib/CodeGen/
DSlotIndexes.cpp29 indexList.clearAndLeakNodesUnsafely(); in ~SlotIndexes()
46 indexList.clear(); in releaseMemory()
66 assert(indexList.empty() && "Index list non-empty at initial numbering?"); in runOnMachineFunction()
78 indexList.push_back(createEntry(nullptr, index)); in runOnMachineFunction()
83 SlotIndex blockStartIndex(&indexList.back(), SlotIndex::Slot_Block); in runOnMachineFunction()
90 indexList.push_back(createEntry(&MI, index += SlotIndex::InstrDist)); in runOnMachineFunction()
94 &MI, SlotIndex(&indexList.back(), SlotIndex::Slot_Block))); in runOnMachineFunction()
98 indexList.push_back(createEntry(nullptr, index += SlotIndex::InstrDist)); in runOnMachineFunction()
101 MBBRanges[MBB.getNumber()].second = SlotIndex(&indexList.back(), in runOnMachineFunction()
170 } while (curItr != indexList.end() && curItr->getIndex() <= index); in renumberIndexes()
[all …]
/external/llvm-project/llvm/lib/CodeGen/
DSlotIndexes.cpp29 indexList.clearAndLeakNodesUnsafely(); in ~SlotIndexes()
46 indexList.clear(); in releaseMemory()
66 assert(indexList.empty() && "Index list non-empty at initial numbering?"); in runOnMachineFunction()
78 indexList.push_back(createEntry(nullptr, index)); in runOnMachineFunction()
83 SlotIndex blockStartIndex(&indexList.back(), SlotIndex::Slot_Block); in runOnMachineFunction()
90 indexList.push_back(createEntry(&MI, index += SlotIndex::InstrDist)); in runOnMachineFunction()
94 &MI, SlotIndex(&indexList.back(), SlotIndex::Slot_Block))); in runOnMachineFunction()
98 indexList.push_back(createEntry(nullptr, index += SlotIndex::InstrDist)); in runOnMachineFunction()
101 MBBRanges[MBB.getNumber()].second = SlotIndex(&indexList.back(), in runOnMachineFunction()
171 } while (curItr != indexList.end() && curItr->getIndex() <= index); in renumberIndexes()
[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/llvm-project/llvm/include/llvm/CodeGen/
DSlotIndexes.h320 IndexList indexList;
369 assert(indexList.front().getIndex() == 0 && "First index is not 0?");
370 return SlotIndex(&indexList.front(), 0);
375 return SlotIndex(&indexList.back(), 0);
411 IndexList::iterator E = indexList.end();
564 indexList.insert(nextItr, createEntry(&MI, newNumber));
621 newItr = indexList.insert(endEntry->getIterator(), startEntry);
623 startEntry = &indexList.back();
625 newItr = indexList.insertAfter(startEntry->getIterator(), endEntry);
629 newItr = indexList.insert(endEntry->getIterator(), startEntry);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSlotIndexes.h320 IndexList indexList;
369 assert(indexList.front().getIndex() == 0 && "First index is not 0?");
370 return SlotIndex(&indexList.front(), 0);
375 return SlotIndex(&indexList.back(), 0);
409 IndexList::iterator E = indexList.end();
562 indexList.insert(nextItr, createEntry(&MI, newNumber));
609 startEntry = &indexList.back();
611 newItr = indexList.insertAfter(startEntry->getIterator(), endEntry);
615 newItr = indexList.insert(endEntry->getIterator(), startEntry);
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_gfx_mem.cpp170 Value* BuilderGfxMem::GEP(Value* Ptr, const std::initializer_list<Value*>& indexList, Type* Ty) in GEP() argument
176 Ptr = Builder::GEP(Ptr, indexList); in GEP()
182 Ptr = Builder::GEP(Ptr, indexList); in GEP()
188 BuilderGfxMem::GEP(Value* Ptr, const std::initializer_list<uint32_t>& indexList, Type* Ty) in GEP() argument
194 Ptr = Builder::GEP(Ptr, indexList); in GEP()
200 Ptr = Builder::GEP(Ptr, indexList); in GEP()
Dbuilder_mem.cpp54 Value* Builder::GEP(Value* ptr, const std::initializer_list<Value*>& indexList, Type* Ty) in GEP() argument
57 for (auto i : indexList) in GEP()
62 Value* Builder::GEP(Value* ptr, const std::initializer_list<uint32_t>& indexList, Type* Ty) in GEP() argument
65 for (auto i : indexList) in GEP()
80 Value* Builder::IN_BOUNDS_GEP(Value* ptr, const std::initializer_list<Value*>& indexList) in IN_BOUNDS_GEP() argument
83 for (auto i : indexList) in IN_BOUNDS_GEP()
88 Value* Builder::IN_BOUNDS_GEP(Value* ptr, const std::initializer_list<uint32_t>& indexList) in IN_BOUNDS_GEP() argument
91 for (auto i : indexList) in IN_BOUNDS_GEP()
Dbuilder_mem.h50 virtual Value* GEP(Value* ptr, const std::initializer_list<Value*>& indexList, Type* Ty = nullptr);
52 GEP(Value* ptr, const std::initializer_list<uint32_t>& indexList, Type* Ty = nullptr);
57 Value* IN_BOUNDS_GEP(Value* ptr, const std::initializer_list<Value*>& indexList);
58 Value* IN_BOUNDS_GEP(Value* ptr, const std::initializer_list<uint32_t>& indexList);
Dbuilder_gfx_mem.h47 GEP(Value* Ptr, const std::initializer_list<Value*>& indexList, Type* Ty = nullptr);
49 GEP(Value* Ptr, const std::initializer_list<uint32_t>& indexList, Type* Ty = nullptr);
/external/llvm-project/llvm/lib/Support/
DELFAttributeParser.cpp87 void ELFAttributeParser::parseIndexList(SmallVectorImpl<uint8_t> &indexList) { in parseIndexList() argument
92 indexList.push_back(value); in parseIndexList()
/external/llvm-project/llvm/include/llvm/Support/
DELFAttributeParser.h41 void parseIndexList(SmallVectorImpl<uint8_t> &indexList);
/external/angle/src/libANGLE/renderer/
Dglslang_wrapper_utils.cpp1462 const spirv::IdRefList &indexList,
1504 const spirv::IdRefList &indexList, in transformAccessChain() argument
1511 spirv::WriteAccessChain(blobOut, mTypePointerTransformedId[typeId], id, baseId, indexList); in transformAccessChain()
2254 spirv::IdRefList *indexList) in AccessChainIndexListAppend() argument
2255 : mCondition(condition), mIndexList(indexList) in AccessChainIndexListAppend()
2382 spirv::IdRefList indexList; in writeTransformFeedbackEmulationOutput() local
2385 varying.fieldIndex, &indexList); in writeTransformFeedbackEmulationOutput()
2424 &indexList); in writeTransformFeedbackEmulationOutput()
2428 &indexList); in writeTransformFeedbackEmulationOutput()
2432 &indexList); in writeTransformFeedbackEmulationOutput()
[all …]
/external/deqp/modules/gles2/scripts/
Dgenutil.py323 def swizzle(self, indexList): argument
325 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)
/external/deqp/modules/gles31/scripts/
Dgenutil.py383 def swizzle(self, indexList): argument
385 outScalars = map(lambda ndx: inScalars[ndx], indexList)
/external/angle/src/compiler/translator/
DOutputSPIRV.cpp789 spirv::LiteralIntegerList indexList; in accessChainLoad() local
790 makeAccessChainLiteralList(data, &indexList); in accessChainLoad()
795 indexList); in accessChainLoad()