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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
builtins-arm-msvc-compat-error.c 3 void emit_error(unsigned int opcode) {
4 __emit(opcode); // expected-error {{argument to '__emit' must be a constant integer}}
  /external/deqp-deps/SPIRV-Tools/source/opt/
reflect.h 27 inline bool IsDebug1Inst(SpvOp opcode) {
28 return (opcode >= SpvOpSourceContinued && opcode <= SpvOpSourceExtension) ||
29 opcode == SpvOpString;
31 inline bool IsDebug2Inst(SpvOp opcode) {
32 return opcode == SpvOpName || opcode == SpvOpMemberName;
34 inline bool IsDebug3Inst(SpvOp opcode) {
35 return opcode == SpvOpModuleProcessed;
37 inline bool IsDebugLineInst(SpvOp opcode) {
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
reflect.h 27 inline bool IsDebug1Inst(SpvOp opcode) {
28 return (opcode >= SpvOpSourceContinued && opcode <= SpvOpSourceExtension) ||
29 opcode == SpvOpString;
31 inline bool IsDebug2Inst(SpvOp opcode) {
32 return opcode == SpvOpName || opcode == SpvOpMemberName;
34 inline bool IsDebug3Inst(SpvOp opcode) {
35 return opcode == SpvOpModuleProcessed;
37 inline bool IsDebugLineInst(SpvOp opcode) {
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/
opcode.h 31 // Combines word_count and opcode enumerant in single word.
32 uint32_t spvOpcodeMake(uint16_t word_count, SpvOp opcode);
34 // Splits word into into two constituent parts: word_count and opcode.
36 uint16_t* opcode);
38 // Finds the named opcode in the given opcode table. On success, returns
44 // Finds the opcode by enumerant in the given opcode table. On success, returns
48 const SpvOp opcode,
52 // source instruction's stream/opcode/endianness is in the words/opcode/endia
    [all...]
opcode.cpp 15 #include "source/opcode.h"
55 // TODO(dneto): Move this to another file. It doesn't belong with opcode
65 uint32_t spvOpcodeMake(uint16_t wordCount, SpvOp opcode) {
66 return ((uint32_t)opcode) | (((uint32_t)wordCount) << 16);
82 // Descriptions of each opcode. Each entry describes the format of the
83 // instruction that follows a particular opcode.
96 // TODO: This lookup of the Opcode table is suboptimal! Binary sort would be
97 // preferable but the table requires sorting on the Opcode name, but it's
102 // We considers the current opcode as available as long as
104 // opcode; o
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/
opcode.h 31 // Combines word_count and opcode enumerant in single word.
32 uint32_t spvOpcodeMake(uint16_t word_count, SpvOp opcode);
34 // Splits word into into two constituent parts: word_count and opcode.
36 uint16_t* opcode);
38 // Finds the named opcode in the given opcode table. On success, returns
44 // Finds the opcode by enumerant in the given opcode table. On success, returns
48 const SpvOp opcode,
52 // source instruction's stream/opcode/endianness is in the words/opcode/endia
    [all...]
opcode.cpp 15 #include "source/opcode.h"
55 // TODO(dneto): Move this to another file. It doesn't belong with opcode
65 uint32_t spvOpcodeMake(uint16_t wordCount, SpvOp opcode) {
66 return ((uint32_t)opcode) | (((uint32_t)wordCount) << 16);
82 // Descriptions of each opcode. Each entry describes the format of the
83 // instruction that follows a particular opcode.
96 // TODO: This lookup of the Opcode table is suboptimal! Binary sort would be
97 // preferable but the table requires sorting on the Opcode name, but it's
102 // We considers the current opcode as available as long as
104 // opcode; o
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
InstructionUtil.java 34 import org.jf.dexlib2.Opcode;
37 public static boolean isInvokeStatic(Opcode opcode) {
38 return opcode == Opcode.INVOKE_STATIC || opcode == Opcode.INVOKE_STATIC_RANGE;
41 public static boolean isInvokePolymorphic(Opcode opcode) {
42 return opcode == Opcode.INVOKE_POLYMORPHIC || opcode == Opcode.INVOKE_POLYMORPHIC_RANGE
    [all...]
  /external/deqp-deps/SPIRV-Tools/test/
opcode_split_test.cpp 23 uint16_t opcode; local
24 spvOpcodeSplit(word, &wordCount, &opcode);
26 ASSERT_EQ(23, opcode);
opcode_make_test.cpp 26 // A sampling of opcode values. Covers the lower values well, a few samples
34 for (auto opcode : kSampleOpcodes) {
36 word |= uint32_t(opcode);
38 EXPECT_EQ(word, spvOpcodeMake(wordCount, SpvOp(opcode)));
  /external/swiftshader/third_party/SPIRV-Tools/test/
opcode_split_test.cpp 23 uint16_t opcode; local
24 spvOpcodeSplit(word, &wordCount, &opcode);
26 ASSERT_EQ(23, opcode);
opcode_make_test.cpp 26 // A sampling of opcode values. Covers the lower values well, a few samples
34 for (auto opcode : kSampleOpcodes) {
36 word |= uint32_t(opcode);
38 EXPECT_EQ(word, spvOpcodeMake(wordCount, SpvOp(opcode)));
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
GotoInstruction.java 27 GotoInstruction(final short opcode, final InstructionHandle target) {
28 super(opcode, target);
IfInstruction.java 36 * @param opcode opcode of instruction
39 protected IfInstruction(final short opcode, final InstructionHandle target) {
40 super(opcode, target);
StackInstruction.java 36 * @param opcode instruction opcode
38 protected StackInstruction(final short opcode) {
39 super(opcode, (short) 1);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction.java 34 import org.jf.dexlib2.Opcode;
45 @Nonnull public final Opcode opcode; field in class:DexBackedInstruction
49 @Nonnull Opcode opcode,
52 this.opcode = opcode;
56 @Nonnull public Opcode getOpcode() { return opcode; }
57 @Override public int getCodeUnits() { return opcode.format.size / 2;
67 Opcode opcode = reader.dexBuf.getOpcodes().getOpcodeByValue(opcodeValue); local
    [all...]
  /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/deqp-deps/SPIRV-Tools/source/val/
validate_atomics.cpp 20 #include "source/opcode.h"
33 const SpvOp opcode = inst->opcode(); local
36 switch (opcode) {
56 (opcode == SpvOpAtomicLoad || opcode == SpvOpAtomicExchange ||
57 opcode == SpvOpAtomicCompareExchange)) {
61 << spvOpcodeString(opcode)
64 } else if (opcode == SpvOpAtomicFlagTestAndSet) {
67 << spvOpcodeString(opcode)
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validate_atomics.cpp 20 #include "source/opcode.h"
33 const SpvOp opcode = inst->opcode(); local
36 switch (opcode) {
56 (opcode == SpvOpAtomicLoad || opcode == SpvOpAtomicExchange ||
57 opcode == SpvOpAtomicCompareExchange)) {
61 << spvOpcodeString(opcode)
64 } else if (opcode == SpvOpAtomicFlagTestAndSet) {
67 << spvOpcodeString(opcode)
    [all...]
  /external/python/cpython3/Python/
wordcode_helpers.h 6 # define PACKOPARG(opcode, oparg) ((_Py_CODEUNIT)(((opcode) << 8) | (oparg)))
8 # define PACKOPARG(opcode, oparg) ((_Py_CODEUNIT)(((oparg) << 8) | (opcode)))
25 write_op_arg(_Py_CODEUNIT *codestr, unsigned char opcode,
39 *codestr++ = PACKOPARG(opcode, oparg & 0xff);
  /external/proguard/src/proguard/classfile/instruction/
BranchInstruction.java 44 public BranchInstruction(byte opcode, int branchOffset)
46 this.opcode = opcode;
58 this.opcode = branchInstruction.opcode;
70 switch (opcode)
76 default: return opcode;
86 if (opcode == InstructionConstants.OP_GOTO_W)
88 opcode = InstructionConstants.OP_GOTO;
90 else if (opcode == InstructionConstants.OP_JSR_W
    [all...]
SwitchInstruction.java 44 public SwitchInstruction(byte opcode,
48 this.opcode = opcode;
61 this.opcode = switchInstruction.opcode;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableInstructionFactory.java 34 import org.jf.dexlib2.Opcode;
49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode,
51 return new ImmutableInstruction10t(opcode, codeOffset);
54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) {
55 return new ImmutableInstruction10x(opcode);
58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode,
61 return new ImmutableInstruction11n(opcode, registerA, literal)
    [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);

Completed in 1507 milliseconds

1 2 3 4 5 6 7 8 91011>>