OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:asm_fp
(Results
1 - 2
of
2
) sorted by null
/dalvik/vm/mterp/
gen-mterp.py
104
appendSourceFile(tokens[1], getGlobalSubDict(),
asm_fp
, None)
197
asm_fp
.write("\n .global %s\n" % start_label)
198
asm_fp
.write(" .text\n")
199
asm_fp
.write("%s:\n" % start_label)
204
asm_fp
.write(" .long " + prefix + \
252
asm_fp
.write(" .balign %d\n" % handler_size_bytes)
269
asm_fp
.write("\n .global %s\n" % start_label)
270
asm_fp
.write(" .type %s, %%function\n" % start_label)
271
asm_fp
.write("%s = " % start_label + label_prefix + "_OP_NOP\n")
272
asm_fp
.write(" .text\n\n"
540
asm_fp
= open("%s\/InterpAsm-%s.S" % (output_dir, target_arch), "w")
variable
[
all
...]
/dalvik/vm/compiler/template/
gen-template.py
81
appendSourceFile(tokens[1], getGlobalSubDict(),
asm_fp
, None)
173
asm_fp
.write("\n .global dvmCompilerTemplateStart\n")
174
asm_fp
.write(" .type dvmCompilerTemplateStart, %function\n")
175
asm_fp
.write(" .text\n\n")
176
asm_fp
.write("dvmCompilerTemplateStart:\n\n")
189
#
asm_fp
.write("\n .balign %d\n" % handler_size_bytes)
190
asm_fp
.write(" .size dvmCompilerTemplateStart, .-dvmCompilerTemplateStart\n")
202
emitAsmHeader(
asm_fp
, dict)
203
appendSourceFile(source, dict,
asm_fp
, sister_list)
357
asm_fp
= open("%s/CompilerTemplateAsm-%s.S" % (output_dir, target_arch), "w"
variable
[
all
...]
Completed in 301 milliseconds