/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | Opcode.java | 42 public enum Opcode enum 44 NOP(0x00, "nop", ReferenceType.NONE, Format.Format10x, Opcode.CAN_CONTINUE), 45 …MOVE(0x01, "move", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTE… 46 …16(0x02, "move/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_RE… 47 …MOVE_16(0x03, "move/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_R… 48 …"move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Op… 49 …ide/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Op… 50 …ve-wide/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Op… 51 …CT(0x07, "move-object", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_RE… 52 …, "move-object/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_RE… [all …]
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_info_opcodes.h | 1 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 …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | OdexedFieldInstructionMapper.java | 34 import org.jf.dexlib2.Opcode; 56 @Nonnull public final Opcode normalOpcode; 57 @Nullable public final Opcode quickOpcode; 58 @Nullable public final Opcode volatileOpcode; 60 public FieldOpcode(char type, @Nonnull Opcode normalOpcode, @Nullable Opcode quickOpcode, in FieldOpcode() 61 @Nullable Opcode volatileOpcode) { in FieldOpcode() 69 …public FieldOpcode(char type, boolean isStatic, @Nonnull Opcode normalOpcode, @Nullable Opcode vol… in FieldOpcode() 77 public FieldOpcode(char type, @Nonnull Opcode normalOpcode, @Nullable Opcode quickOpcode) { in FieldOpcode() 87 new FieldOpcode('Z', Opcode.IGET_BOOLEAN, Opcode.IGET_QUICK, Opcode.IGET_VOLATILE), 88 new FieldOpcode('B', Opcode.IGET_BYTE, Opcode.IGET_QUICK, Opcode.IGET_VOLATILE), [all …]
|
/external/llvm/test/ObjectYAML/MachO/ |
D | lazy_bind_opcode.yaml | 65 - Opcode: BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB 69 - Opcode: BIND_OPCODE_SET_DYLIB_ORDINAL_IMM 71 - Opcode: BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM 74 - Opcode: BIND_OPCODE_DO_BIND 76 - Opcode: BIND_OPCODE_DONE 78 - Opcode: BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB 82 - Opcode: BIND_OPCODE_SET_DYLIB_ORDINAL_IMM 84 - Opcode: BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM 87 - Opcode: BIND_OPCODE_DO_BIND 89 - Opcode: BIND_OPCODE_DONE [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/ObjectYAML/MachO/ |
D | lazy_bind_opcode.yaml | 65 - Opcode: BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB 69 - Opcode: BIND_OPCODE_SET_DYLIB_ORDINAL_IMM 71 - Opcode: BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM 74 - Opcode: BIND_OPCODE_DO_BIND 76 - Opcode: BIND_OPCODE_DONE 78 - Opcode: BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB 82 - Opcode: BIND_OPCODE_SET_DYLIB_ORDINAL_IMM 84 - Opcode: BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM 87 - Opcode: BIND_OPCODE_DO_BIND 89 - Opcode: BIND_OPCODE_DONE [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/ |
D | ImmutableInstructionFactory.java | 34 import org.jf.dexlib2.Opcode; 49 public ImmutableInstruction10t makeInstruction10t(@Nonnull Opcode opcode, in makeInstruction10t() argument 51 return new ImmutableInstruction10t(opcode, codeOffset); in makeInstruction10t() 54 public ImmutableInstruction10x makeInstruction10x(@Nonnull Opcode opcode) { in makeInstruction10x() argument 55 return new ImmutableInstruction10x(opcode); in makeInstruction10x() 58 public ImmutableInstruction11n makeInstruction11n(@Nonnull Opcode opcode, in makeInstruction11n() argument 61 return new ImmutableInstruction11n(opcode, registerA, literal); in makeInstruction11n() 64 public ImmutableInstruction11x makeInstruction11x(@Nonnull Opcode opcode, in makeInstruction11x() argument 66 return new ImmutableInstruction11x(opcode, registerA); in makeInstruction11x() 69 public ImmutableInstruction12x makeInstruction12x(@Nonnull Opcode opcode, in makeInstruction12x() argument [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | IceAssemblerMIPS32.cpp | 207 void AssemblerMIPS32::emitRsRt(IValueT Opcode, const Operand *OpRs, in emitRsRt() argument 212 Opcode |= Rs << 21; in emitRsRt() 213 Opcode |= Rt << 16; in emitRsRt() 215 emitInst(Opcode); in emitRsRt() 218 void AssemblerMIPS32::emitRtRsImm16(IValueT Opcode, const Operand *OpRt, in emitRtRsImm16() argument 224 Opcode |= Rs << 21; in emitRtRsImm16() 225 Opcode |= Rt << 16; in emitRtRsImm16() 226 Opcode |= Imm & 0xffff; in emitRtRsImm16() 228 emitInst(Opcode); in emitRtRsImm16() 231 void AssemblerMIPS32::emitRtRsImm16Rel(IValueT Opcode, const Operand *OpRt, in emitRtRsImm16Rel() argument [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/ |
D | InstructionFactory.java | 35 import org.jf.dexlib2.Opcode; 45 Instruction makeInstruction10t(@Nonnull Opcode opcode, int codeOffset); in makeInstruction10t() argument 46 Instruction makeInstruction10x(@Nonnull Opcode opcode); in makeInstruction10x() argument 47 Instruction makeInstruction11n(@Nonnull Opcode opcode, int registerA, int literal); in makeInstruction11n() argument 48 Instruction makeInstruction11x(@Nonnull Opcode opcode, int registerA); in makeInstruction11x() argument 49 Instruction makeInstruction12x(@Nonnull Opcode opcode, int registerA, int registerB); in makeInstruction12x() argument 50 …Instruction makeInstruction20bc(@Nonnull Opcode opcode, int verificationError, @Nonnull Ref refere… in makeInstruction20bc() argument 51 Instruction makeInstruction20t(@Nonnull Opcode opcode, int codeOffset); in makeInstruction20t() argument 52 Instruction makeInstruction21c(@Nonnull Opcode opcode, int registerA, @Nonnull Ref reference); in makeInstruction21c() argument 53 Instruction makeInstruction21ih(@Nonnull Opcode opcode, int registerA, int literal); in makeInstruction21ih() argument [all …]
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/findUsages/ |
D | SmaliUsageTypeProvider.java | 40 import org.jf.dexlib2.Opcode; 74 …private final Set<Opcode> newArrayInstructions = EnumSet.of(Opcode.FILLED_NEW_ARRAY, Opcode.NEW_AR… 75 Opcode.FILLED_NEW_ARRAY_RANGE); 77 …private final Set<Opcode> fieldReadInstructions = EnumSet.of(Opcode.IGET, Opcode.IGET_BOOLEAN, Opc… 78 …Opcode.IGET_CHAR, Opcode.IGET_OBJECT, Opcode.IGET_OBJECT_VOLATILE, Opcode.IGET_SHORT, Opcode.IGET_… 79 … Opcode.IGET_WIDE, Opcode.IGET_WIDE_VOLATILE, Opcode.SGET, Opcode.SGET_BOOLEAN, Opcode.SGET_BYTE, 80 …Opcode.SGET_CHAR, Opcode.SGET_OBJECT, Opcode.SGET_OBJECT_VOLATILE, Opcode.SGET_SHORT, Opcode.SGET_… 81 Opcode.SGET_WIDE, Opcode.SGET_WIDE_VOLATILE); 83 …private final Set<Opcode> fieldWriteInstructions = EnumSet.of(Opcode.IPUT, Opcode.IPUT_BOOLEAN, Op… 84 …Opcode.IPUT_CHAR, Opcode.IPUT_OBJECT, Opcode.IPUT_OBJECT_VOLATILE, Opcode.IPUT_SHORT, Opcode.IPUT_… [all …]
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVOpCode.h | 58 inline bool isAtomicOpCode(Op OpCode) { in SPIRV_DEF_NAMEMAP() 60 return ((unsigned)OpCode >= OpAtomicLoad in SPIRV_DEF_NAMEMAP() 61 && (unsigned)OpCode <= OpAtomicXor) in SPIRV_DEF_NAMEMAP() 62 || OpCode == OpAtomicFlagTestAndSet in SPIRV_DEF_NAMEMAP() 63 || OpCode == OpAtomicFlagClear; in SPIRV_DEF_NAMEMAP() 65 inline bool isBinaryOpCode(Op OpCode) { in isBinaryOpCode() argument 66 return ((unsigned)OpCode >= OpIAdd && in isBinaryOpCode() 67 (unsigned)OpCode <= OpFMod) || in isBinaryOpCode() 68 OpCode == OpDot; in isBinaryOpCode() 71 inline bool isShiftOpCode(Op OpCode) { in isShiftOpCode() argument [all …]
|
/external/swiftshader/third_party/SPIRV-Headers/include/spirv/unified1/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.1/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/deqp-deps/SPIRV-Headers/include/spirv/unified1/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/shaderc/spirv-headers/include/spirv/unified1/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/shaderc/spirv-headers/include/spirv/1.0/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.0/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/deqp-deps/SPIRV-Headers/include/spirv/1.0/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/shaderc/spirv-headers/include/spirv/1.1/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.2/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/deqp-deps/SPIRV-Headers/include/spirv/1.2/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/shaderc/spirv-headers/include/spirv/1.2/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/deqp-deps/SPIRV-Headers/include/spirv/1.1/ |
D | extinst.opencl.std.100.grammar.json | 32 "opcode" : 0, number 39 "opcode" : 1, number 46 "opcode" : 2, number 53 "opcode" : 3, number 60 "opcode" : 4, number 67 "opcode" : 5, number 74 "opcode" : 6, number 81 "opcode" : 7, number 89 "opcode" : 8, number 96 "opcode" : 9, number [all …]
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | 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/endian 55 void spvInstructionCopy(const uint32_t* words, const SpvOp opcode, 60 const char* spvOpcodeString(const SpvOp opcode); [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | 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/endian 55 void spvInstructionCopy(const uint32_t* words, const SpvOp opcode, 60 const char* spvOpcodeString(const SpvOp opcode); [all …]
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | 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_ARR, 69 .Opcode = RC_OPCODE_CEIL, 76 .Opcode = RC_OPCODE_CLAMP, 83 .Opcode = RC_OPCODE_CMP, [all …]
|