Lines Matching refs:asm_fp

107         appendSourceFile(tokens[1], getGlobalSubDict(), asm_fp, None)
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)
320 emitSectionComment("Sister implementations", asm_fp)
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)
326 asm_fp.writelines(sister_list)
327asm_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)
341 emitAsmHeader(asm_fp, dict, alt_label_prefix)
342 appendSourceFile(source, dict, asm_fp, None)
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)
382 emitAsmHeader(asm_fp, dict, label_prefix)
383 appendSourceFile(source, dict, asm_fp, sister_list)
392 emitAsmHeader(asm_fp, dict, label_prefix)
394 asm_fp.write(line)
395 asm_fp.write("\n")
543 asm_fp = open("%s/mterp_%s.S" % (output_dir, target_arch), "w") variable
552 print "Generating %s" % (asm_fp.name)
562 asm_fp.write(file_header)
619 asm_fp.close()
620 asm_fp = None variable
627 if asm_fp:
628 asm_fp.close()