HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 201 - 225 of 1508) sorted by null

1 2 3 4 5 6 7 891011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CstInsn.java 47 * @param opcode the opcode; one of the constants from {@link Dops}
54 public CstInsn(Dop opcode, SourcePosition position,
56 super(opcode, position, registers);
69 public DalvInsn withOpcode(Dop opcode) {
71 new CstInsn(opcode, getPosition(), getRegisters(), constant);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
DexTranslationAdvice.java 57 public boolean hasConstantOperation(Rop opcode,
70 switch (opcode.getOpcode()) {
91 public boolean requiresSourcesInOrder(Rop opcode,
94 return !disableSourcesInOrder && opcode.isCallLike()
  /dalvik/dx/src/com/android/dx/dex/code/
CstInsn.java 47 * @param opcode the opcode; one of the constants from {@link Dops}
54 public CstInsn(Dop opcode, SourcePosition position,
56 super(opcode, position, registers);
69 public DalvInsn withOpcode(Dop opcode) {
71 new CstInsn(opcode, getPosition(), getRegisters(), constant);
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_PERIODIC_PROFILING.S 17 blt .L${opcode}_disable_profiling
22 .L${opcode}_disable_profiling:
  /dalvik/vm/compiler/template/mips/
TEMPLATE_CMP_LONG.S 21 bnez v0, .L${opcode}_finish
26 .L${opcode}_finish:
TEMPLATE_PERIODIC_PROFILING.S 20 bltz a3, .L${opcode}_disable_profiling
24 .L${opcode}_disable_profiling:
funop.S 21 .L${opcode}_set_vreg:
27 .L${opcode}_set_vreg_f:
funopNarrower.S 9 * long-to-float opcode.
24 .L${opcode}_set_vreg:
30 .L${opcode}_set_vreg_f:
funopWider.S 19 .L${opcode}_set_vreg:
26 .L${opcode}_set_vreg:
  /dalvik/vm/mterp/armv5te/
OP_NOP.S 3 GET_INST_OPCODE(ip) @ ip<- opcode from rINST
stub.S 4 bl dvmMterp_${opcode} @ call
7 GET_INST_OPCODE(ip) @ ...trim down to just the opcode
OP_SGET.S 17 beq .L${opcode}_resolve @ yes, do resolve
18 .L${opcode}_finish: @ field ptr in r0
24 GET_INST_OPCODE(ip) @ extract opcode from rINST
33 .L${opcode}_resolve:
50 b .L${opcode}_finish
OP_SPUT.S 17 beq .L${opcode}_resolve @ yes, do resolve
18 .L${opcode}_finish: @ field ptr in r0
22 GET_INST_OPCODE(ip) @ extract opcode from rINST
34 .L${opcode}_resolve:
51 b .L${opcode}_finish @ resume
  /dalvik/vm/mterp/mips/
stub.S 5 JAL(dvmMterp_${opcode}) # call
9 GET_INST_OPCODE(t0) # ...trim down to just the opcode
OP_DOUBLE_TO_LONG.S 16 bgez t1, .L${opcode}_set_vreg
27 blez t1, .L${opcode}_set_vreg
38 bnez t0, .L${opcode}_set_vreg
50 bc1t .L${opcode}_set_vreg
57 bc1t .L${opcode}_set_vreg
63 bc1t .L${opcode}_set_vreg
66 b .L${opcode}_set_vreg
  /dalvik/vm/mterp/x86/
OP_CHECK_CAST.S 18 je .L${opcode}_okay # null obj, cast always succeeds
22 je .L${opcode}_resolve # no, go do it now
23 .L${opcode}_resolved:
25 jne .L${opcode}_fullcheck # no, do full check
26 .L${opcode}_okay:
37 .L${opcode}_fullcheck:
45 jne .L${opcode}_okay # no, success
62 .L${opcode}_resolve:
77 jmp .L${opcode}_resolved # pick up where we left off
OP_MONITOR_EXIT.S 16 je .L${opcode}_errNullObject # go if so
27 .L${opcode}_errNullObject:
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CstInsn.java 47 * @param opcode the opcode; one of the constants from {@link Dops}
54 public CstInsn(Dop opcode, SourcePosition position,
56 super(opcode, position, registers);
69 public DalvInsn withOpcode(Dop opcode) {
71 new CstInsn(opcode, getPosition(), getRegisters(), constant);
  /external/elfutils/libdw/
dwarf_getmacros.c 91 unsigned int opcode = *readp++; local
97 switch (opcode)
137 mac.opcode = opcode;
  /external/libnfc-nci/src/nfc/int/
tags_int.h 36 UINT8 opcode; member in struct:__anon22694
66 UINT8 opcode; member in struct:__anon22697
77 extern const tT1T_CMD_RSP_INFO * t1t_cmd_to_rsp_info (UINT8 opcode);
83 extern const tT2T_CMD_RSP_INFO * t2t_cmd_to_rsp_info (UINT8 opcode);
  /external/proguard/src/proguard/classfile/visitor/
DotClassClassVisitor.java 69 byte opcode = constantInstruction.opcode;
72 if (opcode == InstructionConstants.OP_LDC ||
73 opcode == InstructionConstants.OP_LDC_W)
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction35mi.java 50 public Instruction35mi(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG,
52 super(opcode);
78 private Instruction35mi(Opcode opcode, byte[] buffer, int bufferIndex) {
79 super(opcode);
91 out.writeByte(opcode.value);
131 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) {
132 return new Instruction35mi(opcode, buffer, bufferIndex)
    [all...]
Instruction35ms.java 34 import org.jf.dexlib.Code.Opcode;
50 public Instruction35ms(Opcode opcode, int regCount, byte regD, byte regE, byte regF, byte regG,
52 super(opcode);
78 private Instruction35ms(Opcode opcode, byte[] buffer, int bufferIndex) {
79 super(opcode);
91 out.writeByte(opcode.value);
131 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex)
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 27 import javassist.bytecode.Opcode;
34 public class SubroutineScanner implements Opcode {
84 int opcode = iter.byteAt(pos); local
86 if (opcode == TABLESWITCH) {
92 if (opcode == LOOKUPSWITCH) {
99 if (Util.isReturn(opcode) || opcode == RET || opcode == ATHROW)
102 if (Util.isJumpInstruction(opcode)) {
104 if (opcode == JSR || opcode == JSR_W)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/perlasm/
x86_64-xlate.pl 104 { package opcode; # pick up opcodes
228 die if (opcode->mnemonic() ne "mov");
229 opcode->mnemonic("lea");
275 $sz="q" if ($self->{asterisk} || opcode->mnemonic() eq "movq");
276 $sz="l" if (opcode->mnemonic() eq "movd");
416 if ($nasm && opcode->mnemonic()=~m/^j/) {
429 my %opcode = # lea 2f-1f(%rip),%dst; 1: nop; 2:
448 $line=sprintf "0x%x,0x90000000",$opcode{$1};
654 local *opcode=shift;
659 push @opcode,($rex|0x40) if ($rex)
    [all...]

Completed in 331 milliseconds

1 2 3 4 5 6 7 891011>>