HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 226 - 250 of 681) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/armv5te/
OP_MUL_LONG.S 35 b .L${opcode}_finish
38 .L${opcode}_finish:
39 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHL_LONG.S 25 b .L${opcode}_finish
28 .L${opcode}_finish:
30 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHL_LONG_2ADDR.S 22 b .L${opcode}_finish
25 .L${opcode}_finish:
26 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHR_LONG.S 25 b .L${opcode}_finish
28 .L${opcode}_finish:
30 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHR_LONG_2ADDR.S 22 b .L${opcode}_finish
25 .L${opcode}_finish:
26 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_USHR_LONG.S 25 b .L${opcode}_finish
28 .L${opcode}_finish:
30 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_USHR_LONG_2ADDR.S 22 b .L${opcode}_finish
25 .L${opcode}_finish:
26 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_FILLED_NEW_ARRAY.S 18 bne .L${opcode}_continue @ yes, continue on
25 b .L${opcode}_continue
33 .L${opcode}_continue:
46 bne .L${opcode}_notimpl @ no, not handled yet
88 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
97 .L${opcode}_notimpl:
98 ldr r0, .L_strFilledNewArrayNotImpl_${opcode}
107 .L_strFilledNewArrayNotImpl_${opcode}:
  /dalvik/vm/mterp/armv6t2/
OP_SHL_LONG_2ADDR.S 21 b .L${opcode}_finish
24 .L${opcode}_finish:
25 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_SHR_LONG_2ADDR.S 21 b .L${opcode}_finish
24 .L${opcode}_finish:
25 GET_INST_OPCODE(ip) @ extract opcode from rINST
OP_USHR_LONG_2ADDR.S 21 b .L${opcode}_finish
24 .L${opcode}_finish:
25 GET_INST_OPCODE(ip) @ extract opcode from rINST
  /dalvik/vm/mterp/x86/
OP_EXECUTE_INLINE.S 20 call .L${opcode}_continue # make call; will return after
28 .L${opcode}_continue:
66 # will return to caller of .L${opcode}_continue
OP_INVOKE_VIRTUAL.S 20 jne .L${opcode}_continue # yes, continue
29 jne .L${opcode}_continue # no, continue
36 .L${opcode}_continue:
OP_INVOKE_VIRTUAL_JUMBO.S 15 jne .L${opcode}_continue # yes, continue
24 jne .L${opcode}_continue # no, continue
31 .L${opcode}_continue:
OP_IPUT_JUMBO.S 23 jne .L${opcode}_finish # no, already resolved
34 jne .L${opcode}_finish
37 .L${opcode}_finish:
OP_CONST_CLASS.S 12 je .L${opcode}_resolve
20 .L${opcode}_resolve:
OP_CONST_CLASS_JUMBO.S 12 je .L${opcode}_resolve
19 .L${opcode}_resolve:
OP_CONST_STRING.S 13 je .L${opcode}_resolve
20 .L${opcode}_resolve:
  /external/proguard/src/proguard/classfile/editor/
InstructionWriter.java 85 new ConstantInstruction(constantInstruction.opcode,
110 new VariableInstruction(variableInstruction.opcode,
139 switch (branchInstruction.opcode)
145 new BranchInstruction(branchInstruction.opcode,
169 new BranchInstruction((byte)(((branchInstruction.opcode+1) ^ 1) - 1),
183 new BranchInstruction((byte)(branchInstruction.opcode ^ 1),
  /external/webkit/Source/JavaScriptCore/bytecode/
Opcode.cpp 31 #include "Opcode.h"
45 #define OPCODE_NAME_ENTRY(opcode, size) #opcode,
121 printf("\nExecuted opcode statistics\n");
133 printf("2-opcode sequences by frequency: %lld\n\n", totalInstructions);
174 void OpcodeStats::recordInstruction(int opcode)
176 opcodeCounts[opcode]++;
179 opcodePairCounts[lastOpcode][opcode]++;
181 lastOpcode = opcode;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
VariableSizeInsn.java 40 public final DalvInsn withOpcode(Dop opcode) {
ZeroSizeInsn.java 53 public final DalvInsn withOpcode(Dop opcode) {
  /dalvik/dx/src/com/android/dx/dex/code/
VariableSizeInsn.java 40 public final DalvInsn withOpcode(Dop opcode) {
ZeroSizeInsn.java 53 public final DalvInsn withOpcode(Dop opcode) {
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 29 * numeric opcode, an optional index type, and any additional
44 /** opcode number */
45 private final int opcode; field in class:DecodedInstruction
72 int opcode = Opcodes.extractOpcodeFromUnit(opcodeUnit); local
73 InstructionCodec format = OpcodeInfo.getFormat(opcode);
102 public DecodedInstruction(InstructionCodec format, int opcode,
108 if (!Opcodes.isValidShape(opcode)) {
109 throw new IllegalArgumentException("invalid opcode");
113 this.opcode = opcode;
    [all...]

Completed in 739 milliseconds

1 2 3 4 5 6 7 8 91011>>