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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /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...]
  /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/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...]
decodetable.cc 59 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/
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...]
  /art/compiler/dex/quick/
mir_to_lir-inl.h 44 inline LIR* Mir2Lir::RawLIR(DexOffset dalvik_offset, int opcode, int op0,
48 insn->opcode = opcode;
56 if ((opcode == kPseudoTargetLabel) || (opcode == kPseudoSafepointPC) ||
57 (opcode == kPseudoExportedPC)) {
69 inline LIR* Mir2Lir::NewLIR0(int opcode) {
70 DCHECK(IsPseudoLirOp(opcode) || (GetTargetInstFlags(opcode) & NO_OPERAND))
71 << GetTargetInstName(opcode) << " " << opcode << "
162 int opcode = lir->opcode; local
    [all...]
  /dalvik/libdex/
InstrUtils.h 29 * See the file opcode-gen/README.txt for information about updating
33 kFmt00x = 0, // unknown format (also used for "breakpoint" opcode)
84 * Instruction width implied by an opcode's format; a value in the
92 * Opcode control flow flags, used by the verifier and JIT.
105 * Struct that includes a pointer to each of the opcode information
135 Opcode opcode; member in struct:DecodedInstruction
140 * Return the instruction width of the specified opcode, or 0 if not defined.
142 DEX_INLINE size_t dexGetWidthFromOpcode(Opcode opcode)
    [all...]
  /external/chromium_org/v8/src/compiler/
operator-properties-inl.h 22 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() == IrOpcode::kValueEffect |
152 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode()); local
172 uint8_t opcode = op->opcode(); local
    [all...]
  /art/disassembler/
disassembler_x86.cc 60 // 64-bit opcode REX modifier.
202 std::ostringstream opcode; local
205 bool byte_operand = false; // true when the opcode is dealing with byte operands
210 bool reg_in_opcode = false; // low 3-bits of opcode encode register parameter
219 case rm8_r8: opcode << #opname; store = true; has_modrm = true; byte_operand = true; break; \
220 case rm32_r32: opcode << #opname; store = true; has_modrm = true; break; \
221 case r8_rm8: opcode << #opname; load = true; has_modrm = true; byte_operand = true; break; \
222 case r32_rm32: opcode << #opname; load = true; has_modrm = true; break; \
223 case ax8_i8: opcode << #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \
224 case ax32_i32: opcode << #opname; ax = true; immediate_bytes = 4; break
    [all...]

Completed in 953 milliseconds

1 2 3 4 5 6 7 8 91011>>