Lines Matching refs:instructions
428 def gen_opcode(instructions): argument
435 max_len = max([len(inst['opname']) for inst in instructions])
443 offset=(max_len + 1 - len(inst['opname']))) for inst in instructions
449 decl_fmt_str.format(name=inst['opname']) for inst in instructions
462 def map_cap_to_opnames(instructions): argument
473 for inst in instructions:
482 def gen_instr_coverage_report(path, instructions): argument
497 instructions))
499 instructions_opnames = [inst['opname'] for inst in instructions]
504 instructions))
532 def update_td_opcodes(path, instructions, filter_list): argument
554 filter(lambda inst: (inst['opname'] in filter_list), instructions))
923 def update_td_op_definitions(path, instructions, docs, filter_list, argument
972 inst for inst in instructions if inst['opname'] == fixed_opname)
1055 operand_kinds, instructions = get_spirv_grammar_from_json_spec(ext_json_url) variable
1066 update_td_opcodes(args.base_td_path, instructions, args.new_opcodes)
1073 update_td_op_definitions(args.op_td_path, instructions, docs, args.new_inst,
1080 gen_instr_coverage_report(args.base_td_path, instructions)