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

1 23 4 5 6 7 8 91011>>

  /dalvik/vm/mterp/x86-atom/
binopLit8S.S 20 * to specify an instruction that performs "%edx = %edx op %cl"
36 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
40 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
binopS.S 20 * specify an instruction that performs "%edx = %edx op %cl"
34 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
39 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
binopS2addr.S 20 * "instr" line to specify an instruction that performs
37 FFETCH_ADV 1, %eax # %ecx<- next instruction hi; fetch, advance
42 FGETOP_JMP 1, %eax # jump to next instruction; getop, jmp
binopWide.S 20 * specify an instruction that performs "%xmm0 = %xmm0 op %xmm1"
35 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
40 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
unop.S 20 * preinstr variable that together specify an instruction that
38 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
43 FGETOP_JMP 1, %eax # jump to next instruction; getop, jmp
unopWide.S 20 * preinstr variable that together specify an instruction that
38 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
43 FGETOP_JMP 1, %eax # jump to next instruction; getop, jmp
OP_CMP_LONG.S 47 FINISH 2 # jump to next instruction
51 FINISH 2 # jump to next instruction
55 FINISH 2 # jump to next instruction
OP_DIV_DOUBLE_2ADDR.S 37 FINISH 1 # jump to next instruction
OP_DIV_FLOAT_2ADDR.S 37 FINISH 1 # jump to next instruction
OP_DOUBLE_TO_INT.S 51 FINISH 1 # jump to next instruction
57 FINISH 1 # jump to next instruction
62 FINISH 1 # jump to next instruction
68 FINISH 1 # jump to next instruction
OP_GOTO_16.S 23 * Description: Performs an unconditionally jump to the indicated instruction.
34 FINISH_RB %edx, %ecx # jump to next instruction
OP_INT_TO_FLOAT.S 36 FINISH 1 # jump to next instruction
OP_RSUB_INT_LIT8.S 36 FINISH 2 # jump to next instruction
binopD2addr.S 55 #FFETCH_ADV 1, %edx # %ecx<- next instruction hi; fetch, advance
56 #FGETOP_JMP 1, %edx # jump to next instruction; getop, jmp
66 FFETCH_ADV 1, %edx # %ecx<- next instruction hi; fetch, advance
67 FGETOP_JMP 1, %edx # jump to next instruction; getop, jmp
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
ArrayDataMethodItem.java 40 public ArrayDataMethodItem(CodeItem codeItem, int codeAddress, ArrayDataPseudoInstruction instruction) {
41 super(codeItem, codeAddress, instruction);
46 writer.printUnsignedLongAsHex(instruction.getElementWidth());
50 Iterator<ArrayDataPseudoInstruction.ArrayElement> iterator = instruction.getElements();
  /external/proguard/src/proguard/optimize/peephole/
UnreachableCodeRemover.java 27 import proguard.classfile.instruction.Instruction;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
123 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
127 System.out.println(" "+(reachableCodeMarker.isReachable(offset) ? "+" : "-")+" "+instruction.toString(offset));
130 // Is this instruction unreachable?
136 // Visit the instruction, if required.
139 instruction.accept(clazz, method, codeAttribute, offset, extraInstructionVisitor);
  /external/webkit/Source/JavaScriptCore/jit/
JITCall.cpp 58 void JIT::emit_op_call_put_result(Instruction* instruction)
60 int dst = instruction[1].u.operand;
64 void JIT::compileOpCallVarargs(Instruction* instruction)
66 int callee = instruction[1].u.operand;
67 int argCountRegister = instruction[2].u.operand;
68 int registerOffset = instruction[3].u.operand;
91 void JIT::compileOpCallVarargsSlowCase(Instruction*, Vector<SlowCaseEntry>::iterator& iter)
109 void JIT::compileOpCall(OpcodeID opcodeID, Instruction* instruction, unsigned
    [all...]
JITCall32_64.cpp 58 void JIT::emit_op_call_put_result(Instruction* instruction)
60 int dst = instruction[1].u.operand;
64 void JIT::compileOpCallVarargs(Instruction* instruction)
66 int callee = instruction[1].u.operand;
67 int argCountRegister = instruction[2].u.operand;
68 int registerOffset = instruction[3].u.operand;
91 void JIT::compileOpCallVarargsSlowCase(Instruction* instruction, Vector<SlowCaseEntry>::iterator& iter
    [all...]
  /external/llvm/test/MC/ARM/
thumb2-diagnostics.s 22 @ CHECK-ERRORS: error: too many conditions on IT instruction
39 @ CHECK-ERRORS: error: invalid operand for instruction
40 @ CHECK-ERRORS: error: invalid operand for instruction
41 @ CHECK-ERRORS: error: invalid operand for instruction
42 @ CHECK-ERRORS: error: invalid operand for instruction
43 @ CHECK-ERRORS: error: invalid operand for instruction
44 @ CHECK-ERRORS: error: invalid operand for instruction
  /external/dropbear/
cli-authinteract.c 70 unsigned char *instruction = NULL; local
83 instruction = buf_getstring(ses.payload, NULL);
105 if (strlen(instruction) > 0) {
106 cleantext(instruction);
107 fprintf(stderr, "%s", instruction);
109 m_free(instruction);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
SyntheticAccessorResolver.java 33 import org.jf.dexlib.Code.Instruction;
76 Instruction[] instructions = encodedMethod.codeItem.getInstructions();
87 InstructionWithReference instruction = (InstructionWithReference)instructions[0]; local
88 MethodIdItem referencedMethodIdItem = (MethodIdItem)instruction.getReferencedItem();
99 Instruction22c instruction = (Instruction22c)instructions[0]; local
100 FieldIdItem referencedFieldIdItem = (FieldIdItem)instruction.getReferencedItem();
102 if (instruction.opcode.setsRegister() || instruction.opcode.setsWideRegister()) {
  /dalvik/vm/mterp/armv5te/
OP_CONST_16.S 8 GOTO_OPCODE(ip) @ jump to next instruction
OP_MOVE_16.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_MOVE_FROM16.S 10 GOTO_OPCODE(ip) @ jump to next instruction
OP_MOVE_RESULT.S 9 GOTO_OPCODE(ip) @ jump to next instruction

Completed in 514 milliseconds

1 23 4 5 6 7 8 91011>>