/external/proguard/src/proguard/classfile/visitor/ |
DotClassClassVisitor.java | 67 byte opcode = constantInstruction.opcode; 70 if (opcode == InstructionConstants.OP_LDC || 71 opcode == InstructionConstants.OP_LDC_W)
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/ |
OffsetInstructionFormatMethodItem.java | 34 import org.jf.dexlib2.Opcode; 62 Opcode opcode = instruction.getOpcode(); local 63 switch (opcode.format) { 72 if (opcode == Opcode.FILL_ARRAY_DATA) { 75 if (opcode == Opcode.PACKED_SWITCH) { 78 // Opcode.SPARSE_SWITCH;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/ |
DexBackedInstruction22c.java | 34 import org.jf.dexlib2.Opcode; 45 @Nonnull Opcode opcode, 47 super(dexFile, opcode, instructionStart); 63 return DexBackedReference.makeReference(dexFile, opcode.referenceType, dexFile.readUshort(instructionStart + 2)); 68 return opcode.referenceType;
|
DexBackedInstruction35c.java | 34 import org.jf.dexlib2.Opcode; 45 @Nonnull Opcode opcode, 47 super(dexFile, opcode, instructionStart); 82 return DexBackedReference.makeReference(dexFile, opcode.referenceType, 88 return opcode.referenceType;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/ |
ImmutableInstruction21c.java | 35 import org.jf.dexlib2.Opcode; 50 public ImmutableInstruction21c(@Nonnull Opcode opcode, 53 super(opcode); 55 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); 70 @Override public int getReferenceType() { return opcode.referenceType; }
|
ImmutableInstruction22c.java | 35 import org.jf.dexlib2.Opcode; 51 public ImmutableInstruction22c(@Nonnull Opcode opcode, 55 super(opcode); 58 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); 75 @Override public int getReferenceType() { return opcode.referenceType; }
|
ImmutableInstruction31c.java | 35 import org.jf.dexlib2.Opcode; 50 public ImmutableInstruction31c(@Nonnull Opcode opcode, 53 super(opcode); 55 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); 70 @Override public int getReferenceType() { return opcode.referenceType; }
|
ImmutableInstruction3rc.java | 35 import org.jf.dexlib2.Opcode; 52 public ImmutableInstruction3rc(@Nonnull Opcode opcode, 56 super(opcode); 59 this.reference = ImmutableReferenceFactory.of(opcode.referenceType, reference); 76 @Override public int getReferenceType() { return opcode.referenceType; }
|
/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/ltrace/sysdeps/linux-gnu/s390/ |
trace.c | 70 long pc, opcode, offset_reg, scno, tmp; local 118 opcode = ptrace(PTRACE_PEEKTEXT, proc->pid, 121 if ((opcode & 0xffff) == 0x0001) { 124 } else if ((opcode & 0xff00) == 0x0a00) { 125 /* SVC opcode */ 126 scno = opcode & 0xff; 127 } else if ((opcode & 0xff000000) == 0x44000000) { 129 svc_addr = (void *)(opcode & 0xfff); 131 offset_reg = (opcode & 0x000f0000) >> 16; 136 offset_reg = (opcode & 0x0000f000) >> 12 [all...] |
/external/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...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
DexTranslationAdvice.java | 57 public boolean hasConstantOperation(Rop opcode, 67 opcode.getOpcode() == RegOps.SUB) { 77 switch (opcode.getOpcode()) { 102 public boolean requiresSourcesInOrder(Rop opcode, 105 return !disableSourcesInOrder && opcode.isCallLike()
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
DexTranslationAdvice.java | 57 public boolean hasConstantOperation(Rop opcode, 67 opcode.getOpcode() == RegOps.SUB) { 77 switch (opcode.getOpcode()) { 102 public boolean requiresSourcesInOrder(Rop opcode, 105 return !disableSourcesInOrder && opcode.isCallLike()
|
/external/proguard/src/proguard/classfile/instruction/ |
LookUpSwitchInstruction.java | 47 public LookUpSwitchInstruction(byte opcode, 52 this.opcode = opcode; 66 this.opcode = lookUpSwitchInstruction.opcode;
|
TableSwitchInstruction.java | 48 public TableSwitchInstruction(byte opcode, 54 this.opcode = opcode; 69 this.opcode = tableSwitchInstruction.opcode;
|
/external/chromium_org/sandbox/win/src/sidestep/ |
mini_disassembler.cpp | 58 // specified by the opcode and/or ModR/M byte and/or SIB byte. 63 // We get the total length of any prefixes, the opcode, and the ModR/M and 90 const Opcode& opcode = s_ia32_opcode_map_[0].table_[*start_byte]; local 92 switch (opcode.type_) { 108 instruction_type = opcode.type_; 132 const Opcode& opcode = table.table_[current_byte]; local 133 if (IT_UNUSED == opcode.type_) { 139 } else if (IT_REFERENCE == opcode.type_) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/ |
rbug_core.c | 233 if (header->opcode != (int32_t)RBUG_OP_NOOP) 241 ret->header.opcode = header->opcode; 252 if (header->opcode != (int32_t)RBUG_OP_PING) 260 ret->header.opcode = header->opcode; 274 if (header->opcode != (int32_t)RBUG_OP_ERROR) 285 ret->header.opcode = header->opcode; 301 if (header->opcode != (int32_t)RBUG_OP_PING_REPLY [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/include/ |
sm4.h | 66 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18782 73 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18783 85 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18784 94 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18785 102 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18786 108 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18787 114 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18788 119 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18789 124 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18790 129 unsigned opcode : 11 member in struct:sm4_token_instruction::__anon18781::__anon18791 134 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18792 139 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18793 144 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18794 149 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18795 154 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon18781::__anon18796 [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
mini_disassembler.cc | 83 // specified by the opcode and/or ModR/M byte and/or SIB byte. 88 // We get the total length of any prefixes, the opcode, and the ModR/M and 121 const Opcode& opcode = s_ia32_opcode_map_[0].table_[*start_byte]; local 123 switch (opcode.type_) { 141 instruction_type = opcode.type_; 165 const Opcode& opcode = table.table_[current_byte]; local 166 if (IT_UNUSED == opcode.type_) { 172 } else if (IT_REFERENCE == opcode.type_) [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
mini_disassembler.cc | 83 // specified by the opcode and/or ModR/M byte and/or SIB byte. 88 // We get the total length of any prefixes, the opcode, and the ModR/M and 121 const Opcode& opcode = s_ia32_opcode_map_[0].table_[*start_byte]; local 123 switch (opcode.type_) { 141 instruction_type = opcode.type_; 165 const Opcode& opcode = table.table_[current_byte]; local 166 if (IT_UNUSED == opcode.type_) { 172 } else if (IT_REFERENCE == opcode.type_) [all...] |
/external/chromium_org/tools/traceline/traceline/sidestep/ |
mini_disassembler.cc | 79 // specified by the opcode and/or ModR/M byte and/or SIB byte. 84 // We get the total length of any prefixes, the opcode, and the ModR/M and 111 const Opcode& opcode = s_ia32_opcode_map_[0].table_[*start_byte]; local 113 switch (opcode.type_) { 129 instruction_type = opcode.type_; 153 const Opcode& opcode = table.table_[current_byte]; local 154 if (IT_UNUSED == opcode.type_) { 160 } else if (IT_REFERENCE == opcode.type_) [all...] |
/external/mesa3d/src/gallium/auxiliary/rbug/ |
rbug_core.c | 233 if (header->opcode != (int32_t)RBUG_OP_NOOP) 241 ret->header.opcode = header->opcode; 252 if (header->opcode != (int32_t)RBUG_OP_PING) 260 ret->header.opcode = header->opcode; 274 if (header->opcode != (int32_t)RBUG_OP_ERROR) 285 ret->header.opcode = header->opcode; 301 if (header->opcode != (int32_t)RBUG_OP_PING_REPLY [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/ |
sm4.h | 66 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11266 73 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11267 85 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11268 94 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11269 102 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11270 108 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11271 114 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11272 119 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11273 124 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11274 129 unsigned opcode : 11 member in struct:sm4_token_instruction::__anon11265::__anon11275 134 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11276 139 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11277 144 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11278 149 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11279 154 unsigned opcode : 11; member in struct:sm4_token_instruction::__anon11265::__anon11280 [all...] |
/bionic/libc/kernel/uapi/asm-mips/asm/ |
inst.h | 445 BITFIELD_FIELD(unsigned int opcode : 6, 451 BITFIELD_FIELD(unsigned int opcode : 6, 460 BITFIELD_FIELD(unsigned int opcode : 6, 469 BITFIELD_FIELD(unsigned int opcode : 6, 479 BITFIELD_FIELD(unsigned int opcode : 6, 490 BITFIELD_FIELD(unsigned int opcode : 6, 501 BITFIELD_FIELD(unsigned int opcode : 6, 514 BITFIELD_FIELD(unsigned int opcode : 6, 526 BITFIELD_FIELD(unsigned int opcode : 6, 534 BITFIELD_FIELD(unsigned int opcode : 6 [all...] |
/development/ndk/platforms/android-L/arch-mips/include/asm/ |
inst.h | 440 BITFIELD_FIELD(unsigned int opcode : 6, 446 BITFIELD_FIELD(unsigned int opcode : 6, 455 BITFIELD_FIELD(unsigned int opcode : 6, 464 BITFIELD_FIELD(unsigned int opcode : 6, 474 BITFIELD_FIELD(unsigned int opcode : 6, 485 BITFIELD_FIELD(unsigned int opcode : 6, 496 BITFIELD_FIELD(unsigned int opcode : 6, 509 BITFIELD_FIELD(unsigned int opcode : 6, 521 BITFIELD_FIELD(unsigned int opcode : 6, 529 BITFIELD_FIELD(unsigned int opcode : 6 [all...] |