Home
last modified time | relevance | path

Searched refs:getInstructions (Results 1 – 25 of 48) sorted by relevance

12

/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/
DPayloadAlignmentTest.java57 Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPayloadAlignmentRemoveNop()
74 Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPayloadAlignmentAddNop()
101 …uction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPayloadAlignmentRemoveNopWithReferent()
127 …uction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPayloadAlignmentAddNopWithReferent()
176 …uction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testPackedSwitchAlignment()
227 …uction> instructions = Lists.newArrayList(implBuilder.getMethodImplementation().getInstructions()); in testSparseSwitchAlignment()
DFixGotoTest.java33 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testFixGotoToGoto16()
56 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testFixGotoToGoto32()
79 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testFixGoto16ToGoto32()
115 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testFixGotoCascading()
/external/deqp-deps/glslang/SPIRV/
DSpvPostProcess.cpp315 … for (auto ii = b->getInstructions().cbegin(); ii != b->getInstructions().cend(); ii++) in postProcess()
335 std::for_each(block->getInstructions().begin(), block->getInstructions().end(), function); in postProcess()
343 for (auto ii = b->getInstructions().cbegin(); ii != b->getInstructions().cend(); ii++) in postProcess()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DMethodImplementationRewriter.java65 @Override @Nonnull public Iterable<? extends Instruction> getInstructions() { in getInstructions() method in MethodImplementationRewriter.RewrittenMethodImplementation
67 methodImplementation.getInstructions()); in getInstructions()
/external/deqp-deps/SPIRV-Tools/test/val/
Dval_layout_test.cpp68 const std::vector<std::string>& getInstructions() { in getInstructions() function
125 ::testing::Combine(::testing::Range((int)0, (int)getInstructions().size()),
171 std::vector<std::string> code(getInstructions().size()); in GenerateCode()
173 partition_copy(std::begin(getInstructions()), std::end(getInstructions()), in GenerateCode()
/external/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_layout_test.cpp68 const std::vector<std::string>& getInstructions() { in getInstructions() function
125 ::testing::Combine(::testing::Range((int)0, (int)getInstructions().size()),
171 std::vector<std::string> code(getInstructions().size()); in GenerateCode()
173 partition_copy(std::begin(getInstructions()), std::end(getInstructions()), in GenerateCode()
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
DSmalideaMethod.java151 List<SmaliInstruction> instructions = smaliMethod.getInstructions();
162 @Nonnull @Override public Iterable<? extends Instruction> getInstructions() {
163 return Lists.transform(smaliMethod.getInstructions(),
/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliCodeFragmentFactoryTest.java111 PsiElement context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(0); in testCompletion()
115 context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(2); in testCompletion()
119 context = smaliFile.getPsiClass().getMethods()[0].getInstructions().get(6); in testCompletion()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
DImmutableMethodImplementation.java84 methodImplementation.getInstructions(), in of()
90 …@Nonnull @Override public ImmutableList<? extends ImmutableInstruction> getInstructions() { return… in getInstructions() method in ImmutableMethodImplementation
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
DCustomMethodInlineTableTest.java80 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0); in testCustomMethodInlineTable_Virtual()
109 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0); in testCustomMethodInlineTable_Static()
138 Instruction deodexedInstruction = methodAnalyzer.getInstructions().get(0); in testCustomMethodInlineTable_Direct()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
DCodeRegion.h76 getInstructions() const { in getInstructions() function
118 return Regions[Idx]->getInstructions(); in getInstructionSequence()
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DJumboStringConversionTest.java106 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testJumboStringConversion()
158 @Nonnull @Override public Iterable<? extends Instruction> getInstructions() { in testJumboStringConversion_NonMethodBuilder()
203 List<? extends Instruction> actualInstructions = Lists.newArrayList(impl.getInstructions()); in testJumboStringConversion_NonMethodBuilder()
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
DSmaliMethod.java126 @NotNull public List<SmaliInstruction> getInstructions() { in getInstructions() method in SmaliMethod
135 for (SmaliInstruction instruction: getInstructions()) { in getSourcePositionForCodeOffset()
150 for (final SmaliInstruction instruction: getInstructions()) { in getOffsetForLine()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DSubroutine.java53 InstructionHandle[] getInstructions(); in getInstructions() method
/external/smali/smalidea/src/test/java/org/jf/smalidea/dexlib/
DSmalideaMethodTest.java115 List<? extends Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testSmalideaMethod()
425 List<Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testPackedSwitch()
491 List<Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testSparseSwitch()
566 List<Instruction> instructions = Lists.newArrayList(impl.getInstructions()); in testArrayData()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
DMethodImplementation.java56 @Nonnull Iterable<? extends Instruction> getInstructions(); in getInstructions() method
/external/smali/smalidea/src/main/java/org/jf/smalidea/util/
DInstructionUtils.java47 for (SmaliInstruction instruction: method.getInstructions()) { in findFirstInstructionWithTarget()
/external/smali/smali/src/test/java/org/jf/smali/
DImplicitReferenceTest.java85 List<Instruction> instructions = Lists.newArrayList(methodImpl.getInstructions()); in testImplicitMethodReference()
180 List<Instruction> instructions = Lists.newArrayList(methodImpl.getInstructions()); in testImplicitFieldReference()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DClassPool.java125 for (Instruction instruction: methodImpl.getInstructions()) { in internCode()
396 …@Nullable @Override public Iterable<? extends Instruction> getInstructions(@Nonnull PoolMethod met…
399 return impl.getInstructions();
/external/swiftshader/third_party/LLVM/utils/TableGen/
DCodeGenTarget.h133 DenseMap<const Record*, CodeGenInstruction*> &getInstructions() const { in getInstructions() function
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DCodeGenTarget.h136 getInstructions() const { in getInstructions() function
/external/python/cpython2/Lib/compiler/
Dpyassem.py192 def getInstructions(self): member in Block
345 depth[b] = findDepth(b.getInstructions())
374 for inst in b.getInstructions():
/external/llvm/utils/TableGen/
DCodeGenTarget.h149 getInstructions() const { in getInstructions() function
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DClassSection.java79 @Nullable Iterable<? extends Instruction> getInstructions(@Nonnull MethodKey key); in getInstructions() method
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DSyntheticAccessorResolver.java128 List<Instruction> instructions = ImmutableList.copyOf(matchedMethodImpl.getInstructions()); in getAccessedMember()

12