Home
last modified time | relevance | path

Searched refs:InstructionList (Results 1 – 25 of 68) sorted by relevance

123

/external/deqp-deps/SPIRV-Tools/source/opt/
Dinstruction_list.h44 class InstructionList : public utils::IntrusiveList<Instruction> {
46 InstructionList() = default;
47 InstructionList(InstructionList&& that) in InstructionList() function
49 InstructionList& operator=(InstructionList&& that) {
56 inline virtual ~InstructionList();
117 InstructionList::~InstructionList() { clear(); } in ~InstructionList()
119 void InstructionList::clear() { in clear()
Dinstruction_list.cpp20 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore()
30 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore()
Dmodule.h47 using inst_iterator = InstructionList::iterator;
48 using const_inst_iterator = InstructionList::const_iterator;
268 InstructionList capabilities_;
269 InstructionList extensions_;
270 InstructionList ext_inst_imports_;
273 InstructionList entry_points_;
274 InstructionList execution_modes_;
275 InstructionList debugs1_;
276 InstructionList debugs2_;
277 InstructionList debugs3_;
[all …]
Dbasic_block.h42 using iterator = InstructionList::iterator;
43 using const_iterator = InstructionList::const_iterator;
44 using reverse_iterator = std::reverse_iterator<InstructionList::iterator>;
46 std::reverse_iterator<InstructionList::const_iterator>;
229 InstructionList insts_;
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dinstruction_list.h44 class InstructionList : public utils::IntrusiveList<Instruction> {
46 InstructionList() = default;
47 InstructionList(InstructionList&& that) in InstructionList() function
49 InstructionList& operator=(InstructionList&& that) {
56 inline virtual ~InstructionList();
117 InstructionList::~InstructionList() { clear(); } in ~InstructionList()
119 void InstructionList::clear() { in clear()
Dinstruction_list.cpp20 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore()
30 InstructionList::iterator InstructionList::iterator::InsertBefore( in InsertBefore()
Dmodule.h47 using inst_iterator = InstructionList::iterator;
48 using const_inst_iterator = InstructionList::const_iterator;
268 InstructionList capabilities_;
269 InstructionList extensions_;
270 InstructionList ext_inst_imports_;
273 InstructionList entry_points_;
274 InstructionList execution_modes_;
275 InstructionList debugs1_;
276 InstructionList debugs2_;
277 InstructionList debugs3_;
[all …]
Dbasic_block.h42 using iterator = InstructionList::iterator;
43 using const_iterator = InstructionList::const_iterator;
44 using reverse_iterator = std::reverse_iterator<InstructionList::iterator>;
46 std::reverse_iterator<InstructionList::const_iterator>;
229 InstructionList insts_;
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DInstructionList.java46 public class InstructionList implements Iterable<InstructionHandle> { class
56 public InstructionList() { in InstructionList() method in InstructionList
65 public InstructionList(final Instruction i) { in InstructionList() method in InstructionList
75 public InstructionList(final BranchInstruction i) { in InstructionList() method in InstructionList
85 public InstructionList(final CompoundInstruction c) { in InstructionList() method in InstructionList
155 public InstructionList(final byte[] code) { in InstructionList() method in InstructionList
229 public InstructionHandle append(final InstructionHandle ih, final InstructionList il) { in append()
260 public InstructionHandle append(final Instruction i, final InstructionList il) { in append()
275 public InstructionHandle append(final InstructionList il) { in append()
347 return append(i, new InstructionList(j)); in append()
[all …]
/external/apache-commons-bcel/src/test/java/org/apache/bcel/
DLocalVariableTypeTableTestCase.java28 import org.apache.bcel.generic.InstructionList;
87 final InstructionList instructionList = methodGen.getInstructionList(); in injection()
99 …public InstructionList makeWillBeAddedInstructionList(final MethodGen methodGen, final int firstSt… in makeWillBeAddedInstructionList()
101 return new InstructionList(); in makeWillBeAddedInstructionList()
116 public InstructionList createPrintln(final ConstantPoolGen cp, final Instruction instruction) { in createPrintln()
117 final InstructionList il = new InstructionList(); in createPrintln()
DInstructionFinderTestCase.java25 import org.apache.bcel.generic.InstructionList;
49 final InstructionList il = new InstructionList(bytes); in testSearchAll()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/verifier/tests/
DTestReturn03Creator.java29 import org.apache.bcel.generic.InstructionList;
55 final InstructionList il = new InstructionList(); in createMethod_0()
71 final InstructionList il = new InstructionList(); in createMethod_1()
DTestReturn01Creator.java29 import org.apache.bcel.generic.InstructionList;
55 final InstructionList il = new InstructionList(); in createMethod_0()
71 final InstructionList il = new InstructionList(); in createMethod_1()
DTestArrayAccess03Creator.java29 import org.apache.bcel.generic.InstructionList;
57 final InstructionList il = new InstructionList(); in createMethod_0()
73 final InstructionList il = new InstructionList(); in createMethod_1()
DTestArrayAccess04Creator.java30 import org.apache.bcel.generic.InstructionList;
57 final InstructionList il = new InstructionList(); in createMethod_0()
73 final InstructionList il = new InstructionList(); in createMethod_1()
DTestArrayAccess02Creator.java29 import org.apache.bcel.generic.InstructionList;
57 final InstructionList il = new InstructionList(); in createMethod_0()
73 final InstructionList il = new InstructionList(); in createMethod_1()
/external/apache-commons-bcel/src/examples/Mini/
DASTIfExpr.java27 import org.apache.bcel.generic.InstructionList;
160 public void byte_code(InstructionList il, MethodGen method, ConstantPoolGen cp) { in byte_code()
163 InstructionList then_code = new InstructionList(); in byte_code()
164 InstructionList else_code = new InstructionList(); in byte_code()
DASTProgram.java34 import org.apache.bcel.generic.InstructionList;
216 InstructionList il = new InstructionList(); in byte_code()
255 il = new InstructionList(); in byte_code()
290 il = new InstructionList(); in byte_code()
305 il = new InstructionList(); in byte_code()
/external/deqp-deps/SPIRV-Tools/test/opt/
Dinstruction_list_test.cpp50 InstructionList* list = new InstructionList(); in TEST()
72 InstructionList list; in TEST()
94 InstructionList list; in TEST()
/external/swiftshader/third_party/SPIRV-Tools/test/opt/
Dinstruction_list_test.cpp50 InstructionList* list = new InstructionList(); in TEST()
72 InstructionList list; in TEST()
94 InstructionList list; in TEST()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/util/
DInstructionFinderTest.java28 import org.apache.bcel.generic.InstructionList;
33 final InstructionList il = new InstructionList(); in testSearch()
/external/apache-commons-bcel/src/examples/
Dhelloify.java33 import org.apache.bcel.generic.InstructionList;
104 InstructionList patch = new InstructionList(); in helloifyMethod()
110 InstructionList il = mg.getInstructionList(); in helloifyMethod()
DProxyCreator.java31 import org.apache.bcel.generic.InstructionList;
87 InstructionList il = new InstructionList(); in main()
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
DBitcodeReader.cpp2031 Instruction *Inst = InstructionList[Record[0]]; in ParseMetadataAttachment()
2053 InstructionList.clear(); in ParseFunctionBody()
2172 InstructionList.push_back(I); in ParseFunctionBody()
2204 InstructionList.push_back(I); in ParseFunctionBody()
2223 InstructionList.push_back(I); in ParseFunctionBody()
2246 InstructionList.push_back(I); in ParseFunctionBody()
2270 InstructionList.push_back(I); in ParseFunctionBody()
2285 InstructionList.push_back(I); in ParseFunctionBody()
2312 InstructionList.push_back(I); in ParseFunctionBody()
2323 InstructionList.push_back(I); in ParseFunctionBody()
[all …]
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DGeneratingAnnotatedClassesTestCase.java80 final InstructionList il = new InstructionList(); in testGenerateClassLevelAnnotations()
123 final InstructionList il = new InstructionList(); in testGenerateMethodLevelAnnotations1()
163 final InstructionList il = new InstructionList(); in testGenerateMethodLevelAnnotations2()
415 final ConstantPoolGen cp, final InstructionList il) in buildClassContentsWithAnnotatedMethods()
511 final InstructionList il) in buildClassContents()
619 private MethodGen createMethodGen(final String methodname, final InstructionList il, in createMethodGen()

123