| /external/proguard/src/proguard/optimize/info/ |
| ReadWriteFieldMarker.java | 55 byte opcode = constantInstruction.opcode; 58 switch (opcode)
|
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| RopTranslator.java | 471 * swap the sources so that an opcode of form 12x can be selected 538 Dop opcode = RopToDop.dopFor(insn); local 545 di = new SimpleInsn(opcode, pos, getRegs(insn)); 558 di = new TargetInsn(opcode, pos, getRegs(insn), 573 Dop opcode = RopToDop.dopFor(insn); local 595 di = new SimpleInsn(opcode, pos, 602 di = new CstInsn(opcode, pos, regs, insn.getConstant()); 639 Dop opcode = dataInsn.isPacked() ? local 642 new TargetInsn(opcode, pos, getRegs(insn), dataAddress); 681 Dop opcode = RopToDop.dopFor(insn) local 734 Dop opcode = RopToDop.dopFor(insn); local [all...] |
| /dalvik/dx/src/com/android/dx/dex/code/ |
| RopTranslator.java | 478 * swap the sources so that an opcode of form 12x can be selected 545 Dop opcode = RopToDop.dopFor(insn); local 552 di = new SimpleInsn(opcode, pos, getRegs(insn)); 565 di = new TargetInsn(opcode, pos, getRegs(insn), 580 Dop opcode = RopToDop.dopFor(insn); local 602 di = new SimpleInsn(opcode, pos, 609 di = new CstInsn(opcode, pos, regs, insn.getConstant()); 646 Dop opcode = dataInsn.isPacked() ? local 649 new TargetInsn(opcode, pos, getRegs(insn), dataAddress); 688 Dop opcode = RopToDop.dopFor(insn) local 741 Dop opcode = RopToDop.dopFor(insn); local [all...] |
| InsnFormat.java | 40 * flag to enable/disable the new extended opcode formats; meant as a 477 * Helper method to combine an opcode and a second byte of data into 480 * @param insn {@code non-null;} the instruction containing the opcode 489 int opcode = insn.getOpcode().getOpcode(); local 491 if ((opcode & 0xff) != opcode) { 492 throw new IllegalArgumentException("opcode out of range 0..255"); 495 return (short) (opcode | (arg << 8)); 499 * Helper method to get an extended (16-bit) opcode out of an 500 * instruction, returning it as a code unit. The opcode 508 int opcode = insn.getOpcode().getOpcode(); local [all...] |
| /external/bluetooth/hcidump/parser/ |
| lmp.c | 170 static char *opcode2str(uint16_t opcode) 172 switch (opcode) { 386 uint8_t opcode = LMP_U8(frm); local 389 printf("op code %d (%s)\n", opcode, opcode2str(opcode)); 394 uint8_t opcode = LMP_U8(frm); local 398 printf("op code %d (%s)\n", opcode, opcode2str(opcode)); 800 uint16_t opcode = LMP_U8(frm) + (LMP_U8(frm) << 7); local 803 printf("op code %d/%d (%s)\n", opcode & 0x7f, opcode >> 7, opcode2str(opcode)) 808 uint16_t opcode = LMP_U8(frm) + (LMP_U8(frm) << 7); local 1131 uint16_t opcode; local [all...] |
| /dalvik/vm/mterp/x86/ |
| OP_APUT_OBJECT.S | 26 je .L${opcode}_skip_check 41 jne .L${opcode}_types_okay 52 .L${opcode}_types_okay: 62 .L${opcode}_skip_check:
|
| /dalvik/vm/mterp/x86-atom/ |
| OP_CONST_CLASS.S | 40 je .L${opcode}_resolve # resolve class 51 .L${opcode}_resolve:
|
| OP_CONST_STRING.S | 37 je .L${opcode}_resolve # resolve string reference 50 .L${opcode}_resolve:
|
| OP_CONST_STRING_JUMBO.S | 40 je .L${opcode}_resolve # resolve string reference 51 .L${opcode}_resolve:
|
| OP_EXECUTE_INLINE_RANGE.S | 37 jmp .L${opcode}_continue 46 .L${opcode}_continue:
|
| OP_INVOKE_INTERFACE.S | 60 jmp .L${opcode}_break 62 .L${opcode}_break:
|
| OP_INVOKE_STATIC.S | 53 jmp .L${opcode}_break 56 .L${opcode}_break:
|
| /external/chromium/sdch/open-vcdiff/src/ |
| codetable.h | 45 // OpcodeOrNone: An opcode is a value between 0-255. There is not room 46 // in a single byte to express all these values plus a "no opcode found" 47 // value. So use a 16-bit integer to hold either an opcode or kNoOpcode. 50 const OpcodeOrNone kNoOpcode = 0x100; // outside the opcode range 0x00 - 0xFF 117 static bool ValidateOpcode(int opcode,
|
| /external/openssl/crypto/perlasm/ |
| x86nasm.pl | 14 { my $opcode=shift; 18 { if ($opcode =~ m/^j/o && $#_==0) # optimize jumps 20 elsif ($opcode eq "lea" && $#_==1) # wipe storage qualifier from lea 23 &::emit($opcode,@_);
|
| /external/proguard/src/proguard/classfile/editor/ |
| InstructionAdder.java | 69 new ConstantInstruction(constantInstruction.opcode,
|
| /external/webkit/Source/JavaScriptCore/bytecode/ |
| Instruction.h | 33 #include "Opcode.h" 57 // Structure used by op_get_by_id_self_list and op_get_by_id_proto_list instruction to hold data off the main opcode stream. 126 Instruction(Opcode opcode) 130 // the entire struct is initialized, when opcode is not a pointer. 133 u.opcode = opcode; 163 Opcode opcode; member in union:JSC::Instruction::__anon13062
|
| /external/oprofile/opjitconv/ |
| debug_line.c | 52 /* Adding new opcode needs an update of the standard_opcode_length 101 // number of opcode + 1 103 /* follow the array of opcode args nr: ubytes [nr_opcode_base] */ 198 static void emit_extended_opcode(struct growable_buffer * b, ubyte opcode, 203 add_data(b, &opcode, 1); 208 static void emit_opcode(struct growable_buffer * b, ubyte opcode) 210 add_data(b, &opcode, 1); 215 ubyte opcode, long data) 217 add_data(b, &opcode, 1); 222 static void emit_opcode_unsigned(struct growable_buffer * b, ubyte opcode, 295 unsigned long opcode = temp + local [all...] |
| /dalvik/vm/compiler/template/armv5te/ |
| TEMPLATE_CMPL_FLOAT.S | 41 bhi .L${opcode}_gt_or_nan @ C set and Z clear, disambiguate 48 .L${opcode}_gt_or_nan:
|
| /dalvik/vm/mterp/arm-vfp/ |
| fbinop.S | 20 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
| fbinopWide.S | 20 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
| /dalvik/vm/mterp/armv5te/ |
| OP_CONST_WIDE.S | 12 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
| OP_FILL_ARRAY_DATA.S | 14 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
| OP_GOTO.S | 21 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
| OP_GOTO_32.S | 28 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
| OP_IPUT_QUICK.S | 15 GET_INST_OPCODE(ip) @ extract opcode from rINST
|