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

1 2 34 5 6 7 8 91011>>

  /dalvik/vm/mterp/x86-atom/
stub.S 25 FINISH_A # jump to next instruction
OP_AGET_WIDE.S 40 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
43 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_APUT.S 46 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
50 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_APUT_WIDE.S 40 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
43 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_CONST_WIDE.S 38 FFETCH_ADV 5, %eax # %eax<- next instruction hi; fetch, advance
42 FGETOP_JMP 5, %eax # jump to next instruction; getop, jmp
OP_FILL_ARRAY_DATA.S 42 FFETCH_ADV 3, %edx # %edx<- next instruction hi; fetch, advance
46 FGETOP_JMP 3, %edx # jump to next instruction; getop, jmp
OP_IGET_QUICK.S 35 FFETCH_ADV 2, %edx # %eax<- next instruction hi; fetch, advance
38 FGETOP_JMP 2, %edx # jump to next instruction; getop, jmp
OP_IGET_WIDE_QUICK.S 33 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
38 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_IPUT_QUICK.S 34 FFETCH_ADV 2, %edx # %edx<- next instruction hi; fetch, advance
37 FGETOP_JMP 2, %edx # jump to next instruction; getop, jmp
OP_IPUT_WIDE_QUICK.S 35 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
38 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_MONITOR_ENTER.S 47 FFETCH_ADV 1, %edx # %edx<- next instruction hi; fetch, advance
49 FGETOP_JMP 1, %edx # jump to next instruction; getop, jmp
  /external/oprofile/events/mips/vr5500/
events 8 event:0x2 counters:0,1 um:zero minimum:500 name:LOAD_PREF_CACHE_INSTRUCTIONS : Execution of load/prefetch/cache instruction
9 event:0x3 counters:0,1 um:zero minimum:500 name:STORES : Execution of store instruction
10 event:0x4 counters:0,1 um:zero minimum:500 name:BRANCHES : Execution of branch instruction
11 event:0x5 counters:0,1 um:zero minimum:500 name:FP_INSTRUCTIONS : Execution of floating-point instruction
15 event:0x9 counters:0,1 um:zero minimum:500 name:ICACHE_MISSES : Instruction cache miss
  /external/proguard/src/proguard/classfile/editor/
InstructionWriter.java 26 import proguard.classfile.instruction.*;
27 import proguard.classfile.instruction.visitor.InstructionVisitor;
68 // Try to write out the instruction.
78 // Try to write out the instruction.
83 // Create a new constant instruction that will fit.
84 Instruction replacementInstruction =
91 // Write out a dummy constant instruction for now.
103 // Try to write out the instruction.
108 // Create a new variable instruction that will fit.
109 Instruction replacementInstruction
    [all...]
VariableSizeUpdater.java 26 import proguard.classfile.instruction.*;
27 import proguard.classfile.instruction.visitor.InstructionVisitor;
77 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionVisitor.java 21 package proguard.classfile.instruction.visitor;
25 import proguard.classfile.instruction.*;
30 * <code>Instruction</code> objects.
  /external/valgrind/main/none/tests/x86/
faultstatus.stderr.exp 6 Test 5: disInstr: unhandled instruction bytes: 0x........ 0x........ 0x........ 0x........
  /external/proguard/src/proguard/optimize/info/
SideEffectMethodMarker.java 26 import proguard.classfile.instruction.*;
137 // Get the current instruction.
138 Instruction instruction = InstructionFactory.create(code, offset); local
145 instruction))
150 // Go to the next instruction.
151 offset += instruction.length(offset);
BackwardBranchMarker.java 25 import proguard.classfile.instruction.*;
26 import proguard.classfile.instruction.visitor.InstructionVisitor;
41 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
DotClassMarker.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
InstanceofClassMarker.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
InstantiationClassMarker.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
MethodInvocationMarker.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
46 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
  /external/proguard/src/proguard/optimize/peephole/
UnreachableExceptionRemover.java 26 import proguard.classfile.instruction.*;
122 // Get the current instruction.
123 Instruction instruction = InstructionFactory.create(code, offset); local
130 instruction))
135 // Go to the next instruction.
136 offset += instruction.length(offset);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketUserauthInfoRequest.java 20 String instruction; field in class:PacketUserauthInfoRequest
40 instruction = tr.readString();
65 return instruction;
  /external/proguard/src/proguard/classfile/visitor/
DotClassClassVisitor.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
64 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {}
71 // Could this instruction be a .class construct?

Completed in 478 milliseconds

1 2 34 5 6 7 8 91011>>