Home
last modified time | relevance | path

Searched refs:output_file (Results 1 – 6 of 6) sorted by relevance

/qemu/target/hexagon/idef-parser/
H A Didef-parser.y838 FILE *output_file = fopen(argv[ARG_INDEX_EMITTER_C], "w"); variable
839 fputs("#include \"qemu/osdep.h\"\n", output_file);
840 fputs("#include \"qemu/log.h\"\n", output_file);
841 fputs("#include \"cpu.h\"\n", output_file);
842 fputs("#include \"internal.h\"\n", output_file);
843 fputs("#include \"tcg/tcg.h\"\n", output_file);
844 fputs("#include \"tcg/tcg-op.h\"\n", output_file);
845 fputs("#include \"exec/helper-gen.h\"\n", output_file);
846 fputs("#include \"insn.h\"\n", output_file);
847 fputs("#include \"opcodes.h\"\n", output_file);
[all …]
H A Didef-parser.h233 FILE *output_file; /**< FILE * of the C output file */ member
H A Dparser-helpers.c262 c->output_file); in commit()
264 c->output_file); in commit()
266 c->output_file); in commit()
/qemu/scripts/
H A Dxml-preprocess.py274 with open(path, "w", encoding="utf-8") if path else sys.stdout as output_file:
275 output_file.write(xml.toprettyxml())
283 output_file = None
285 output_file = sys.argv[2]
289 save_xml(output_xml, output_file)
H A Ddecodetree.py43 output_file = None variable
134 global output_file
151 if output_file and output_fd:
153 os.remove(output_file)
1503 global output_file
1526 output_file = a
1583 elif output_file:
1584 output_fd = open(output_file, 'wt', encoding='utf-8')
1650 if output_file:
/qemu/scripts/modules/
H A Dmodule_block.py86 output_file = sys.argv[1] variable
87 with open(output_file, 'w') as fheader: