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

1 2 34 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction10x.java 34 import org.jf.dexlib2.Opcode;
42 @Nonnull Opcode opcode,
44 super(dexFile, opcode, instructionStart);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
TargetInsn.java 34 * @param opcode the opcode; one of the constants from {@link Dops}
41 public TargetInsn(Dop opcode, SourcePosition position,
43 super(opcode, position, registers);
54 public DalvInsn withOpcode(Dop opcode) {
55 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
66 * opcode has the opposite sense (as a test; e.g. a
75 Dop opcode = getOpcode().getOppositeTest(); local
77 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
  /dalvik/dx/src/com/android/dx/dex/code/
TargetInsn.java 34 * @param opcode the opcode; one of the constants from {@link Dops}
41 public TargetInsn(Dop opcode, SourcePosition position,
43 super(opcode, position, registers);
54 public DalvInsn withOpcode(Dop opcode) {
55 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
66 * opcode has the opposite sense (as a test; e.g. a
75 Dop opcode = getOpcode().getOppositeTest(); local
77 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
TargetInsn.java 34 * @param opcode the opcode; one of the constants from {@link Dops}
41 public TargetInsn(Dop opcode, SourcePosition position,
43 super(opcode, position, registers);
54 public DalvInsn withOpcode(Dop opcode) {
55 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
66 * opcode has the opposite sense (as a test; e.g. a
75 Dop opcode = getOpcode().getOppositeTest(); local
77 return new TargetInsn(opcode, getPosition(), getRegisters(), target);
  /external/mesa3d/src/gallium/docs/source/exts/
formatting.py 20 opcode, desc = sig.split("-", 1)
21 opcode = opcode.strip().upper()
23 signode += sphinx.addnodes.desc_name(opcode, opcode)
25 return opcode
30 app.add_description_unit("opcode", "opcode", "%s (TGSI opcode)",
  /external/proguard/src/proguard/optimize/peephole/
GotoGotoReplacer.java 78 byte opcode = branchInstruction.opcode;
79 if (opcode == InstructionConstants.OP_GOTO ||
80 opcode == InstructionConstants.OP_GOTO_W)
95 if (targetInstruction.opcode == InstructionConstants.OP_GOTO)
101 new BranchInstruction(opcode,
GotoReturnReplacer.java 78 byte opcode = branchInstruction.opcode;
79 if (opcode == InstructionConstants.OP_GOTO ||
80 opcode == InstructionConstants.OP_GOTO_W)
90 switch (targetInstruction.opcode)
100 new SimpleInstruction(targetInstruction.opcode);
ReachableCodeMarker.java 117 byte opcode = simpleInstruction.opcode;
118 if (opcode == InstructionConstants.OP_IRETURN ||
119 opcode == InstructionConstants.OP_LRETURN ||
120 opcode == InstructionConstants.OP_FRETURN ||
121 opcode == InstructionConstants.OP_DRETURN ||
122 opcode == InstructionConstants.OP_ARETURN ||
123 opcode == InstructionConstants.OP_RETURN ||
124 opcode == InstructionConstants.OP_ATHROW)
138 if (variableInstruction.opcode == InstructionConstants.OP_RET
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
CodeItem.java 149 Opcode opcode = insn.info.opcode; local
152 if (opcode == Opcode.CONST_STRING || opcode == Opcode.CONST_STRING_JUMBO) {
160 if (opcode == Opcode.CONST_CLASS
161 || opcode == Opcode.CHECK_CAS
    [all...]
  /art/compiler/dex/quick/arm64/
utility_arm64.cc 93 bool opcode_is_wide = IS_WIDE(lir->opcode);
94 A64Opcode opcode = UNWIDE(lir->opcode); local
95 DCHECK(!IsPseudoLirOp(opcode));
96 const A64EncodingMap *encoder = &EncodingMap[opcode];
103 uint64_t check_flags = GetTargetInstFlags(lir->opcode);
336 bool Arm64Mir2Lir::InexpensiveConstantInt(int32_t value, Instruction::Code opcode) {
337 switch (opcode) {
420 A64Opcode opcode = LIKELY(low_bits == 0) ? kA64Mov2rr : kA64Mvn2rr; local
421 res = NewLIR2(opcode, r_dest.GetReg(), rwzr)
471 A64Opcode opcode = LIKELY(value == 0) ? WIDE(kA64Mov2rr) : WIDE(kA64Mvn2rr); local
553 A64Opcode opcode = kA64Brk1d; local
567 A64Opcode opcode = kA64Brk1d; local
633 A64Opcode opcode = kA64Brk1d; local
697 A64Opcode opcode = kA64Brk1d; local
765 A64Opcode opcode = kA64Brk1d; local
813 A64Opcode opcode = kA64Brk1d; local
941 A64Opcode opcode = kA64Brk1d; local
1028 A64Opcode opcode = kA64Brk1d; local
1113 A64Opcode opcode = kA64Brk1d; local
1194 A64Opcode opcode = kA64Brk1d; local
1290 A64Opcode opcode = kA64Brk1d; local
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
PlainInsn.java 35 * @param opcode {@code non-null;} the opcode
40 public PlainInsn(Rop opcode, SourcePosition position,
42 super(opcode, position, result, sources);
44 switch (opcode.getBranchingness()) {
51 if (result != null && opcode.getBranchingness() != Rop.BRANCH_NONE) {
61 * @param opcode {@code non-null;} the opcode
66 public PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result,
68 this(opcode, position, result, RegisterSpecList.make(source))
130 int opcode = getOpcode().getOpcode(); local
    [all...]
RegOps.java 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r}
43 * <b>Note:</b> This opcode should only ever be used in the
284 * <b>Note:</b> This opcode should only ever be used in the
291 * <b>Note:</b> This opcode should only ever be used in the
307 * Gets the name of the given opcode.
309 * @param opcode the opcode
312 public static String opName(int opcode) {
313 switch (opcode) {
372 return "unknown-" + Hex.u1(opcode);
    [all...]
Rop.java 52 /** the opcode; one of the constants in {@link RegOps} */
53 private final int opcode; field in class:Rop
83 * @param opcode the opcode; one of the constants in {@link RegOps}
94 public Rop(int opcode, Type result, TypeList sources,
118 this.opcode = opcode;
131 * @param opcode the opcode; one of the constants in {@link RegOps}
141 public Rop(int opcode, Type result, TypeList sources
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
PlainInsn.java 35 * @param opcode {@code non-null;} the opcode
40 public PlainInsn(Rop opcode, SourcePosition position,
42 super(opcode, position, result, sources);
44 switch (opcode.getBranchingness()) {
51 if (result != null && opcode.getBranchingness() != Rop.BRANCH_NONE) {
61 * @param opcode {@code non-null;} the opcode
66 public PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result,
68 this(opcode, position, result, RegisterSpecList.make(source))
130 int opcode = getOpcode().getOpcode(); local
    [all...]
RegOps.java 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r}
43 * <b>Note:</b> This opcode should only ever be used in the
284 * <b>Note:</b> This opcode should only ever be used in the
291 * <b>Note:</b> This opcode should only ever be used in the
307 * Gets the name of the given opcode.
309 * @param opcode the opcode
312 public static String opName(int opcode) {
313 switch (opcode) {
372 return "unknown-" + Hex.u1(opcode);
    [all...]
Rop.java 52 /** the opcode; one of the constants in {@link RegOps} */
53 private final int opcode; field in class:Rop
83 * @param opcode the opcode; one of the constants in {@link RegOps}
94 public Rop(int opcode, Type result, TypeList sources,
118 this.opcode = opcode;
131 * @param opcode the opcode; one of the constants in {@link RegOps}
141 public Rop(int opcode, Type result, TypeList sources
    [all...]
  /art/compiler/dex/quick/arm/
utility_arm.cc 138 bool ArmMir2Lir::InexpensiveConstantInt(int32_t value, Instruction::Code opcode) {
139 switch (opcode) {
271 ArmOpcode opcode = kThumbBkpt; local
274 opcode = kThumbBlxR;
277 opcode = kThumbBx;
280 LOG(FATAL) << "Bad opcode " << op;
282 return NewLIR1(opcode, r_dest_src.GetReg());
289 ArmOpcode opcode = kThumbBkpt; local
292 opcode = (thumb_form) ? kThumbAdcRR : kThumb2AdcRRR;
295 opcode = (thumb_form) ? kThumbAndRR : kThumb2AndRRR
442 ArmOpcode opcode = kThumbBkpt; local
516 ArmOpcode opcode = kThumbBkpt; local
660 ArmOpcode opcode = kThumbBkpt; local
752 ArmOpcode opcode = kThumbBkpt; local
818 ArmOpcode opcode = kThumbBkpt; local
1227 int opcode; local
    [all...]
  /external/javassist/src/main/javassist/expr/
NewArray.java 30 int opcode; field in class:NewArray
35 opcode = op;
80 if (opcode == Opcode.NEWARRAY) {
84 else if (opcode == Opcode.ANEWARRAY
85 || opcode == Opcode.MULTIANEWARRAY) {
93 throw new RuntimeException("bad opcode: " + opcode);
242 int opcode; field in class:NewArray.ProceedForArray
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_debug_fp.c 258 unsigned opcode, const unsigned * program)
260 if (opcode != A0_NOP) {
268 PRINTF(stream, "%s ", opcodes[opcode]);
271 if (args[opcode] == 1) {
278 if (args[opcode] == 2) {
292 unsigned opcode, const unsigned * program)
297 PRINTF(stream, "%s ", opcodes[opcode]);
310 unsigned opcode, const unsigned * program)
323 unsigned opcode, const unsigned * program)
325 PRINTF(stream, "%s ", opcodes[opcode]);
344 unsigned opcode = program[0] & (0x1f << 24); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RegOps.java 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r}
43 * <b>Note:</b> This opcode should only ever be used in the
284 * <b>Note:</b> This opcode should only ever be used in the
291 * <b>Note:</b> This opcode should only ever be used in the
307 * Gets the name of the given opcode.
309 * @param opcode {@code >= 0, <= 255;} the opcode
312 public static String opName(int opcode) {
313 switch (opcode) {
372 return "unknown-" + Hex.u1(opcode);
    [all...]
Rop.java 52 /** the opcode; one of the constants in {@link RegOps} */
53 private final int opcode; field in class:Rop
83 * @param opcode the opcode; one of the constants in {@link RegOps}
94 public Rop(int opcode, Type result, TypeList sources,
118 this.opcode = opcode;
131 * @param opcode the opcode; one of the constants in {@link RegOps}
141 public Rop(int opcode, Type result, TypeList sources
    [all...]
  /external/tcpdump/
print-tftp.c 80 register int opcode, i; local
90 opcode = EXTRACT_16BITS(&tp->th_opcode);
91 cp = tok2str(op2str, "tftp-#%d", opcode);
93 /* Bail if bogus opcode */
97 switch (opcode) {
105 if (opcode != OACK)
108 if (opcode != OACK)
146 printf("(unknown #%d)", opcode);
  /system/bt/hci/test/
low_power_manager_test.cpp 50 STUB_FUNCTION(int, vendor_send_command, (vendor_opcode_t opcode, void *param))
52 EXPECT_EQ(VENDOR_GET_LPM_IDLE_TIMEOUT, opcode);
61 STUB_FUNCTION(int, vendor_send_async_command, (vendor_async_opcode_t opcode, void *param))
64 EXPECT_EQ(VENDOR_SET_LPM_MODE, opcode);
71 EXPECT_EQ(VENDOR_SET_LPM_MODE, opcode);
83 STUB_FUNCTION(void, vendor_set_callback, (vendor_async_opcode_t opcode, vendor_cb callback))
85 EXPECT_EQ(VENDOR_SET_LPM_MODE, opcode);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
MethodVisitorTee.java 61 public void visitInsn(int opcode) {
62 mv1.visitInsn(opcode);
63 mv2.visitInsn(opcode);
66 public void visitIntInsn(int opcode, int operand) {
67 mv1.visitIntInsn(opcode, operand);
68 mv2.visitIntInsn(opcode, operand);
71 public void visitVarInsn(int opcode, int var) {
72 mv1.visitVarInsn(opcode, var);
73 mv2.visitVarInsn(opcode, var);
76 public void visitTypeInsn(int opcode, String desc)
    [all...]
  /external/boringssl/src/crypto/perlasm/
x86_64-xlate.pl 104 { package opcode; # pick up opcodes
228 die if (opcode->mnemonic() ne "mov");
229 opcode->mnemonic("lea");
284 (opcode->mnemonic() =~ /^v?mov([qd])$/) && ($sz=$1) ||
285 (opcode->mnemonic() =~ /^v?pinsr([qdwb])$/) && ($sz=$1) ||
286 (opcode->mnemonic() =~ /^vpbroadcast([qdwb])$/) && ($sz=$1) ||
287 (opcode->mnemonic() =~ /^vinsert[fi]128$/) && ($sz="x");
427 if ($nasm && opcode->mnemonic()=~m/^j(?![re]cxz)/) {
440 my %opcode = # lea 2f-1f(%rip),%dst; 1: nop; 2:
459 $line=sprintf "0x%x,0x90000000",$opcode{$1}
    [all...]

Completed in 2983 milliseconds

1 2 34 5 6 7 8 91011>>