HomeSort by relevance Sort by last modified time
    Searched defs:instruction (Results 76 - 100 of 893) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/instruction/
SmalideaInstruction23x.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction23x;
40 public SmalideaInstruction23x(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction30t.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction30t;
40 public SmalideaInstruction30t(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction31c.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction31c;
40 public SmalideaInstruction31c(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction31i.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction31i;
40 public SmalideaInstruction31i(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction31t.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction31t;
40 public SmalideaInstruction31t(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction32x.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction32x;
40 public SmalideaInstruction32x(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
SmalideaInstruction51l.java 32 package org.jf.smalidea.dexlib.instruction;
34 import org.jf.dexlib2.iface.instruction.formats.Instruction51l;
40 public SmalideaInstruction51l(@Nonnull SmaliInstruction instruction) {
41 super(instruction);
  /art/compiler/optimizing/
side_effects_analysis.cc 45 HInstruction* instruction = inst_it.Current(); local
46 effects = effects.Union(instruction->GetSideEffects());
  /external/google-breakpad/src/processor/
disassembler_x86_unittest.cc 89 const libdis::x86_insn_t* instruction = dis.currentInstruction(); local
90 EXPECT_EQ(libdis::insn_controlflow, instruction->group);
91 EXPECT_EQ(libdis::insn_return, instruction->type);
stackwalker_ppc.cc 73 // The instruction pointer is stored directly in a register, so pull it
78 frame->instruction = frame->context.srr0;
91 // The instruction pointers for previous frames are saved on the stack.
118 uint32_t instruction; local
119 if (!memory_->GetMemoryAtAddress(stack_pointer + 8, &instruction) ||
120 instruction <= 1) {
127 frame->context.srr0 = instruction;
133 // frame->context.srr0 is the return address, which is one instruction
135 // frame_ppc->instruction to four less than that. Since all ppc
137 // instruction. This allows source line information to match up with th
    [all...]
stackwalker_ppc64.cc 64 // The instruction pointer is stored directly in a register, so pull it
69 frame->instruction = frame->context.srr0;
82 // The instruction pointers for previous frames are saved on the stack.
109 uint64_t instruction; local
110 if (!memory_->GetMemoryAtAddress(stack_pointer + 16, &instruction) ||
111 instruction <= 1) {
118 frame->context.srr0 = instruction;
124 // frame->context.srr0 is the return address, which is one instruction
126 // frame_ppc64->instruction to eight less than that. Since all ppc64
128 // instruction. This allows source line information to match up with th
    [all...]
stackwalker_sparc.cc 64 // The instruction pointer is stored directly in a register, so pull it
69 frame->instruction = frame->context.pc;
102 uint32_t instruction; local
104 &instruction) || instruction <= 1) {
120 // frame->context.pc is the return address, which is 2 instruction
122 // a CALL instruction then a NOP instruction.
123 // frame_ppc->instruction to 8 less than that. Since all sparc
125 // instruction. This allows source line information to match up with th
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
SwitchInstruction.java 21 package proguard.classfile.instruction;
24 * This Instruction represents a simple instruction without variable arguments
29 public abstract class SwitchInstruction extends Instruction
55 * Copies the given instruction into this instruction.
56 * @param switchInstruction the instruction to be copied.
57 * @return this instruction.
69 // Implementations for Instruction.
  /external/proguard/src/proguard/classfile/instruction/visitor/
AllInstructionVisitor.java 21 package proguard.classfile.instruction.visitor;
29 * This AttributeVisitor lets a given InstructionVisitor visit all Instruction
InstructionConstantVisitor.java 21 package proguard.classfile.instruction.visitor;
26 import proguard.classfile.instruction.*;
55 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
InstructionCounter.java 21 package proguard.classfile.instruction.visitor;
25 import proguard.classfile.instruction.Instruction;
55 Instruction instruction)
  /external/proguard/src/proguard/optimize/info/
ExceptionInstructionChecker.java 25 import proguard.classfile.instruction.*;
26 import proguard.classfile.instruction.visitor.InstructionVisitor;
30 * This class can tell whether an instruction might throw exceptions.
74 // Get the current instruction.
75 Instruction instruction = InstructionFactory.create(code, offset); local
82 instruction))
87 // Go to the next instruction.
88 offset += instruction.length(offset);
96 * Returns whether the specified instruction may throw exceptions
103 Instruction instruction = InstructionFactory.create(codeAttribute.code, offset); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderInstruction10t.java 32 package org.jf.dexlib2.builder.instruction;
38 import org.jf.dexlib2.iface.instruction.formats.Instruction10t;
BuilderInstruction10x.java 32 package org.jf.dexlib2.builder.instruction;
37 import org.jf.dexlib2.iface.instruction.formats.Instruction10x;
BuilderInstruction11x.java 32 package org.jf.dexlib2.builder.instruction;
37 import org.jf.dexlib2.iface.instruction.formats.Instruction11x;
BuilderInstruction20t.java 32 package org.jf.dexlib2.builder.instruction;
38 import org.jf.dexlib2.iface.instruction.formats.Instruction20t;
BuilderInstruction30t.java 32 package org.jf.dexlib2.builder.instruction;
38 import org.jf.dexlib2.iface.instruction.formats.Instruction30t;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction10t.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction10t;
DexBackedInstruction11n.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction11n;
DexBackedInstruction11x.java 32 package org.jf.dexlib2.dexbacked.instruction;
36 import org.jf.dexlib2.iface.instruction.formats.Instruction11x;

Completed in 338 milliseconds

1 2 34 5 6 7 8 91011>>