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

12 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
InstructionFactory.java 35 import org.jf.dexlib2.Opcode;
45 Instruction makeInstruction10t(@Nonnull Opcode opcode, int codeOffset);
46 Instruction makeInstruction10x(@Nonnull Opcode opcode);
47 Instruction makeInstruction11n(@Nonnull Opcode opcode, int registerA, int literal);
48 Instruction makeInstruction11x(@Nonnull Opcode opcode, int registerA);
49 Instruction makeInstruction12x(@Nonnull Opcode opcode, int registerA, int registerB)
    [all...]
  /art/compiler/dex/quick/
mir_to_lir-inl.h 46 inline LIR* Mir2Lir::RawLIR(DexOffset dalvik_offset, int opcode, int op0,
50 insn->opcode = opcode;
58 if ((opcode == kPseudoTargetLabel) || (opcode == kPseudoSafepointPC) ||
59 (opcode == kPseudoExportedPC)) {
71 inline LIR* Mir2Lir::NewLIR0(int opcode) {
72 DCHECK(IsPseudoLirOp(opcode) || (GetTargetInstFlags(opcode) & NO_OPERAND))
73 << GetTargetInstName(opcode) << " " << opcode << "
166 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/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/runtime/
dex_instruction_utils.h 52 constexpr bool IsInstructionReturn(Instruction::Code opcode) {
53 return Instruction::RETURN_VOID <= opcode && opcode <= Instruction::RETURN_OBJECT;
56 constexpr bool IsInstructionInvoke(Instruction::Code opcode) {
57 return Instruction::INVOKE_VIRTUAL <= opcode && opcode <= Instruction::INVOKE_INTERFACE_RANGE &&
58 opcode != Instruction::RETURN_VOID_NO_BARRIER;
61 constexpr bool IsInstructionQuickInvoke(Instruction::Code opcode) {
62 return opcode == Instruction::INVOKE_VIRTUAL_QUICK ||
63 opcode == Instruction::INVOKE_VIRTUAL_RANGE_QUICK
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
VariableInstruction.java 52 public VariableInstruction(byte opcode)
54 this(opcode, embeddedVariable(opcode), 0);
58 public VariableInstruction(byte opcode,
61 this(opcode, variableIndex, 0);
65 public VariableInstruction(byte opcode,
69 this.opcode = opcode;
84 this.opcode = variableInstruction.opcode;
    [all...]
SimpleInstruction.java 45 * Creates a new SimpleInstruction with the given opcode.
47 public SimpleInstruction(byte opcode)
49 this(opcode, embeddedConstant(opcode));
54 * Creates a new SimpleInstruction with the given opcode and constant.
56 public SimpleInstruction(byte opcode, int constant)
58 this.opcode = opcode;
70 this.opcode = simpleInstruction.opcode;
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
BuilderInstruction.java 35 import org.jf.dexlib2.Opcode;
43 @Nonnull protected final Opcode opcode; field in class:BuilderInstruction
47 protected BuilderInstruction(@Nonnull Opcode opcode) {
48 Preconditions.checkFormat(opcode, getFormat());
49 this.opcode = opcode;
52 @Nonnull public Opcode getOpcode() {
53 return opcode;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SimpleInsn.java 31 * @param opcode the opcode; one of the constants from {@link Dops}
37 public SimpleInsn(Dop opcode, SourcePosition position,
39 super(opcode, position, registers);
44 public DalvInsn withOpcode(Dop opcode) {
45 return new SimpleInsn(opcode, getPosition(), getRegisters());
Dop.java 20 * Representation of an opcode.
23 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode value itself */
24 private final int opcode; field in class:Dop
26 /** DalvOps.MIN_VALUE..DalvOps.MAX_VALUE; the opcode family */
32 /** whether this opcode uses a result register */
41 * @param opcode {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode
43 * @param family {@code DalvOps.MIN_VALUE..DalvOps.MAX_VALUE;} the opcode family
45 * @param hasResult whether the opcode has a result register; if so it
49 public Dop(int opcode, int family, InsnFormat format
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
SimpleInsn.java 31 * @param opcode the opcode; one of the constants from {@link Dops}
37 public SimpleInsn(Dop opcode, SourcePosition position,
39 super(opcode, position, registers);
44 public DalvInsn withOpcode(Dop opcode) {
45 return new SimpleInsn(opcode, getPosition(), getRegisters());
Dop.java 23 * Representation of an opcode.
26 /** {@code Opcodes.isValid();} the opcode value itself */
27 private final int opcode; field in class:Dop
29 /** {@code Opcodes.isValid();} the opcode family */
33 * {@code Opcodes.isValid();} what opcode (by number) to try next
34 * when attempting to match an opcode to particular arguments;
36 * opcode to try in a particular chain
43 /** whether this opcode uses a result register */
49 * @param opcode {@code Opcodes.isValid();} the opcode valu
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SimpleInsn.java 31 * @param opcode the opcode; one of the constants from {@link Dops}
37 public SimpleInsn(Dop opcode, SourcePosition position,
39 super(opcode, position, registers);
44 public DalvInsn withOpcode(Dop opcode) {
45 return new SimpleInsn(opcode, getPosition(), getRegisters());
Dop.java 23 * Representation of an opcode.
26 /** {@code Opcodes.isValid();} the opcode value itself */
27 private final int opcode; field in class:Dop
29 /** {@code Opcodes.isValid();} the opcode family */
33 * {@code Opcodes.isValid();} what opcode (by number) to try next
34 * when attempting to match an opcode to particular arguments;
36 * opcode to try in a particular chain
43 /** whether this opcode uses a result register */
49 * @param opcode {@code Opcodes.isValid();} the opcode valu
    [all...]
  /external/elfutils/src/libdw/
dwarf_macro_opcode.c 1 /* Return macro opcode.
43 *opcodep = macro->opcode;
  /external/emma/core/java12/com/vladium/jcd/opcodes/
IOpcodeVisitor.java 20 void visit (int opcode, boolean wide, int offset, Object ctx);
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocket.java 96 * @param opcode
102 boolean onFrame(byte flags,byte opcode,byte[] data, int offset, int length);
179 * @return The opcode of a binary message
184 * @return The opcode of a text message
189 * @return The opcode of a continuation frame
210 * @param opcode
211 * @return True if the opcode is for a control frame
213 boolean isControl(byte opcode);
216 * @param opcode
217 * @return True if the opcode is for a text fram
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedUnknownInstruction.java 34 import org.jf.dexlib2.Opcode;
43 super(dexFile, Opcode.NOP, instructionStart);
47 int opcode = dexFile.readUbyte(instructionStart); local
48 if (opcode == 0) {
49 opcode = dexFile.readUshort(instructionStart);
52 return opcode;
  /art/compiler/dex/quick/x86/
utility_x86.cc 34 int opcode; local
39 opcode = kX86MovsdRR;
43 opcode = kX86MovssRR;
45 opcode = kX86MovdxrRR;
49 opcode = kX86MovdrxRR;
52 DCHECK_NE((EncodingMap[opcode].flags & IS_BINARY_OP), 0ULL);
53 LIR* res = RawLIR(current_dalvik_offset_, opcode, r_dest.GetReg(), r_src.GetReg());
127 X86OpCode opcode = kX86Bkpt; local
129 case kOpNeg: opcode = r_dest_src.Is64Bit() ? kX86Neg64R : kX86Neg32R; break;
130 case kOpNot: opcode = r_dest_src.Is64Bit() ? kX86Not64R : kX86Not32R; break
140 X86OpCode opcode = kX86Bkpt; local
203 X86OpCode opcode = kX86Nop; local
259 X86OpCode opcode = kX86Nop; local
313 X86OpCode opcode = kX86Nop; local
372 X86OpCode opcode = kX86Nop; local
402 X86OpCode opcode = kX86Nop; local
430 X86OpCode opcode = kX86Nop; local
506 X86OpCode opcode = IS_SIMM8(value) ? kX86Imul32RRI8 : kX86Imul32RRI; local
532 X86OpCode opcode = kX86Bkpt; local
545 X86OpCode opcode = kX86Bkpt; local
557 X86OpCode opcode = kX86Bkpt; local
650 X86OpCode opcode = kX86Nop; local
801 X86OpCode opcode = kX86Nop; local
963 int opcode = mir->dalvikInsn.opcode; local
    [all...]
  /external/tcpdump/
print-zephyr.c 51 char *opcode; member in struct:z_packet
148 z.opcode = 0;
178 PARSE_FIELD_STR(z.opcode);
208 if (!strcmp(z.opcode, "USER_HIDE"))
210 else if (!strcmp(z.opcode, "USER_UNHIDE"))
218 printf(" zephyr-admin %s", str_to_lower(z.opcode));
224 if (!strcmp(z.opcode, "SUBSCRIBE") ||
225 !strcmp(z.opcode, "SUBSCRIBE_NODEFS") ||
226 !strcmp(z.opcode, "UNSUBSCRIBE")) {
228 printf(" %ssub%s", strcmp(z.opcode, "SUBSCRIBE") ? "un" : ""
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ConservativeTranslationAdvice.java 37 public boolean hasConstantOperation(Rop opcode,
43 public boolean requiresSourcesInOrder(Rop opcode,
  /dalvik/dx/src/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 38 int opcode, int firstKey, int[] targets) {
39 super(format, opcode, 0, null, 0, 0L);
  /dalvik/dx/src/com/android/dx/rop/code/
ConservativeTranslationAdvice.java 37 public boolean hasConstantOperation(Rop opcode,
43 public boolean requiresSourcesInOrder(Rop opcode,
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 38 int opcode, int firstKey, int[] targets) {
39 super(format, opcode, 0, null, 0, 0L);
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
ConservativeTranslationAdvice.java 37 public boolean hasConstantOperation(Rop opcode,
43 public boolean requiresSourcesInOrder(Rop opcode,

Completed in 3443 milliseconds

12 3 4 5 6 7 8 91011>>