| /dalvik/vm/mterp/armv6t2/ |
| unopWider.S | 17 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
| /dalvik/vm/mterp/x86/ |
| OP_FILLED_NEW_ARRAY.S | 19 jne .L${opcode}_continue # yes, continue 31 # note: fall through to .L${opcode}_continue 39 .L${opcode}_continue: 50 jne .L${opcode}_notimpl # no, not handled yet 125 .L${opcode}_notimpl:
|
| OP_FILLED_NEW_ARRAY_JUMBO.S | 14 jne .L${opcode}_continue # yes, continue 28 # note: fall through to .L${opcode}_continue 35 .L${opcode}_continue: 46 jne .L${opcode}_notimpl # no, not handled yet 96 .L${opcode}_notimpl:
|
| OP_SPUT_OBJECT.S | 15 je .L${opcode}_resolve # if not, make it so 16 .L${opcode}_finish: # field ptr in eax 32 .L${opcode}_resolve: 44 jne .L${opcode}_finish # success, continue
|
| OP_SPUT_OBJECT_JUMBO.S | 15 je .L${opcode}_resolve # if not, make it so 16 .L${opcode}_finish: # field ptr in eax 31 .L${opcode}_resolve: 43 jne .L${opcode}_finish # success, continue
|
| /dalvik/vm/mterp/x86-atom/ |
| OP_APUT_OBJECT.S | 47 je .L${opcode}_skip_check # reference is null so skip type check 48 jmp .L${opcode}_finish 51 .L${opcode}_finish: 74 .L${opcode}_skip_check:
|
| OP_IGET.S | 46 jne .L${opcode}_finish2 54 jmp .L${opcode}_finish 57 .L${opcode}_finish: 68 .L${opcode}_finish2:
|
| OP_IGET_WIDE.S | 39 jne .L${opcode}_finish 45 jmp .L${opcode}_finish2 48 .L${opcode}_finish2: 62 .L${opcode}_finish:
|
| OP_NEW_ARRAY.S | 44 jne .L${opcode}_finish # already resovled so continue 45 jmp .L${opcode}_resolve # need to resolve 55 .L${opcode}_resolve: 79 .L${opcode}_finish:
|
| OP_SPUT_OBJECT.S | 38 je .L${opcode}_resolve 39 jmp .L${opcode}_finish 42 .L${opcode}_resolve: 56 .L${opcode}_finish:
|
| OP_FILLED_NEW_ARRAY.S | 55 jne .L${opcode}_continue 56 jmp .L${opcode}_break 59 .L${opcode}_break: 80 .L${opcode}_continue: 88 jne .L${opcode}_notimpl # jump to not implemented 158 .L${opcode}_notimpl:
|
| /external/chromium/sdch/open-vcdiff/src/ |
| instruction_map.h | 38 // the corresponding opcode. 44 // to create the instruction->opcode mappings. The caller *must* have 54 // Finds an opcode that has the given inst, size, and mode for its first 57 // opcode. Otherwise, returns an opcode value between 0 and 255. 60 // usually want to try again with size == 0 to find an opcode that 73 // Given a first opcode (presumed to have been returned by a previous call to 74 // lookupFirstOpcode), finds an opcode that has the same first instruction as 75 // the first opcode, and has the given inst, size, and mode for its second 79 // usually want to try again with size == 0 to find an opcode tha [all...] |
| encodetable_test.cc | 56 int opcode) { 57 g_exercise_code_table_->inst1[opcode] = inst1; 58 g_exercise_code_table_->mode1[opcode] = mode1; 59 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1; 60 g_exercise_code_table_->inst2[opcode] = inst2; 61 g_exercise_code_table_->mode2[opcode] = mode2; 62 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2; 67 int opcode = 0; local 86 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++); 87 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++) [all...] |
| encodetable.cc | 107 // The VCDiff format allows each opcode to represent either 109 // examine the opcode generated by the last call to EncodeInstruction. 110 // If that opcode was a single-instruction opcode, this function checks 111 // whether there is a compound (double-instruction) opcode that can 114 // single-instruction opcode at position last_opcode_index_ will be 115 // overwritten with the new double-instruction opcode. 117 // In the majority of cases, no compound opcode will be possible, 118 // and a new single-instruction opcode will be appended to 120 // if the opcode does not implicitly give the instruction size 186 OpcodeOrNone opcode = kNoOpcode; local [all...] |
| /external/javassist/src/main/javassist/bytecode/analysis/ |
| Executor.java | 25 import javassist.bytecode.Opcode; 32 public class Executor implements Opcode { 68 int opcode = iter.byteAt(pos); local 71 // Declared opcode in order 72 switch (opcode) { 132 evalLoad(Type.INTEGER, opcode - ILOAD_0, frame, subroutine); 138 evalLoad(Type.LONG, opcode - LLOAD_0, frame, subroutine); 144 evalLoad(Type.FLOAT, opcode - FLOAD_0, frame, subroutine); 150 evalLoad(Type.DOUBLE, opcode - DLOAD_0, frame, subroutine); 156 evalLoad(Type.OBJECT, opcode - ALOAD_0, frame, subroutine) 830 int opcode = iter.byteAt(pos); local 879 int opcode = iter.byteAt(pos + 1); local [all...] |
| /external/llvm/utils/TableGen/ |
| X86DisassemblerTables.h | 37 /// The decoder tables. There is one for each opcode type: 134 /// Opcode and ModRMDecisions. A ContextDecision is printed as: 150 /// IC is one of the contexts in InstructionContext. There is an opcode 192 /// 0xnn is the lowest possible opcode for the current instruction, used for 236 /// @param opcode - The opcode of the instruction, for error reporting. 240 uint8_t opcode); 252 /// setTableFields - Uses the opcode type, instruction context, opcode, and a 256 /// @param type - The opcode type (ONEBYTE, TWOBYTE, etc. [all...] |
| /external/proguard/src/proguard/optimize/info/ |
| DotClassMarker.java | 51 if (constantInstruction.opcode == InstructionConstants.OP_LDC || 52 constantInstruction.opcode == InstructionConstants.OP_LDC_W)
|
| /external/webkit/Source/JavaScriptCore/bytecode/ |
| Opcode.h | 196 macro(op_end, 2) // end must be the last opcode in the list 198 #define OPCODE_ID_ENUM(opcode, length) opcode, 208 #define OPCODE_LENGTH(opcode) opcode##_length 210 #define OPCODE_ID_LENGTH_MAP(opcode, length) length, 220 typedef void* Opcode; 222 typedef const void* Opcode; 225 typedef OpcodeID Opcode; 256 static void recordInstruction(int opcode); [all...] |
| /sdk/emulator/qtools/ |
| armdis.cpp | 6 #include "opcode.h" 45 Opcode opcode = decode(insn); local 46 switch (opcode) { 69 return disasm_alu(opcode, insn, ptr); 72 return disasm_branch(addr, opcode, insn, ptr); 90 return disasm_memblock(opcode, insn, ptr); 107 return disasm_mcr(opcode, insn, ptr); 109 return disasm_mla(opcode, insn, ptr); 115 return disasm_mul(opcode, insn, ptr) 761 uint8_t opcode = (insn >> 21) & 0x7; local 852 uint8_t opcode = (insn >> 21) & 0xf; local [all...] |
| /development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
| MethodSourcer.java | 157 public void visitFieldInsn(int opcode, String owner, String name, String desc) { 169 public void visitInsn(int opcode) { 173 public void visitIntInsn(int opcode, int operand) { 177 public void visitJumpInsn(int opcode, Label label) { 206 public void visitMethodInsn(int opcode, String owner, String name, String desc) { 227 public void visitTypeInsn(int opcode, String type) { 231 public void visitVarInsn(int opcode, int var) {
|
| /external/llvm/lib/Transforms/Instrumentation/ |
| ProfilingUtils.cpp | 73 Instruction::CastOps opcode = CastInst::getCastOpcode(AI, false, ArgVTy, local 76 CastInst::Create(opcode, AI, ArgVTy, "argv.cast", InitCall)); 87 Instruction::CastOps opcode; local 89 opcode = CastInst::getCastOpcode(InitCall, true, AI->getType(), true); 91 CastInst::Create(opcode, InitCall, AI->getType(), "", InsertPos)); 93 opcode = CastInst::getCastOpcode(AI, true, 96 CastInst::Create(opcode, AI, Type::getInt32Ty(Context),
|
| /external/proguard/src/proguard/classfile/instruction/ |
| InstructionFactory.java | 39 byte opcode = code[index++]; 42 if (opcode == InstructionConstants.OP_WIDE) 44 opcode = code[index++]; 48 switch (opcode) 290 throw new IllegalArgumentException("Unknown instruction opcode ["+opcode+"] at offset "+offset); 293 instruction.opcode = opcode;
|
| /external/proguard/src/proguard/preverify/ |
| CodeSubroutineInliner.java | 254 byte opcode = variableInstruction.opcode; 255 if (opcode == InstructionConstants.OP_RET) 304 byte opcode = branchInstruction.opcode; 305 if (opcode == InstructionConstants.OP_JSR || 306 opcode == InstructionConstants.OP_JSR_W)
|
| /dalvik/dx/src/com/android/dx/cf/code/ |
| BasicBlocker.java | 44 * middle of an instruction or is a definitely-dead opcode 122 public void visitInvalid(int opcode, int offset, int length) { 127 public void visitNoArgs(int opcode, int offset, int length, Type type) { 128 switch (opcode) { 187 public void visitLocal(int opcode, int offset, int length, 189 if (opcode == ByteOps.RET) { 198 public void visitConstant(int opcode, int offset, int length, 215 public void visitBranch(int opcode, int offset, int length, 217 switch (opcode) { 246 public void visitSwitch(int opcode, int offset, int length [all...] |
| /external/openssl/crypto/perlasm/ |
| ppc-xlate.pl | 142 my $opcode = eval("\$$mnemonic"); 144 if (ref($opcode) eq 'CODE') { $line = &$opcode($f,split(',',$line)); }
|