Lines Matching refs:write
273 asm_fp.write(" .balign %d\n" % handler_size_bytes)
286 asm_fp.write("\n .global %s\n" % start_label)
287 asm_fp.write(" " + (function_type_format % start_label) + "\n");
288 asm_fp.write("%s = " % start_label + label_prefix + "_op_nop\n")
289 asm_fp.write(" .text\n\n")
310 asm_fp.write(label_prefix + "_op_nop: /* dummy */\n");
313 asm_fp.write(" " + (function_size_format % (start_label, start_label)) + "\n")
314 asm_fp.write(" .global %s\n" % end_label)
315 asm_fp.write("%s:\n" % end_label)
321 asm_fp.write(" .global %s\n" % start_sister_label)
322 asm_fp.write(" " + (function_type_format % start_sister_label) + "\n");
323 asm_fp.write(" .text\n")
324 asm_fp.write(" .balign 4\n")
325 asm_fp.write("%s:\n" % start_sister_label)
327 … asm_fp.write("\n " + (function_size_format % (start_sister_label, start_sister_label)) + "\n")
328 asm_fp.write(" .global %s\n" % end_sister_label)
329 asm_fp.write("%s:\n\n" % end_sister_label)
353 asm_fp.write("\n .global %s\n" % start_label)
354 asm_fp.write(" " + (function_type_format % start_label) + "\n");
355 asm_fp.write(" .text\n\n")
356 asm_fp.write("%s = " % start_label + label_prefix + "_ALT_op_nop\n")
367 asm_fp.write(" " + (function_size_format % (start_label, start_label)) + "\n")
368 asm_fp.write(" .global %s\n" % end_label)
369 asm_fp.write("%s:\n" % end_label)
394 asm_fp.write(line)
395 asm_fp.write("\n")
401 outfp.write("/* ------------------------------ */\n")
408 outfp.write(prefix + "_%(opcode)s: /* 0x%(opnum)02x */\n" % dict)
418 outfp.write(templ.substitute(dict))
436 outfp.write("/* File: %s */\n" % source)
493 outfp.write(subline)
494 outfp.write("\n")
504 fp.write("\n/*\n * %s\n * %s\n * %s\n */\n" %
562 asm_fp.write(file_header)