Lines Matching refs:asm_fp
83 appendSourceFile(tokens[1], getGlobalSubDict(), asm_fp, None)
183 asm_fp.write("\n .global dvmAsmInstructionStart\n")
184 asm_fp.write(" .type dvmAsmInstructionStart, %function\n")
185 asm_fp.write("dvmAsmInstructionStart = " + label_prefix + "_OP_NOP\n")
186 asm_fp.write(" .text\n\n")
208 asm_fp.write(" .balign %d\n" % handler_size_bytes)
209 asm_fp.write(label_prefix + "_OP_NOP: /* dummy */\n");
211 asm_fp.write("\n .balign %d\n" % handler_size_bytes)
212 asm_fp.write(" .size dvmAsmInstructionStart, .-dvmAsmInstructionStart\n")
213 asm_fp.write(" .global dvmAsmInstructionEnd\n")
214 asm_fp.write("dvmAsmInstructionEnd:\n")
216 emitSectionComment("Sister implementations", asm_fp)
217 asm_fp.write(" .global dvmAsmSisterStart\n")
218 asm_fp.write(" .type dvmAsmSisterStart, %function\n")
219 asm_fp.write(" .text\n")
220 asm_fp.write(" .balign 4\n")
221 asm_fp.write("dvmAsmSisterStart:\n")
222 asm_fp.writelines(sister_list)
224 asm_fp.write("\n .size dvmAsmSisterStart, .-dvmAsmSisterStart\n")
225 asm_fp.write(" .global dvmAsmSisterEnd\n")
226 asm_fp.write("dvmAsmSisterEnd:\n\n")
242 emitAsmStub(asm_fp, dict)
255 emitAsmHeader(asm_fp, dict)
256 appendSourceFile(source, dict, asm_fp, sister_list)
409 asm_fp = open("%s/InterpAsm-%s.S" % (output_dir, target_arch), "w") variable
418 print "Generating %s, %s" % (c_fp.name, asm_fp.name)
429 asm_fp.write(file_header)
466 asm_fp.close()
467 c_fp = asm_fp = None
476 if asm_fp:
477 asm_fp.close()