HomeSort by relevance Sort by last modified time
    Searched refs:instruction (Results 1 - 25 of 330) 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, jm
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, jm
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
binopWide2addr.S 20 * "instr" line to specify an instruction that performs
37 FFETCH_ADV 1, %eax # %eax<- next instruction hi; fetch, advance
42 #FINISH 1 # jump to next instruction
43 FGETOP_JMP 1, %eax # jump to next instruction; getop, jm
OP_CMPL_FLOAT.S 49 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
56 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
61 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
65 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
69 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
binopD2addr.S 51 FFETCH_ADV 1, %edx # %ecx<- next instruction hi; fetch, advance
53 FGETOP_JMP 1, %edx # jump to next instruction; getop, jmp
55 FFETCH_ADV 1, %eax # %ecx<- next instruction hi; fetch, advance
57 FGETOP_JMP 1, %eax # jump to next instruction; getop, jmp
62 FFETCH_ADV 1, %edx # %ecx<- next instruction hi; fetch, advance
68 FGETOP_JMP 1, %edx # 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
  /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/webkit/JavaScriptCore/jit/
JITCall.cpp 62 void JIT::compileOpCallSetupArgs(Instruction* instruction)
64 int argCount = instruction[3].u.operand;
65 int registerOffset = instruction[4].u.operand;
72 void JIT::compileOpConstructSetupArgs(Instruction* instruction)
74 int argCount = instruction[3].u.operand;
75 int registerOffset = instruction[4].u.operand;
76 int proto = instruction[5].u.operand;
77 int thisRegister = instruction[6].u.operand
    [all...]
  /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/v8/src/
disasm.h 58 // Writes one disassembled instruction into 'buffer' (0-terminated).
59 // Returns the length of the disassembled machine instruction in bytes.
60 int InstructionDecode(v8::internal::Vector<char> buffer, byte* instruction);
62 // Returns -1 if instruction does not mark the beginning of a constant pool,
64 int ConstantPoolSizeAt(byte* instruction);

Completed in 300 milliseconds

1 2 3 4 5 6 7 8 91011>>