Searched refs:md (Results 1 – 25 of 42) sorted by relevance
12
18 * [Glossary](glossary.md)21 * [Panda Assembly Language](assembly_format.md)24 * [File Format](file_format.md)25 * [IR Format](ir_format.md)26 * [IR Snapshot Format](dump_format.md)29 * [Overview of JIT compilers](overview-of-jit-compilers.md)30 * [Overview of Managed Assemblers](overview-of-managed-assemblers.md)33 * [C++ Coding Style](coding-style.md)
19 * [IrBuilder](../compiler/docs/ir_builder.md)20 * [BranchElimination](../compiler/docs/branch_elimination_doc.md)21 * [ChecksElimination](../compiler/docs/check_elimination_doc.md)22 * [Cleanup](../compiler/docs/cleanup_doc.md)23 * [Constant Folding](../compiler/docs/constant_folding_doc.md)24 * [Inlining](../compiler/docs/inlining.md)26 * [LICM](../compiler/docs/licm_doc.md)27 * [Lowering](../compiler/docs/lowering_doc.md)28 * [Load Store Elimination (LSE)](../compiler/docs/lse_doc.md)29 * [Memory Coalescing](../compiler/docs/memory_coalescing_doc.md)[all …]
53 runtime calls and work with [PLT](../compiler/docs/plt.md) resolvers.104 …rom runtime calls - PLT resolvers. They are described in a separate [doc](../compiler/docs/plt.md).109 Refer to [doc](../compiler/docs/aot_resolve_string.md) for details.128 Additional information could be found [here](../compiler/docs/paoc.md).
16 Please refer to the [glossary](glossary.md) for terminology clarification.49 For the rationale on the bytecode type, please see [here](rationale-for-bytecode.md).110 Please find the specification [here](file_format.md).216 …eral overview of managed assembly languages can be found [here](overview-of-managed-assemblers.md).226 Please find the specification [here](assembly_format.md).
3 - [Overview](overview.md)4 - [Environment Setup and Compilation](environment-setup-and-compilation.md)5 - [Development Example](development-example.md)6 - [Using the Toolchain](using-the-toolchain.md)
47 "#{md(desc['assertion'])} [#{test_list(desc['tests'])}]#{non_testable}"51 "[#{md(properties.join(', '))}]"55 "#{md(@verification_hash[ver['verification']])} [#{test_list(ver['tests'])}]"59 "#{md(@exceptions_hash[entry['exception']])} [#{test_list(entry['tests'])}]"66 def md(str) method in FullMd
31 md(val.to_s)34 def md(str) method in OrphanedMd
43 "[#{md(properties.join(', '))}]"46 def md(str) method in UncoveredMd
23 Description: <%= md(v['description']) %>30 - **<%= md(i['sig']) -%>**32 <% if i['type'] %> - *type:* <%= md(i['type']) + "\n" %><% end -%>33 <% if i['dtype'] %> - *dtype:* <%= md(i['dtype']) + "\n" %><% end -%>34 <% if i['etype'] %> - *etype:* <%= md(i['etype']) + "\n" %><% end -%>43 - <%= md(e) %>51 - <%= md(x) %>
19 - **<%= md(v['file']) %>**, <%= md(v['error']) %>
38 - <%= md(i['sig']) %> [<% if i['tests'].any? %><%= i['tests'].join(', ')%><% else %>`not covered`<%…55 * <%= md(properties_hash[p]) %>
20 └── README_zh.md # 工具使用指导文档34 [工具使用说明](./docs/INSTRUCTION_zh.md)60 [工具开发说明](./docs/DEVELOP_zh.md)
21 …[方舟运行时子系统](https://gitee.com/openharmony/docs/blob/master/zh-cn/readme/ARK-Runtime-Subsystem-zh.md)27 … # 汇编器,将文本格式的方舟字节码文件(*.pa)转换为二进制格式的字节码文件(*.abc),具体格式见:docs/assembly_format.md和docs/file_format.md30 ├── compiler # 编译器,主要包含用于字节码优化的IR和passes等,更多信息可参:docs/ir_format.md36 ├── irtoc # IR to code工具,将手工创建的IR编译为目标代码,具体可以参考:docs/irtoc.md121 …参考:[方舟运行时使用指南](https://gitee.com/openharmony/arkcompiler_ets_runtime/blob/master/docs/README_zh.md)
21 …time Subsystem](https://gitee.com/openharmony/docs/blob/master/en/readme/ARK-Runtime-Subsystem.md).26 … format (*.abc). For details about the format, see docs/assembly_format.md and docs/file_format.md.29 …luding IR(intermediate representation) and passes for bytecode optimization. See docs/ir_format.md.126 …ime Usage Guide](https://gitee.com/openharmony/arkcompiler_ets_runtime/blob/master/docs/README.md).
8 * [register allocator](doc/register_allocator.md)9 * [intrinsic expander](doc/intrinsic_expander.md)10 * [panda assembly dumper](doc/assembly_dumper.md)11 * [panda binary dumper](doc/binary_dumper.md)
16 …[方舟运行时子系统](https://gitee.com/openharmony/docs/blob/master/zh-cn/readme/ARK-Runtime-Subsystem-zh.md)68 NAPI接口说明参考[NAPI部件](https://gitee.com/openharmony/arkui_napi/blob/master/README_zh.md)72 ArkTS生成字节码参考[方舟eTS编译器](docs/using-the-toolchain-zh.md)80 更多使用说明请参考:[方舟运行时使用指南](/docs/README_zh.md)
7 …ler JS Runtime](https://gitee.com/openharmony/docs/blob/master/en/readme/ARK-Runtime-Subsystem.md).56 See [NAPI](https://gitee.com/openharmony/arkui_napi/blob/master/README.md).60 …details about how to generate JS bytecodes, see [Using the Toolchain](docs/using-the-toolchain.md).69 docs/ARK-Runtime-Usage-Guide.md).
28 set(UNCOVERED_MD "${PROJECT_BINARY_DIR}/uncovered.md")30 set(ORPHANED_MD "${PROJECT_BINARY_DIR}/orphaned.md")32 set(FULL_MD "${PROJECT_BINARY_DIR}/full.md")
13 [开发说明](./DEVELOP_zh.md)
18 └── README.md # 指导文档
33 if not exist %var% (md %var%)60 md result
11 …对ArkTS应用程序的调试调优工具。如需查看调试调优工具具体支持特性,请前往[调试调优工具介绍](docs/debugger-and-profiler-tools-introduction.md)。
3 `Paoc` is an application to launch compiler on [panda binary files](../../docs/file_format.md). 7 …`. Takes into account differences of [OSR](../../docs/on-stack-replacement.md#Compilation) compila…
3 AOT compiler mode mainly described in [aot.md](../../docs/aot.md), please read it first.87 The [PLT Resolvers](./plt.md) help to avoid this resolution on each call and cache result (index in…
44 isa.md.erb