Files
sdk/runtime/vm/compiler
Tess Strickland 16baa33927 [vm/compiler] Fix build on ARM64 Windows.
Fixes the ARM64 Windows build error introduced by 9b06e26 due to
allocating an array of size 0 when the varargs argument to the
template is empty.

TEST=ci

Change-Id: Iccd714de5643da647db8de2a5bea9ef7074610c0
Cq-Include-Trybots: luci.dart.try:vm-win-release-arm64-try,vm-aot-win-release-arm64-try
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/398886
Auto-Submit: Tess Strickland <sstrickl@google.com>
Reviewed-by: Derek Xu <derekx@google.com>
2024-12-04 17:08:01 +00:00
..
2024-08-19 21:46:26 +00:00
2024-05-02 07:18:20 +00:00
2024-05-02 07:18:20 +00:00

Dart VM Compilation Pipeline

This folder contains Dart VM compilation pipeline.

Compilation pipeline is mainly responsible for converting AST or Kernel AST into IL flow graphs and then generating native code from IL.

It has the following structure:

Directory What goes there
assembler/ Assemblers and disassemblers
backend/ IL based compilation backend: optimization passes and architecture specific code generation rules
frontend/ Frontends responsible for converting AST into IL
jit/ JIT specific passes and compilation pipeline entry points
aot/ AOT specific passes and compilation pipeline entry points
. Shared code or code without clear designation.

Currently there are no layering restrictions and components from different subfolders can reference each other.