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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_opcodes.c 35 .Opcode = RC_OPCODE_NOP,
39 .Opcode = RC_OPCODE_ILLEGAL_OPCODE,
40 .Name = "ILLEGAL OPCODE"
43 .Opcode = RC_OPCODE_ABS,
50 .Opcode = RC_OPCODE_ADD,
57 .Opcode = RC_OPCODE_ARL,
63 .Opcode = RC_OPCODE_CEIL,
70 .Opcode = RC_OPCODE_CLAMP,
77 .Opcode = RC_OPCODE_CMP,
84 .Opcode = RC_OPCODE_CND
527 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
    [all...]
radeon_dataflow_swizzles.c 54 mov->U.I.Opcode = RC_OPCODE_MOV;
95 const struct rc_opcode_info * opcode = rc_get_opcode_info(inst->U.I.Opcode); local
98 for(src = 0; src < opcode->NumSrcRegs; ++src) {
99 if (!c->SwizzleCaps->IsNative(inst->U.I.Opcode, inst->U.I.SrcReg[src]))
  /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;
  /external/chromium-trace/catapult/third_party/coverage/coverage/
bytecode.py 6 import opcode namespace
18 # The opcode, defined in the `opcode` module.
21 # The argument, a small integer, whose meaning depends on the opcode.
55 if bc.op >= opcode.HAVE_ARGUMENT:
60 if bc.op in opcode.hasjrel:
62 elif bc.op in opcode.hasjabs:
67 if bc.op == opcode.EXTENDED_ARG:
  /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/libpcap/pcap/
bluetooth.h 51 u_int16_t opcode; member in struct:_pcap_bluetooth_linux_monitor_header
  /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;
  /external/v8/src/compiler/
graph-replay.cc 47 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode()); local
48 const char* builder = IrOpcode::IsCommonOpcode(opcode) ? "common" : "js";
49 const char* mnemonic = IrOpcode::IsCommonOpcode(opcode)
50 ? IrOpcode::Mnemonic(opcode)
51 : IrOpcode::Mnemonic(opcode) + 2;
53 switch (opcode) {
operator-properties.cc 17 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode()); local
18 return IrOpcode::IsJsOpcode(opcode);
24 switch (op->opcode()) {
126 Operator::Opcode const opcode = op->opcode(); member in class:v8::internal::compiler::Operator
127 return opcode == IrOpcode::kStart || opcode == IrOpcode::kEnd ||
128 opcode == IrOpcode::kDead || opcode == IrOpcode::kLoop |
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
np1.h 24 unsigned long opcode; member in struct:gld_opcode
30 /* We store four bytes of opcode for all opcodes because that
33 instruction is based on the opcode.
36 particular opcode in order for an instruction to be an instance
37 of that opcode.
pn.h 24 unsigned long opcode; member in struct:gld_opcode
30 /* We store four bytes of opcode for all opcodes because that
33 instruction is based on the opcode.
36 particular opcode in order for an instruction to be an instance
37 of that opcode.
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
Opcodes.java 49 @Nonnull private final Opcode[] opcodesByValue = new Opcode[255];
50 @Nonnull private final EnumMap<Opcode, Short> opcodeValues;
51 @Nonnull private final HashMap<String, Opcode> opcodesByName;
87 opcodeValues = new EnumMap<Opcode, Short>(Opcode.class);
97 for (Opcode opcode: Opcode.values()) {
101 versionToValueMap = opcode.artVersionToValueMap
112 opcodesByName.put(opcode.name.toLowerCase(), opcode); local
    [all...]
  /external/ltrace/sysdeps/linux-gnu/s390/
trace.c 70 long pc, opcode, offset_reg, scno, tmp; local
118 opcode = ptrace(PTRACE_PEEKTEXT, proc->pid,
121 if ((opcode & 0xffff) == 0x0001) {
124 } else if ((opcode & 0xff00) == 0x0a00) {
125 /* SVC opcode */
126 scno = opcode & 0xff;
127 } else if ((opcode & 0xff000000) == 0x44000000) {
129 svc_addr = (void *)(opcode & 0xfff);
131 offset_reg = (opcode & 0x000f0000) >> 16;
136 offset_reg = (opcode & 0x0000f000) >> 12
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
OffsetInstructionFormatMethodItem.java 34 import org.jf.dexlib2.Opcode;
62 Opcode opcode = instruction.getOpcode(); local
63 switch (opcode.format) {
72 if (opcode == Opcode.FILL_ARRAY_DATA) {
75 if (opcode == Opcode.PACKED_SWITCH) {
78 // Opcode.SPARSE_SWITCH;
  /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...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstruction.java 36 import org.jf.dexlib2.Opcode;
45 @Nonnull protected final Opcode opcode; field in class:ImmutableInstruction
47 protected ImmutableInstruction(@Nonnull Opcode opcode) {
48 Preconditions.checkFormat(opcode, getFormat());
49 this.opcode = opcode;
137 @Nonnull public Opcode getOpcode() {
138 return opcode;
    [all...]
  /external/v8/src/mips/
constants-mips.cc 130 Opcode opcode = static_cast<Opcode>(instr & kOpcodeMask); local
131 switch (opcode) {
  /external/v8/src/mips64/
constants-mips64.cc 130 Opcode opcode = static_cast<Opcode>(instr & kOpcodeMask); local
131 switch (opcode) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/xcb/
xcbext.h 50 uint8_t opcode; member in struct:__anon38107
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/xcb/
xcbext.h 50 uint8_t opcode; member in struct:__anon40181
  /system/bt/stack/avrc/
avrc_utils.c 194 ** Description This function returns the opcode of the given pdu
201 UINT8 opcode = 0; local
207 opcode = AVRC_OP_PASS_THRU;
211 opcode = AVRC_OP_VENDOR;
215 return opcode;
222 ** Description This function returns the opcode of the given pdu
227 BOOLEAN avrc_is_valid_opcode(UINT8 opcode)
230 switch (opcode)
  /toolchain/binutils/binutils-2.25/opcodes/
i370-dis.c 26 #include "opcode/i370.h"
37 const struct i370_opcode *opcode; local
55 /* Find the first match in the opcode table. We could speed this up
56 a bit by doing a binary search on the major opcode. */
58 for (opcode = i370_opcodes; opcode < opcode_end; opcode++)
67 if (2 == opcode->len)
72 masked.i[0] &= opcode->mask.i[0];
73 if (masked.i[0] != opcode->opcode.i[0]
    [all...]
moxie-dis.c 27 #include "opcode/moxie.h"
48 const moxie_opc_info_t * opcode; local
64 /* Extract the Form 1 opcode. */
65 opcode = &moxie_form1_opc_info[iword >> 8];
66 switch (opcode->itype)
69 fpr (stream, "%s", opcode->name);
72 fpr (stream, "%s\t%s", opcode->name,
76 fpr (stream, "%s\t%s, %s", opcode->name,
89 fpr (stream, "%s\t%s, 0x%x", opcode->name,
103 fpr (stream, "%s\t0x%x", opcode->name, imm)
    [all...]
tilegx-dis.c 28 #include "opcode/tilegx.h"
61 /* Determine which nop opcode is used for padding and should be skipped. */
65 if (!decoded[i].opcode->can_bundle)
76 const struct tilegx_opcode *opcode = decoded[i].opcode; local
82 if (opcode->mnemonic == padding_mnemonic
90 name = opcode->name;
95 for (j = 0; j < opcode->num_operands; j++)
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
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...]

Completed in 489 milliseconds

1 2 3 4 5 6 7 8 91011>>