HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 1 - 25 of 1460) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
builtins-arm-msvc-compat-error.c 3 void emit_error(unsigned int opcode) {
4 __emit(opcode); // expected-error {{argument to '__emit' must be a constant integer}}
  /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/mockito/cglib-and-asm/src/org/mockito/asm/tree/
IntInsnNode.java 51 * @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) {
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) {
    [all...]
VarInsnNode.java 54 * @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) {
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) {
    [all...]
InsnNode.java 46 * @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) {
62 super(opcode);
75 mv.visitInsn(opcode);
79 return new InsnNode(opcode);
JumpInsnNode.java 53 * @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) {
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) {
    [all...]
TypeInsnNode.java 53 * @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) {
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) {
    [all...]
FieldInsnNode.java 63 * @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) {
    [all...]
MethodInsnNode.java 63 * @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) {
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
InstructionUtil.java 34 import org.jf.dexlib2.Opcode;
37 public static boolean isInvokeStatic(Opcode opcode) {
38 return opcode == Opcode.INVOKE_STATIC || opcode == Opcode.INVOKE_STATIC_RANGE;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction.java 34 import org.jf.dexlib2.Opcode;
45 @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); local
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
OpcodeInfo.java 27 public final Opcode opcode; field in class:OpcodeInfo
35 public OpcodeInfo(Opcode opcode, String name, int opcodeValue, AbstractFormat fmt) {
36 this.opcode = opcode;
  /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...]
  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.h 164 SetInstruction (const Opcode &insn_opcode, const Address &inst_addr, Target *target);
183 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)
    [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;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstructionFactory.java 34 import org.jf.dexlib2.Opcode;
49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode,
51 return new ImmutableInstruction10t(opcode, codeOffset);
54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) {
55 return new ImmutableInstruction10x(opcode);
58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode,
61 return new ImmutableInstruction11n(opcode, registerA, literal)
    [all...]
  /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/dexlib2/src/main/java/org/jf/dexlib2/
Opcodes.java 40 private final Opcode[] opcodesByValue;
41 private final HashMap<String, Opcode> opcodesByName;
44 opcodesByValue = new Opcode[256];
47 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); local
    [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...]
  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
ValuePrinter.java 25 import dexfuzz.rawdex.Opcode;
156 valueCopyInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_OBJECT_16);
158 valueCopyInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_WIDE_16);
160 valueCopyInsn.insn.info = Instruction.getOpcodeInfo(Opcode.MOVE_16);
167 streamLoadInsn.insn.info = Instruction.getOpcodeInfo(Opcode.SGET_OBJECT);
173 invokeInsn.insn.info = Instruction.getOpcodeInfo(Opcode.INVOKE_VIRTUAL_RANGE);
216 Opcode opcode = mInsn.insn.info.opcode; local
217 if (opcode == Opcode.CONST_STRING || opcode == Opcode.CONST_STRING_JUMBO)
    [all...]

Completed in 764 milliseconds

1 2 3 4 5 6 7 8 91011>>