/external/javassist/src/main/javassist/bytecode/analysis/ |
Util.java | 18 import javassist.bytecode.Opcode; 25 public class Util implements Opcode { 27 int opcode = iter.byteAt(pos); local 28 pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1); 32 public static boolean isJumpInstruction(int opcode) { 33 return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode == GOTO_W [all...] |
/external/proguard/src/proguard/optimize/info/ |
ExceptionInstructionChecker.java | 67 byte opcode = simpleInstruction.opcode; 70 if (opcode == InstructionConstants.OP_IDIV || 71 opcode == InstructionConstants.OP_LDIV || 72 opcode == InstructionConstants.OP_IREM || 73 opcode == InstructionConstants.OP_LREM || 74 opcode == InstructionConstants.OP_IALOAD || 75 opcode == InstructionConstants.OP_LALOAD || 76 opcode == InstructionConstants.OP_FALOAD || 77 opcode == InstructionConstants.OP_DALOAD | [all...] |
SideEffectInstructionChecker.java | 76 byte opcode = simpleInstruction.opcode; 79 if (opcode == InstructionConstants.OP_IASTORE || 80 opcode == InstructionConstants.OP_LASTORE || 81 opcode == InstructionConstants.OP_FASTORE || 82 opcode == InstructionConstants.OP_DASTORE || 83 opcode == InstructionConstants.OP_AASTORE || 84 opcode == InstructionConstants.OP_BASTORE || 85 opcode == InstructionConstants.OP_CASTORE || 86 opcode == InstructionConstants.OP_SASTORE | [all...] |
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/ |
OffsetInstruction.java | 32 protected OffsetInstruction(Opcode opcode) { 33 super(opcode);
|
InstructionWithReference.java | 38 protected InstructionWithReference(Opcode opcode, Item referencedItem) { 39 super(opcode); 41 this.referenceType = opcode.referenceType; 45 protected InstructionWithReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) { 46 super(opcode); 52 protected InstructionWithReference(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { 53 super(opcode); [all...] |
Instruction.java | 36 public final Opcode opcode; field in class:Instruction 44 return opcode.format.size/2; 47 protected Instruction(Opcode opcode) { 48 this.opcode = opcode; 63 opcode.name + " instruction"); 69 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) [all...] |
/dalvik/dx/src/com/android/dx/io/instructions/ |
FillArrayDataPayloadDecodedInstruction.java | 39 int opcode, Object data, int size, int elementWidth) { 40 super(format, opcode, 0, null, 0, 0L); 51 int opcode, byte[] data) { 52 this(format, opcode, data, data.length, 1); 59 int opcode, short[] data) { 60 this(format, opcode, data, data.length, 2); 67 int opcode, int[] data) { 68 this(format, opcode, data, data.length, 4); 75 int opcode, long[] data) { 76 this(format, opcode, data, data.length, 8) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
FillArrayDataPayloadDecodedInstruction.java | 39 int opcode, Object data, int size, int elementWidth) { 40 super(format, opcode, 0, null, 0, 0L); 51 int opcode, byte[] data) { 52 this(format, opcode, data, data.length, 1); 59 int opcode, short[] data) { 60 this(format, opcode, data, data.length, 2); 67 int opcode, int[] data) { 68 this(format, opcode, data, data.length, 4); 75 int opcode, long[] data) { 76 this(format, opcode, data, data.length, 8) [all...] |
/art/compiler/dex/quick/x86/ |
x86_lir.h | 226 // MR - Memory Register - opcode [base + disp], reg 228 // AR - Array Register - opcode [base + index * scale + disp], reg 230 // TR - Thread Register - opcode fs:[disp], reg - where fs: is equal to Thread::Current() 232 // RR - Register Register - opcode reg1, reg2 234 // RM - Register Memory - opcode reg, [base + disp] 236 // RA - Register Array - opcode reg, [base + index * scale + disp] 238 // RT - Register Thread - opcode reg, fs:[disp] - where fs: is equal to Thread::Current() 240 // RI - Register Immediate - opcode reg, #immediate 242 // MI - Memory Immediate - opcode [base + disp], #immediate 244 // AI - Array Immediate - opcode [base + index * scale + disp], #immediat 404 X86OpCode opcode; \/\/ e.g. kOpAddRI member in struct:art::X86EncodingMap 410 uint8_t opcode; \/\/ 1 byte opcode member in struct:art::X86EncodingMap::__anon9 [all...] |
/external/proguard/src/proguard/classfile/instruction/ |
BranchInstruction.java | 44 public BranchInstruction(byte opcode, int branchOffset) 46 this.opcode = opcode; 58 this.opcode = branchInstruction.opcode; 70 switch (opcode) 76 default: return opcode; 86 if (opcode == InstructionConstants.OP_GOTO_W) 88 opcode = InstructionConstants.OP_GOTO; 90 else if (opcode == InstructionConstants.OP_JSR_W [all...] |
SwitchInstruction.java | 44 public SwitchInstruction(byte opcode, 48 this.opcode = opcode; 61 this.opcode = switchInstruction.opcode;
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
TranslationAdvice.java | 28 * instruction with the given opcode operating on the given arguments, 33 * @param opcode {@code non-null;} the opcode 39 public boolean hasConstantOperation(Rop opcode, 44 * specified opcode to be in order and contiguous (eg, for an invoke-range) 46 * @param opcode {@code non-null;} opcode 51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources);
|
/dalvik/dx/src/com/android/dx/rop/code/ |
TranslationAdvice.java | 28 * instruction with the given opcode operating on the given arguments, 33 * @param opcode {@code non-null;} the opcode 39 public boolean hasConstantOperation(Rop opcode, 44 * specified opcode to be in order and contiguous (eg, for an invoke-range) 46 * @param opcode {@code non-null;} opcode 51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
TranslationAdvice.java | 28 * instruction with the given opcode operating on the given arguments, 33 * @param opcode {@code non-null;} the opcode 39 public boolean hasConstantOperation(Rop opcode, 44 * specified opcode to be in order and contiguous (eg, for an invoke-range) 46 * @param opcode {@code non-null;} opcode 51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources);
|
/external/javassist/src/main/javassist/bytecode/ |
BadBytecode.java | 22 public BadBytecode(int opcode) { 23 super("bytecode " + opcode);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
Instruction10x.java | 32 import org.jf.dexlib.Code.Opcode; 39 public Instruction10x(Opcode opcode) { 40 super(opcode); 43 public Instruction10x(Opcode opcode, byte[] buffer, int bufferIndex) { 44 super(opcode); 46 assert (buffer[bufferIndex] & 0xFF) == opcode.value; 51 out.writeByte(opcode.value); 60 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
instruction_map.cc | 90 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) { 91 if (second_opcodes_[opcode] != NULL) { 96 delete[] second_opcodes_[opcode][inst_mode]; 98 delete[] second_opcodes_[opcode]; 159 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) { 160 if (code_table_data.inst2[opcode] == VCD_NOOP) 192 opcode); local [all...] |
/external/chromium_org/sdch/open-vcdiff/src/ |
instruction_map.cc | 90 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) { 91 if (second_opcodes_[opcode] != NULL) { 96 delete[] second_opcodes_[opcode][inst_mode]; 98 delete[] second_opcodes_[opcode]; 159 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) { 160 if (code_table_data.inst2[opcode] == VCD_NOOP) 192 opcode); local [all...] |
/external/open-vcdiff/src/ |
instruction_map.cc | 90 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) { 91 if (second_opcodes_[opcode] != NULL) { 96 delete[] second_opcodes_[opcode][inst_mode]; 98 delete[] second_opcodes_[opcode]; 159 for (int opcode = 0; opcode < VCDiffCodeTableData::kCodeTableSize; ++opcode) { 160 if (code_table_data.inst2[opcode] == VCD_NOOP) 192 opcode); local [all...] |
/art/compiler/dex/quick/ |
mir_to_lir-inl.h | 41 inline LIR* Mir2Lir::RawLIR(int dalvik_offset, int opcode, int op0, 45 insn->opcode = opcode; 53 if ((opcode == kPseudoTargetLabel) || (opcode == kPseudoSafepointPC) || 54 (opcode == kPseudoExportedPC)) { 65 inline LIR* Mir2Lir::NewLIR0(int opcode) { 66 DCHECK(is_pseudo_opcode(opcode) || (GetTargetInstFlags(opcode) & NO_OPERAND)) 67 << GetTargetInstName(opcode) << " " << opcode << " 137 int opcode = lir->opcode; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_info.h | 39 /* This enum describes how an opcode calculates its result. */ 41 /** The opcode produces no result. */ 44 /** When this opcode writes to a channel of the destination register, 52 /** This opcode writes the same value to all enabled channels of the 59 /** The operation performed by this opcode is dependent on which channel 82 uint opcode; member in struct:tgsi_opcode_info 86 tgsi_get_opcode_info( uint opcode ); 89 tgsi_get_opcode_name( uint opcode ); 104 tgsi_opcode_infer_src_type( uint opcode ); 107 tgsi_opcode_infer_dst_type( uint opcode ); [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_info.h | 39 /* This enum describes how an opcode calculates its result. */ 41 /** The opcode produces no result. */ 44 /** When this opcode writes to a channel of the destination register, 52 /** This opcode writes the same value to all enabled channels of the 59 /** The operation performed by this opcode is dependent on which channel 82 uint opcode; member in struct:tgsi_opcode_info 86 tgsi_get_opcode_info( uint opcode ); 89 tgsi_get_opcode_name( uint opcode ); 104 tgsi_opcode_infer_src_type( uint opcode ); 107 tgsi_opcode_infer_dst_type( uint opcode ); [all...] |
/external/chromium_org/net/websockets/ |
websocket_frame.h | 25 typedef int OpCode; 40 // Return true if |opcode| is one of the data opcodes known to this 42 static bool IsKnownDataOpCode(OpCode opcode) { 43 return opcode == kOpCodeContinuation || opcode == kOpCodeText || 44 opcode == kOpCodeBinary; 47 // Return true if |opcode| is one of the control opcodes known to this 49 static bool IsKnownControlOpCode(OpCode opcode) { 84 OpCode opcode; member in struct:net::WebSocketFrameHeader [all...] |
/external/chromium_org/sandbox/win/src/ |
policy_engine_opcodes.cc | 44 EvalResult OpcodeEval(PolicyOpcode* opcode, const ParameterSet* pp, 48 // Opcode OpAlwaysFalse: 56 EvalResult OpcodeEval<OP_ALWAYS_FALSE>(PolicyOpcode* opcode, 59 UNREFERENCED_PARAMETER(opcode); 66 // Opcode OpAlwaysTrue: 74 EvalResult OpcodeEval<OP_ALWAYS_TRUE>(PolicyOpcode* opcode, 77 UNREFERENCED_PARAMETER(opcode); 84 // Opcode OpAction: 90 PolicyOpcode* opcode = MakeBase(OP_ACTION, options, 0); local 91 if (NULL == opcode) return NULL 116 PolicyOpcode* opcode = MakeBase(OP_NUMBER_MATCH, options, selected_param); local 126 PolicyOpcode* opcode = MakeBase(OP_NUMBER_MATCH, options, selected_param); local 167 PolicyOpcode* opcode = MakeBase(OP_ULONG_MATCH_RANGE, options, local 199 PolicyOpcode* opcode = MakeBase(OP_ULONG_AND_MATCH, options, selected_param); local 241 PolicyOpcode* opcode = MakeBase(OP_WSTRING_MATCH, options, selected_param); local 360 PolicyOpcode* opcode = new(memory_top_) PolicyOpcode(); local [all...] |
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_CMP_LONG.S | 23 blt .L${opcode}_less @ signed compare on high part 24 bgt .L${opcode}_greater 27 bhi .L${opcode}_greater @ unsigned compare on low part 28 .L${opcode}_less: 31 .L${opcode}_greater:
|