• Home
  • Raw
  • Download

Lines Matching refs:file

8 AOT file has `.an` extension and it is a valid ELF file.
24 special alignment, mostly it is 16 bytes (see `CODE_ALIGNMENT` in `libpandabase/utils/arch.h` file).
38 - `AotHeader` - This header describes main information, such as version, file name string, command …
40 - `PandaFileHeader` - Describes corresponding panda file.
46 Classes and methods are uniquely identified (inside one file) by their panda file id (`panda_file::…
47 therefore compiled Ark bytecode file must be bit by bit equal to the file loaded in runtime.
52 filled with appropriate data during AOT file loading at runtime. This data allows compiler's codege…
115 `ark_aot` tool aims to compile input panda files into the single AOT file that can be consumed by
121 - `--output` - path to the output AOT file (default is `out.an`)
132 To pass AOT file to the Panda `--aot-file` option should be specified:
134 `ark --aot-file file.an file.abc _GLOBAL::main`
140 `ark_aot --panda-files=file1.abc:file2.abc --output file.an`
142 Panda file shall be passed with same name as it was compiled by ark_aot, otherwise AOT loader won't…
148 ark_aot --panda-files file.abc --output file.an
149 ark --aot-file file.an file.abc _GLOBAL::main
151 Bad ("file.abc" != "/local/data/tmp/file.abc"):
152 ark_aot --panda-files file.abc --output file.an
153 ark --aot-file file.an /local/data/tmp/file.abc _GLOBAL::main
156 ark_aot --panda-files file.abc --output file.an --location /local/data/tmp
157 ark --aot-file file.an /local/data/tmp/file.abc _GLOBAL::main
167 `ark_aotdump --show-code disasm file.an`
178 `ark_aot --compiler-disasm-dump --panda-files file.abc --output file.an`
184 `ark_disasm <input panda-bytecode file> <output file>`