Searched refs:opcode (Results 1 - 25 of 987) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/bytecode/analysis/
H A DUtil.java27 int opcode = iter.byteAt(pos);
28 pos += (opcode == JSR_W || opcode == GOTO_W) ? iter.s32bitAt(pos + 1) : iter.s16bitAt(pos + 1);
32 public static boolean isJumpInstruction(int opcode) { argument
33 return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == JSR_W || opcode
36 isGoto(int opcode) argument
40 isJsr(int opcode) argument
44 isReturn(int opcode) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DIntInsnNode.java51 * @param opcode the opcode of the instruction to be constructed. This
52 * opcode must be BIPUSH, SIPUSH or NEWARRAY.
55 public IntInsnNode(final int opcode, final int operand) { argument
56 super(opcode);
61 * Sets the opcode of this instruction.
63 * @param opcode the new instruction opcode. This opcode must be BIPUSH,
66 public void setOpcode(final int opcode) { argument
[all...]
H A DVarInsnNode.java54 * @param opcode the opcode of the local variable instruction to be
55 * constructed. This opcode must be ILOAD, LLOAD, FLOAD, DLOAD,
60 public VarInsnNode(final int opcode, final int var) { argument
61 super(opcode);
66 * Sets the opcode of this instruction.
68 * @param opcode the new instruction opcode. This opcode must be ILOAD,
72 public void setOpcode(final int opcode) { argument
[all...]
H A DInsnNode.java46 * @param opcode the opcode of the instruction to be constructed. This
47 * opcode must be NOP, ACONST_NULL, ICONST_M1, ICONST_0, ICONST_1,
61 public InsnNode(final int opcode) { argument
62 super(opcode);
75 mv.visitInsn(opcode);
79 return new InsnNode(opcode);
H A DJumpInsnNode.java53 * @param opcode the opcode of the type instruction to be constructed. This
54 * opcode must be IFEQ, IFNE, IFLT, IFGE, IFGT, IFLE, IF_ICMPEQ,
61 public JumpInsnNode(final int opcode, final LabelNode label) { argument
62 super(opcode);
67 * Sets the opcode of this instruction.
69 * @param opcode the new instruction opcode. This opcode must be IFEQ, IFNE,
74 public void setOpcode(final int opcode) { argument
[all...]
H A DTypeInsnNode.java53 * @param opcode the opcode of the type instruction to be constructed. This
54 * opcode must be NEW, ANEWARRAY, CHECKCAST or INSTANCEOF.
58 public TypeInsnNode(final int opcode, final String desc) { argument
59 super(opcode);
64 * Sets the opcode of this instruction.
66 * @param opcode the new instruction opcode. This opcode must be NEW,
69 public void setOpcode(final int opcode) { argument
[all...]
H A DFieldInsnNode.java63 * @param opcode the opcode of the type instruction to be constructed. This
64 * opcode must be GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD.
71 final int opcode,
76 super(opcode);
83 * Sets the opcode of this instruction.
85 * @param opcode the new instruction opcode. This opcode must be GETSTATIC,
88 public void setOpcode(final int opcode) { argument
70 FieldInsnNode( final int opcode, final String owner, final String name, final String desc) argument
[all...]
H A DMethodInsnNode.java63 * @param opcode the opcode of the type instruction to be constructed. This
64 * opcode must be INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or
72 final int opcode,
77 super(opcode);
84 * Sets the opcode of this instruction.
86 * @param opcode the new instruction opcode. This opcode must be
89 public void setOpcode(final int opcode) { argument
71 MethodInsnNode( final int opcode, final String owner, final String name, final String desc) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DInstructionUtil.java37 public static boolean isInvokeStatic(Opcode opcode) { argument
38 return opcode == Opcode.INVOKE_STATIC || opcode == Opcode.INVOKE_STATIC_RANGE;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
H A DDexBackedInstruction.java45 @Nonnull public final Opcode opcode; field in class:DexBackedInstruction
49 @Nonnull Opcode opcode,
52 this.opcode = opcode;
56 @Nonnull public Opcode getOpcode() { return opcode; }
57 @Override public int getCodeUnits() { return opcode.format.size / 2; }
67 Opcode opcode = reader.dexBuf.getOpcodes().getOpcodeByValue(opcodeValue);
69 Instruction instruction = buildInstruction(reader.dexBuf, opcode, reader.getOffset());
74 private static DexBackedInstruction buildInstruction(@Nonnull DexBackedDexFile dexFile, @Nullable Opcode opcode, argument
76 if (opcode
48 DexBackedInstruction(@onnull DexBackedDexFile dexFile, @Nonnull Opcode opcode, int instructionStart) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DFillArrayDataPayloadDecodedInstruction.java39 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, dat
38 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, Object data, int size, int elementWidth) argument
50 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, byte[] data) argument
58 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, short[] data) argument
66 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, int[] data) argument
74 FillArrayDataPayloadDecodedInstruction(InstructionCodec format, int opcode, long[] data) argument
[all...]
/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h183 ConditionPassed (const uint32_t opcode,
184 bool *is_conditional = NULL); // Filled in with true if the opcode is a conditional opcode
185 // Filled in with false if the opcode is always executed
188 CurrentCond (const uint32_t opcode);
362 bool (EmulateInstructionARM::*callback) (const uint32_t opcode, const EmulateInstructionARM::ARMEncoding encoding);
373 GetARMOpcodeForInstruction (const uint32_t opcode, uint32_t isa_mask);
376 GetThumbOpcodeForInstruction (const uint32_t opcode, uint32_t isa_mask);
380 EmulatePUSH (const uint32_t opcode, const ARMEncoding encoding);
384 EmulatePOP (const uint32_t opcode, cons
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DBranchInstruction.java44 public BranchInstruction(byte opcode, int branchOffset) argument
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
[all...]
H A DSwitchInstruction.java44 public SwitchInstruction(byte opcode, argument
48 this.opcode = opcode;
61 this.opcode = switchInstruction.opcode;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
H A DImmutableInstructionFactory.java49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode, argument
51 return new ImmutableInstruction10t(opcode, codeOffset);
54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) { argument
55 return new ImmutableInstruction10x(opcode);
58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode, argument
61 return new ImmutableInstruction11n(opcode, registerA, literal);
64 public ImmutableInstruction11x makeInstruction11x(@Nonnull Opcode opcode, argument
66 return new ImmutableInstruction11x(opcode, registerA);
69 public ImmutableInstruction12x makeInstruction12x(@Nonnull Opcode opcode, argument
72 return new ImmutableInstruction12x(opcode, register
75 makeInstruction20bc(@onnull Opcode opcode, int verificationError, @Nonnull Reference reference) argument
81 makeInstruction20t(@onnull Opcode opcode, int codeOffset) argument
86 makeInstruction21c(@onnull Opcode opcode, int registerA, @Nonnull Reference reference) argument
92 makeInstruction21ih(@onnull Opcode opcode, int registerA, int literal) argument
98 makeInstruction21lh(@onnull Opcode opcode, int registerA, long literal) argument
104 makeInstruction21s(@onnull Opcode opcode, int registerA, int literal) argument
110 makeInstruction21t(@onnull Opcode opcode, int registerA, int codeOffset) argument
116 makeInstruction22b(@onnull Opcode opcode, int registerA, int registerB, int literal) argument
123 makeInstruction22c(@onnull Opcode opcode, int registerA, int registerB, @Nonnull Reference reference) argument
130 makeInstruction22s(@onnull Opcode opcode, int registerA, int registerB, int literal) argument
137 makeInstruction22t(@onnull Opcode opcode, int registerA, int registerB, int codeOffset) argument
144 makeInstruction22x(@onnull Opcode opcode, int registerA, int registerB) argument
150 makeInstruction23x(@onnull Opcode opcode, int registerA, int registerB, int registerC) argument
157 makeInstruction30t(@onnull Opcode opcode, int codeOffset) argument
162 makeInstruction31c(@onnull Opcode opcode, int registerA, @Nonnull Reference reference) argument
168 makeInstruction31i(@onnull Opcode opcode, int registerA, int literal) argument
174 makeInstruction31t(@onnull Opcode opcode, int registerA, int codeOffset) argument
180 makeInstruction32x(@onnull Opcode opcode, int registerA, int registerB) argument
186 makeInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Reference reference) argument
198 makeInstruction3rc(@onnull Opcode opcode, int startRegister, int registerCount, @Nonnull Reference reference) argument
205 makeInstruction51l(@onnull Opcode opcode, int registerA, long literal) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DTranslationAdvice.java28 * instruction with the given opcode operating on the given arguments,
33 * @param opcode {@code non-null;} the opcode
39 public boolean hasConstantOperation(Rop opcode, argument
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); argument
/external/javassist/src/main/javassist/bytecode/
H A DBadBytecode.java22 public BadBytecode(int opcode) { argument
23 super("bytecode " + opcode);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DOpcodes.java47 for (Opcode opcode: Opcode.values()) {
48 if (!opcode.format.isPayloadFormat) {
49 if (api <= opcode.getMaxApi() && api >= opcode.getMinApi()) {
50 opcodesByValue[opcode.value] = opcode;
51 opcodesByName.put(opcode.name.toLowerCase(), opcode);
/external/chromium_org/sdch/open-vcdiff/src/
H A Dinstruction_map.cc90 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]
192 opcode); local
[all...]
H A Ddecodetable.cc59 unsigned char opcode = 0; local
66 // from the most recently processed opcode.
67 opcode = static_cast<unsigned char>(pending_second_instruction_);
69 instruction_type = code_table_data_->inst2[opcode];
70 instruction_size = code_table_data_->size2[opcode];
71 instruction_mode = code_table_data_->mode2[opcode];
78 opcode = **instructions_and_sizes_;
79 if (code_table_data_->inst2[opcode] != VCD_NOOP) {
80 // This opcode contains two instructions; process the first one now, and
86 instruction_type = code_table_data_->inst1[opcode];
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_info.h39 /* 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/
H A Dtgsi_info.h39 /* 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/sandbox/win/src/
H A Dpolicy_engine_opcodes.cc44 EvalResult OpcodeEval(PolicyOpcode* opcode, const ParameterSet* pp,
56 EvalResult OpcodeEval<OP_ALWAYS_FALSE>(PolicyOpcode* opcode, argument
59 UNREFERENCED_PARAMETER(opcode);
74 EvalResult OpcodeEval<OP_ALWAYS_TRUE>(PolicyOpcode* opcode, argument
77 UNREFERENCED_PARAMETER(opcode);
90 PolicyOpcode* opcode = MakeBase(OP_ACTION, options, 0); local
91 if (NULL == opcode) return NULL;
92 opcode->SetArgument(0, action);
93 return opcode;
97 EvalResult OpcodeEval<OP_ACTION>(PolicyOpcode* opcode, argument
116 PolicyOpcode* opcode = MakeBase(OP_NUMBER_MATCH, options, selected_param); local
126 PolicyOpcode* opcode = MakeBase(OP_NUMBER_MATCH, options, selected_param); local
134 OpcodeEval(PolicyOpcode* opcode, const ParameterSet* param, MatchContext* context) argument
167 PolicyOpcode* opcode = MakeBase(OP_ULONG_MATCH_RANGE, options, local
176 OpcodeEval(PolicyOpcode* opcode, const ParameterSet* param, MatchContext* context) argument
199 PolicyOpcode* opcode = MakeBase(OP_ULONG_AND_MATCH, options, selected_param); local
206 OpcodeEval(PolicyOpcode* opcode, const ParameterSet* param, MatchContext* context) argument
241 PolicyOpcode* opcode = MakeBase(OP_WSTRING_MATCH, options, selected_param); local
257 OpcodeEval(PolicyOpcode* opcode, const ParameterSet* param, MatchContext* context) argument
360 PolicyOpcode* opcode = new(memory_top_) PolicyOpcode(); local
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DInstructionFactory.java45 Instruction makeInstruction10t(@Nonnull Opcode opcode, int codeOffset); argument
46 Instruction makeInstruction10x(@Nonnull Opcode opcode); argument
47 Instruction makeInstruction11n(@Nonnull Opcode opcode, int registerA, int literal); argument
48 Instruction makeInstruction11x(@Nonnull Opcode opcode, int registerA); argument
49 Instruction makeInstruction12x(@Nonnull Opcode opcode, int registerA, int registerB); argument
50 Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref reference); argument
51 Instruction makeInstruction20t(@Nonnull Opcode opcode, int codeOffset); argument
52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); argument
53 Instruction makeInstruction21ih(@Nonnull Opcode opcode, int registerA, int literal); argument
54 Instruction makeInstruction21lh(@Nonnull Opcode opcode, in argument
55 makeInstruction21s(@onnull Opcode opcode, int registerA, int literal) argument
56 makeInstruction21t(@onnull Opcode opcode, int registerA, int codeOffset) argument
57 makeInstruction22b(@onnull Opcode opcode, int registerA, int registerB, int literal) argument
58 makeInstruction22c(@onnull Opcode opcode, int registerA, int registerB, @Nonnull Ref reference) argument
59 makeInstruction22s(@onnull Opcode opcode, int registerA, int registerB, int literal) argument
60 makeInstruction22t(@onnull Opcode opcode, int registerA, int registerB, int codeOffset) argument
61 makeInstruction22x(@onnull Opcode opcode, int registerA, int registerB) argument
62 makeInstruction23x(@onnull Opcode opcode, int registerA, int registerB, int registerC) argument
63 makeInstruction30t(@onnull Opcode opcode, int codeOffset) argument
64 makeInstruction31c(@onnull Opcode opcode, int registerA, @Nonnull Ref reference) argument
65 makeInstruction31i(@onnull Opcode opcode, int registerA, int literal) argument
66 makeInstruction31t(@onnull Opcode opcode, int registerA, int codeOffset) argument
67 makeInstruction32x(@onnull Opcode opcode, int registerA, int registerB) argument
68 makeInstruction35c(@onnull Opcode opcode, int registerCount, int registerC, int registerD, int registerE, int registerF, int registerG, @Nonnull Ref reference) argument
70 makeInstruction3rc(@onnull Opcode opcode, int startRegister, int registerCount, @Nonnull Ref reference) argument
72 makeInstruction51l(@onnull Opcode opcode, int registerA, long literal) argument
[all...]
/external/chromium_org/v8/src/compiler/
H A Doperator-properties-inl.h22 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode()); local
23 return IrOpcode::IsJsOpcode(opcode);
39 switch (op->opcode()) {
100 if (op->opcode() == IrOpcode::kEffectPhi ||
101 op->opcode() == IrOpcode::kFinish) {
110 switch (op->opcode()) {
145 return op->opcode() == IrOpcode::kStart ||
146 op->opcode() == IrOpcode::kControlEffect ||
147 op->opcode()
152 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode()); local
172 uint8_t opcode = op->opcode(); local
[all...]

Completed in 9653 milliseconds

1234567891011>>