Home
last modified time | relevance | path

Searched refs:opcodes (Results 1 – 25 of 263) sorted by relevance

1234567891011

/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dfuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp74 std::vector<SpvOp> opcodes = {SpvOpUnreachable}; in Apply() local
76 opcodes.emplace_back(SpvOpKill); in Apply()
81 opcodes.emplace_back(SpvOpReturn); in Apply()
87 opcodes.emplace_back(SpvOpReturnValue); in Apply()
91 auto opcode = opcodes[GetFuzzerContext()->RandomIndex(opcodes)]; in Apply()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
Dfuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp74 std::vector<SpvOp> opcodes = {SpvOpUnreachable}; in Apply() local
76 opcodes.emplace_back(SpvOpKill); in Apply()
81 opcodes.emplace_back(SpvOpReturn); in Apply()
87 opcodes.emplace_back(SpvOpReturnValue); in Apply()
91 auto opcode = opcodes[GetFuzzerContext()->RandomIndex(opcodes)]; in Apply()
/third_party/spirv-tools/source/fuzz/
Dfuzzer_pass_replace_branches_from_dead_blocks_with_exits.cpp74 std::vector<SpvOp> opcodes = {SpvOpUnreachable}; in Apply() local
76 opcodes.emplace_back(SpvOpKill); in Apply()
81 opcodes.emplace_back(SpvOpReturn); in Apply()
87 opcodes.emplace_back(SpvOpReturnValue); in Apply()
91 auto opcode = opcodes[GetFuzzerContext()->RandomIndex(opcodes)]; in Apply()
/third_party/mesa3d/src/compiler/nir/
Dnir_opcodes_h.py42 from nir_opcodes import opcodes
45 print(Template(template).render(opcodes=opcodes))
Dnir_opcodes_c.py26 from nir_opcodes import opcodes, type_sizes
128 print(template.render(opcodes=opcodes, type_sizes=type_sizes))
Dnir_builder_opcodes_h.py167 from nir_opcodes import opcodes
171 print(Template(template).render(opcodes=opcodes, INTR_OPCODES=INTR_OPCODES, WRITE_MASK=WRITE_MASK, …
Dnir_constant_expressions.py2 from nir_opcodes import opcodes
513 print(Template(template).render(opcodes=opcodes, type_sizes=type_sizes,
Dnir_opcodes.py152 opcodes = {} variable
156 assert name not in opcodes
157 opcodes[name] = Opcode(name, output_size, output_type, input_sizes,
289 unop_numeric_convert("f2fmp", tfloat16, tfloat32, opcodes["f2f16"].const_expr)
290 unop_numeric_convert("i2imp", tint16, tint32, opcodes["i2i16"].const_expr)
292 unop_numeric_convert("f2imp", tint16, tfloat32, opcodes["f2i16"].const_expr)
293 unop_numeric_convert("f2ump", tuint16, tfloat32, opcodes["f2u16"].const_expr)
294 unop_numeric_convert("i2fmp", tfloat16, tint32, opcodes["i2f16"].const_expr)
295 unop_numeric_convert("u2fmp", tfloat16, tuint32, opcodes["u2f16"].const_expr)
/third_party/mesa3d/src/asahi/compiler/
Dagx_opcodes.c.py54 from agx_opcodes import opcodes
56 print(Template(template).render(opcodes=opcodes))
Dagx_builder.h.py159 from agx_opcodes import opcodes
161 print(Template(template).render(opcodes=opcodes))
Dagx_opcodes.h.py80 from agx_opcodes import opcodes, immediates, enums
82 print(Template(template).render(opcodes=opcodes, immediates=immediates,
/third_party/mesa3d/src/amd/compiler/
Daco_opcodes_cpp.py83 from aco_opcodes import opcodes
86 print(Template(template).render(opcodes=opcodes))
Daco_opcodes_h.py45 from aco_opcodes import opcodes
48 print(Template(template).render(opcodes=opcodes))
Daco_builder_h.py605 from aco_opcodes import opcodes, Format
608 print(Template(template).render(opcodes=opcodes, Format=Format))
/third_party/mesa3d/src/compiler/spirv/
Dvtn_gather_types_c.py115 opcodes = list(find_result_types(spirv_info)) variable
119 f.write(TEMPLATE.render(opcodes=opcodes))
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
Ddef_use_test.cpp55 std::vector<SpvOp> opcodes; in GetUseOpcodes() local
57 id, [&opcodes](Instruction* user, uint32_t) { in GetUseOpcodes()
58 opcodes.push_back(user->opcode()); in GetUseOpcodes()
60 return opcodes; in GetUseOpcodes()
1301 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 6u); in TEST() local
1302 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSwitch, SpvOpReturnValue)); in TEST()
1306 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 7u); in TEST() local
1308 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSelectionMerge, SpvOpBranch, in TEST()
/third_party/spirv-tools/test/opt/
Ddef_use_test.cpp55 std::vector<SpvOp> opcodes; in GetUseOpcodes() local
57 id, [&opcodes](Instruction* user, uint32_t) { in GetUseOpcodes()
58 opcodes.push_back(user->opcode()); in GetUseOpcodes()
60 return opcodes; in GetUseOpcodes()
1301 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 6u); in TEST() local
1302 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSwitch, SpvOpReturnValue)); in TEST()
1306 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 7u); in TEST() local
1308 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSelectionMerge, SpvOpBranch, in TEST()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
Ddef_use_test.cpp55 std::vector<SpvOp> opcodes; in GetUseOpcodes() local
57 id, [&opcodes](Instruction* user, uint32_t) { in GetUseOpcodes()
58 opcodes.push_back(user->opcode()); in GetUseOpcodes()
60 return opcodes; in GetUseOpcodes()
1301 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 6u); in TEST() local
1302 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSwitch, SpvOpReturnValue)); in TEST()
1306 std::vector<SpvOp> opcodes = GetUseOpcodes(context, 7u); in TEST() local
1308 EXPECT_THAT(opcodes, UnorderedElementsAre(SpvOpSelectionMerge, SpvOpBranch, in TEST()
/third_party/mesa3d/src/gallium/drivers/i915/
Di915_debug_fp.c37 static const char *opcodes[0x20] = { variable
202 PRINTF(stream, "%s ", opcodes[opcode]); in print_arith_op()
224 PRINTF(stream, "%s ", opcodes[opcode]); in print_tex_op()
248 PRINTF(stream, "%s ", opcodes[opcode]); in print_dcl_op()
/third_party/python/Doc/library/
Dpickletools.rst6 pickle-machine opcodes, as well as some useful functions.
47 highest protocol among opcodes = 2
89 pickler. Successive levels, indicated by ``MARK`` opcodes in the
100 Provides an :term:`iterator` over all of the opcodes in a pickle, returning a
109 opcodes. The optimized pickle is shorter, takes less transmission time,
/third_party/pulseaudio/
DPROTOCOL24 New opcodes:
37 New opcodes:
57 Reply to these opcodes now includes:
65 New opcodes for changing buffer attrs:
70 New opcodes for changing sampling rate:
75 New opcodes for notifications:
101 New proplist field for sink, source, sink input, source output introspection opcodes and at the end:
105 New opcodes for proplist modifications
326 New opcodes:
/third_party/python/Lib/test/
Dtest_compile.py772 opcodes = list(dis.get_instructions(func))
773 self.assertLessEqual(len(opcodes), 3)
774 self.assertEqual('LOAD_CONST', opcodes[-2].opname)
775 self.assertEqual(None, opcodes[-2].argval)
776 self.assertEqual('RETURN_VALUE', opcodes[-1].opname)
791 opcodes = list(dis.get_instructions(func))
792 self.assertEqual(2, len(opcodes))
793 self.assertEqual('LOAD_CONST', opcodes[0].opname)
794 self.assertEqual(None, opcodes[0].argval)
795 self.assertEqual('RETURN_VALUE', opcodes[1].opname)
[all …]
Dtest_dtrace.py123 opcodes = set(["CALL_FUNCTION", "CALL_FUNCTION_EX", "CALL_FUNCTION_KW"])
141 opcodes.discard(instruction.opname)
143 self.assertEqual(set(), opcodes)
/third_party/ffmpeg/libavcodec/
Dpafvideo.c62 uint8_t *opcodes; member
165 const uint8_t *src, *send, *opcodes; in decode_0() local
223 opcodes = pkt + bytestream2_tell(&c->gb); in decode_0()
234 opcode = opcodes[op] & 15; in decode_0()
237 opcode = opcodes[op] >> 4; in decode_0()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetInstrPredicate.td84 // set of opcodes.
160 // Check that the instruction opcode is one of the opcodes in set `Opcodes`.
208 // `opcodes` list, and each case is associated with MCStatement `caseStmt`.
209 class MCOpcodeSwitchCase<list<Instruction> opcodes, MCStatement caseStmt> {
210 list<Instruction> Opcodes = opcodes;
263 // a) MI's opcode is in the `opcodes` set, and
275 class InstructionEquivalenceClass<list<Instruction> opcodes,
278 list<Instruction> Opcodes = opcodes;
289 class DepBreakingClass<list<Instruction> opcodes, MCInstPredicate pred,
291 : InstructionEquivalenceClass<opcodes, pred, BrokenDeps>;

1234567891011