Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
assembler.h
Go to the documentation of this file.
1// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5#ifndef RUNTIME_VM_COMPILER_ASSEMBLER_ASSEMBLER_H_
6#define RUNTIME_VM_COMPILER_ASSEMBLER_ASSEMBLER_H_
7
8#if defined(DART_PRECOMPILED_RUNTIME)
9#error "AOT runtime should not use compiler sources (including header files)"
10#endif // defined(DART_PRECOMPILED_RUNTIME)
11
12#include "platform/assert.h"
13#include "vm/allocation.h"
16#include "vm/globals.h"
17#include "vm/growable_array.h"
18#include "vm/hash_map.h"
19
20#if defined(TARGET_ARCH_IA32)
22#elif defined(TARGET_ARCH_X64)
24#elif defined(TARGET_ARCH_ARM)
26#elif defined(TARGET_ARCH_ARM64)
28#elif defined(TARGET_ARCH_RISCV32) || defined(TARGET_ARCH_RISCV64)
30#else
31#error Unknown architecture.
32#endif
33
34#endif // RUNTIME_VM_COMPILER_ASSEMBLER_ASSEMBLER_H_