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

1 2

  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_info_opcodes.h 0 OPCODE(1, 1, COMP, ARL)
2 OPCODE(1, 1, COMP, MOV)
3 OPCODE(1, 1, CHAN, LIT)
4 OPCODE(1, 1, REPL, RCP)
5 OPCODE(1, 1, REPL, RSQ)
6 OPCODE(1, 1, CHAN, EXP)
7 OPCODE(1, 1, CHAN, LOG)
8 OPCODE(1, 2, COMP, MUL)
9 OPCODE(1, 2, COMP, ADD)
10 OPCODE(1, 2, REPL, DP3
    [all...]
tgsi_info.c 38 #define OPCODE(_num_dst, _num_src, _output_mode, name, ...) \
39 { .opcode = TGSI_OPCODE_ ## name, \
43 #define OPCODE_GAP(opc) { .opcode = opc },
50 #undef OPCODE
54 tgsi_get_opcode_info( uint opcode )
58 ASSERT_BITFIELD_SIZE(struct tgsi_opcode_info, opcode, TGSI_OPCODE_LAST - 1);
66 assert(opcode_info[i].opcode == i);
69 if (opcode < TGSI_OPCODE_LAST)
70 return &opcode_info[opcode];
76 #define OPCODE(_num_dst, _num_src, _output_mode, name, ...) #name
    [all...]
  /external/llvm/lib/Analysis/
InstCount.cpp 31 #define HANDLE_INST(N, OPCODE, CLASS) \
32 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
44 #define HANDLE_INST(N, OPCODE, CLASS) \
45 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
CFLGraph.h 463 #define HANDLE_INST(NUM, OPCODE, CLASS) \
464 case Instruction::OPCODE: \
465 this->visit##OPCODE(*(CLASS *)CE); \
  /external/swiftshader/third_party/LLVM/lib/Analysis/
InstCount.cpp 30 #define HANDLE_INST(N, OPCODE, CLASS) \
31 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
43 #define HANDLE_INST(N, OPCODE, CLASS) \
44 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
InstCount.cpp 30 #define HANDLE_INST(N, OPCODE, CLASS) \
31 STATISTIC(Num ## OPCODE ## Inst, "Number of " #OPCODE " insts");
42 #define HANDLE_INST(N, OPCODE, CLASS) \
43 void visit##OPCODE(CLASS &) { ++Num##OPCODE##Inst; ++TotalInsts; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableArrayPayload.java 36 import org.jf.dexlib2.Opcode;
45 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
52 super(OPCODE);
59 super(OPCODE);
80 @Override public Format getFormat() { return OPCODE.format; }
ImmutablePackedSwitchPayload.java 36 import org.jf.dexlib2.Opcode;
46 public static final Opcode OPCODE = Opcode.PACKED_SWITCH_PAYLOAD;
51 super(OPCODE);
58 super(OPCODE);
74 @Override public Format getFormat() { return OPCODE.format; }
ImmutableSparseSwitchPayload.java 36 import org.jf.dexlib2.Opcode;
46 public static final Opcode OPCODE = Opcode.SPARSE_SWITCH_PAYLOAD;
51 super(OPCODE);
57 super(OPCODE);
73 @Override public Format getFormat() { return OPCODE.format; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderArrayPayload.java 36 import org.jf.dexlib2.Opcode;
45 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
52 super(OPCODE);
61 @Override public Format getFormat() { return OPCODE.format; }
BuilderPackedSwitchPayload.java 37 import org.jf.dexlib2.Opcode;
47 public static final Opcode OPCODE = Opcode.PACKED_SWITCH_PAYLOAD;
53 super(OPCODE);
68 @Override public Format getFormat() { return OPCODE.format; }
BuilderSparseSwitchPayload.java 38 import org.jf.dexlib2.Opcode;
48 public static final Opcode OPCODE = Opcode.SPARSE_SWITCH_PAYLOAD;
53 super(OPCODE);
69 @Override public Format getFormat() { return OPCODE.format; }
  /external/mesa3d/src/compiler/nir/
nir_intrinsics.c 30 #define OPCODE(name) nir_intrinsic_##name
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedArrayPayload.java 34 import org.jf.dexlib2.Opcode;
44 public static final Opcode OPCODE = Opcode.ARRAY_PAYLOAD;
55 super(dexFile, OPCODE, instructionStart);
  /external/swiftshader/third_party/LLVM/test/MC/MBlaze/
mblaze_pattern.s 6 # TYPE A: OPCODE RD RA RB FLAGS
mblaze_shift.s 6 # TYPE A: OPCODE RD RA RB FLAGS
mblaze_fpu.s 6 # TYPE A: OPCODE RD RA RB FLAGS
mblaze_memory.s 6 # TYPE A: OPCODE RD RA RB FLAGS
mblaze_typeb.s 6 # TYPE B: OPCODE RD RA IMMEDIATE
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
InstVisitor.h 24 #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS;
76 /// opcode.
119 #define HANDLE_INST(NUM, OPCODE, CLASS) \
120 case Instruction::OPCODE: return \
122 visit##OPCODE(static_cast<CLASS&>(I));
148 // class and opcode name are the exact same. Because of this, we cannot
153 #define HANDLE_INST(NUM, OPCODE, CLASS) \
154 RetTy visit##OPCODE(CLASS &I) { DELEGATE(CLASS); }
  /external/llvm/include/llvm/IR/
InstVisitor.h 27 #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS;
79 /// opcode.
122 #define HANDLE_INST(NUM, OPCODE, CLASS) \
123 case Instruction::OPCODE: return \
125 visit##OPCODE(static_cast<CLASS&>(I));
150 // These functions can also implement fan-out, when a single opcode and
154 #define HANDLE_INST(NUM, OPCODE, CLASS) \
155 RetTy visit##OPCODE(CLASS &I) { \
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
InstVisitor.h 27 #define HANDLE_INST(NUM, OPCODE, CLASS) class CLASS;
79 /// opcode.
125 #define HANDLE_INST(NUM, OPCODE, CLASS) \
126 case Instruction::OPCODE: return \
128 visit##OPCODE(static_cast<CLASS&>(I));
153 // These functions can also implement fan-out, when a single opcode and
157 #define HANDLE_INST(NUM, OPCODE, CLASS) \
158 RetTy visit##OPCODE(CLASS &I) { \
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 37 : Op0(Op0In), Op1(Op1In), Opcode(0), ICmpType(0), CCValid(0), CCMask(0) {}
42 // The opcode that should be used to compare Op0 and Op1.
43 unsigned Opcode;
48 // The mask of CC values that Opcode can produce.
293 for (unsigned Opcode = 0; Opcode < ISD::BUILTIN_OP_END; ++Opcode)
294 if (getOperationAction(Opcode, VT) == Legal)
295 setOperationAction(Opcode, VT, Expand);
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 45 : Op0(Op0In), Op1(Op1In), Opcode(0), ICmpType(0), CCValid(0), CCMask(0) {}
50 // The opcode that should be used to compare Op0 and Op1.
51 unsigned Opcode;
56 // The mask of CC values that Opcode can produce.
271 for (unsigned Opcode = 0; Opcode < ISD::BUILTIN_OP_END; ++Opcode)
272 if (getOperationAction(Opcode, VT) == Legal)
273 setOperationAction(Opcode, VT, Expand);
    [all...]
  /external/mesa3d/src/intel/tools/
aubinator.c 354 #define OPCODE(dw) (((dw) >> 23) & 0x3f)
357 #define MAKE_HEADER(type, opcode, subopcode) \
358 (((type) << 29) | ((opcode) << 23) | ((subopcode) << 16))
368 /* Newer version AUB opcode */
397 switch (OPCODE(h)) {
405 fprintf(outfile, "unknown opcode %d at %td/%td\n",
406 OPCODE(h), file->cursor - file->map,
445 fprintf(outfile, "unknown block type=0x%x, opcode=0x%x, "
446 "subopcode=0x%x (%08x)\n", TYPE(h), OPCODE(h), SUBOPCODE(h), h);

Completed in 1623 milliseconds

1 2