HomeSort by relevance Sort by last modified time
    Searched refs:instruction (Results 1 - 25 of 420) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionCounter.java 21 package proguard.classfile.instruction.visitor;
25 import proguard.classfile.instruction.Instruction;
55 Instruction instruction)
  /dalvik/vm/mterp/x86-atom/
OP_CONST_16.S 32 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
34 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_NOP.S 30 FINISH 1 # jump to next instruction
OP_CONST_HIGH16.S 32 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
35 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_LONG_TO_DOUBLE.S 34 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
37 FGETOP_JMP 1, %eax # jump to next instruction; getop, jmp
OP_LONG_TO_FLOAT.S 34 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
37 FGETOP_JMP 1, %eax # jump to next instruction; getop, jmp
OP_MOVE.S 35 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
38 FGETOP_JMP 1, %eax # jump to next instruction; getop, jmp
OP_MOVE_16.S 33 FFETCH_ADV 3, %eax # %eax<- next instruction hi; fetch, advance
36 FGETOP_JMP 3, %eax # jump to next instruction; getop, jmp
OP_MOVE_FROM16.S 32 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
35 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_MOVE_RESULT.S 25 * must be done as the instruction immediately after a
35 FFETCH_ADV 1, %ecx # %ecx<- next instruction hi; fetch, advance
38 FGETOP_JMP 1, %ecx # jump to next instruction; getop, jmp
OP_MOVE_RESULT_WIDE.S 25 * must be done as the instruction immediately after a
37 FFETCH_ADV 1, %edx # %edx<- next instruction hi; fetch, advance
38 FGETOP_JMP 1, %edx # jump to next instruction; getop, jmp
OP_MOVE_WIDE_16.S 33 FFETCH_ADV 3, %eax # %eax<- next instruction hi; fetch, advance
36 FGETOP_JMP 3, %eax # jump to next instruction; getop, jmp
OP_MOVE_WIDE_FROM16.S 31 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
34 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
zcmp.S 33 j${revcmp} ${opcode}_2f # goto next instruction or branch
43 FINISH_RB %edx, %ecx # jump to next instruction
51 movzbl 5(rPC), rINST # update the instruction
53 jmp *dvmAsmInstructionJmpTable(, %edx, 4) # jump to next instruction
OP_CMPL_FLOAT.S 41 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
50 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
55 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
59 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
63 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_CONST_WIDE_HIGH16.S 35 FINISH 2 # jump to next instruction
OP_DOUBLE_TO_FLOAT.S 36 FINISH 1 # jump to next instruction
OP_FLOAT_TO_DOUBLE.S 36 FINISH 1 # jump to next instruction
OP_GOTO.S 23 * Description: Performs an unconditionally jump to the indicated instruction.
36 FINISH_RB %edx, %ecx # jump to next instruction
OP_ARRAY_LENGTH.S 37 FFETCH_ADV 1, %edx # %edx<- next instruction hi; fetch, advance
40 FGETOP_JMP 1, %edx # jump to next instruction; getop, jmp
OP_CONST.S 34 FFETCH_ADV 3, %eax # %eax<- next instruction hi; fetch, advance
36 FGETOP_JMP 3, %eax # jump to next instruction; getop, jmp
  /external/proguard/src/proguard/classfile/editor/
InstructionAdder.java 25 import proguard.classfile.instruction.visitor.InstructionVisitor;
26 import proguard.classfile.instruction.*;
58 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
60 // Add the instruction.
61 codeAttributeComposer.appendInstruction(offset, instruction);
67 // Create a copy of the instruction.
68 Instruction newConstantInstruction =
73 // Add the instruction.
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 27 import proguard.classfile.instruction.*;
28 import proguard.classfile.instruction.visitor.InstructionVisitor;
145 Instruction instruction = InstructionFactory.create(codeAttribute.code, local
148 instruction.accept(clazz, method, codeAttribute, offset, this);
370 * Replaces the push instruction at the given offset by a simpler push
371 * instruction, if possible.
375 Instruction instruction)
383 replaceIntegerPushInstruction(clazz, offset, instruction);
    [all...]
  /external/llvm/test/MC/ARM/
thumb-diagnostics.s 8 @ ADD instruction w/o 'S' suffix.
10 @ CHECK-ERRORS: error: invalid instruction
17 @ CHECK-ERRORS: error: instruction variant requires Thumb2
20 @ CHECK-ERRORS-V5: error: instruction variant requires ARMv6 or later
25 @ Out of range immediates for ASR instruction.
28 @ CHECK-ERRORS: error: invalid operand for instruction
31 @ CHECK-ERRORS: error: invalid operand for instruction
35 @ Out of range immediates for BKPT instruction.
38 error: invalid operand for instruction
41 error: invalid operand for instruction
    [all...]
  /external/v8/src/
disasm.h 61 // Writes one disassembled instruction into 'buffer' (0-terminated).
62 // Returns the length of the disassembled machine instruction in bytes.
63 int InstructionDecode(v8::internal::Vector<char> buffer, byte* instruction);
65 // Returns -1 if instruction does not mark the beginning of a constant pool,
67 int ConstantPoolSizeAt(byte* instruction);

Completed in 505 milliseconds

1 2 3 4 5 6 7 8 91011>>