mirror of
https://github.com/corda/corda.git
synced 2025-02-03 01:31:24 +00:00
d7f088c9e7
The eventual intent with the lir namespace is to formalize some of the important bits of Assembler interface, to be tested, debug-printed, and potentially, serialized. Also, group arguments to apply(...) in OperandInfos
29 lines
935 B
C++
29 lines
935 B
C++
/* Copyright (c) 2008-2012, Avian Contributors
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
for any purpose with or without fee is hereby granted, provided
|
|
that the above copyright notice and this permission notice appear
|
|
in all copies.
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
details. */
|
|
|
|
#ifndef AVIAN_CODEGEN_TARGETS_H
|
|
#define AVIAN_CODEGEN_TARGETS_H
|
|
|
|
#include "codegen/assembler.h"
|
|
|
|
namespace avian {
|
|
namespace codegen {
|
|
|
|
Assembler::Architecture* makeArchitectureNative(vm::System* system, bool useNativeFeatures);
|
|
|
|
Assembler::Architecture* makeArchitectureX86(vm::System* system, bool useNativeFeatures);
|
|
Assembler::Architecture* makeArchitectureArm(vm::System* system, bool useNativeFeatures);
|
|
Assembler::Architecture* makeArchitecturePowerpc(vm::System* system, bool useNativeFeatures);
|
|
|
|
} // namespace codegen
|
|
} // namespace avian
|
|
|
|
#endif // AVIAN_CODEGEN_TARGETS_H
|