mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Great renaming part II: Sparc --> SparcV9 (also includes command-line options and Makefiles)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11827 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e3d6807ab5
commit
150666fd82
@ -29,12 +29,12 @@ namespace llvm {
|
||||
TargetMachine *allocateCTargetMachine(const Module &M,
|
||||
IntrinsicLowering *IL = 0);
|
||||
|
||||
// allocateSparcTargetMachine - Allocate and return a subclass of
|
||||
// allocateSparcV9TargetMachine - Allocate and return a subclass of
|
||||
// TargetMachine that implements the Sparc backend. This takes ownership of
|
||||
// the IntrinsicLowering pointer, deleting it when the target machine is
|
||||
// destroyed.
|
||||
//
|
||||
TargetMachine *allocateSparcTargetMachine(const Module &M,
|
||||
TargetMachine *allocateSparcV9TargetMachine(const Module &M,
|
||||
IntrinsicLowering *IL = 0);
|
||||
|
||||
// allocateX86TargetMachine - Allocate and return a subclass of TargetMachine
|
||||
|
@ -28,7 +28,7 @@ using namespace llvm;
|
||||
#endif
|
||||
|
||||
namespace {
|
||||
enum ArchName { x86, Sparc };
|
||||
enum ArchName { x86, SparcV9 };
|
||||
|
||||
#ifndef NO_JITS_ENABLED
|
||||
cl::opt<ArchName>
|
||||
@ -38,13 +38,13 @@ namespace {
|
||||
clEnumVal(x86, " IA-32 (Pentium and above)"),
|
||||
#endif
|
||||
#ifdef ENABLE_SPARC_JIT
|
||||
clEnumValN(Sparc, "sparc", " Sparc-V9"),
|
||||
clEnumValN(Sparc, "sparcv9", " Sparc-V9"),
|
||||
#endif
|
||||
0),
|
||||
#if defined(ENABLE_X86_JIT)
|
||||
cl::init(x86)
|
||||
#elif defined(ENABLE_SPARC_JIT)
|
||||
cl::init(Sparc)
|
||||
cl::init(SparcV9)
|
||||
#endif
|
||||
);
|
||||
#endif /* NO_JITS_ENABLED */
|
||||
@ -69,8 +69,8 @@ ExecutionEngine *JIT::create(ModuleProvider *MP, IntrinsicLowering *IL) {
|
||||
break;
|
||||
#endif
|
||||
#ifdef ENABLE_SPARC_JIT
|
||||
case Sparc:
|
||||
TargetMachineAllocator = allocateSparcTargetMachine;
|
||||
case SparcV9:
|
||||
TargetMachineAllocator = allocateSparcV9TargetMachine;
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
|
@ -7,7 +7,7 @@
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
LEVEL = ../..
|
||||
DIRS = CBackend X86 Sparc PowerPC
|
||||
DIRS = CBackend X86 SparcV9 PowerPC
|
||||
LIBRARYNAME = target
|
||||
BUILD_ARCHIVE = 1
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "SparcInternals.h"
|
||||
#include "SparcV9Internals.h"
|
||||
#include "llvm/Constant.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#include "llvm/Function.h"
|
||||
|
@ -9,16 +9,16 @@
|
||||
LEVEL = ../..
|
||||
TOOLNAME = llc
|
||||
USEDLIBS = cwriter \
|
||||
sparc \
|
||||
sparcv9 \
|
||||
x86 \
|
||||
powerpc \
|
||||
selectiondag \
|
||||
regalloc \
|
||||
sparcv9regalloc \
|
||||
sched \
|
||||
select \
|
||||
sparcv9select \
|
||||
codegen \
|
||||
target.a \
|
||||
livevar \
|
||||
sparcv9livevar \
|
||||
ipa.a \
|
||||
transforms.a \
|
||||
scalaropts.a \
|
||||
|
@ -37,12 +37,12 @@ OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
|
||||
|
||||
static cl::opt<bool> Force("f", cl::desc("Overwrite output files"));
|
||||
|
||||
enum ArchName { noarch, X86, Sparc, PowerPC, CBackend };
|
||||
enum ArchName { noarch, X86, SparcV9, PowerPC, CBackend };
|
||||
|
||||
static cl::opt<ArchName>
|
||||
Arch("march", cl::desc("Architecture to generate assembly for:"), cl::Prefix,
|
||||
cl::values(clEnumValN(X86, "x86", " IA-32 (Pentium and above)"),
|
||||
clEnumValN(Sparc, "sparc", " SPARC V9"),
|
||||
clEnumValN(SparcV9, "sparcv9", " SPARC V9"),
|
||||
clEnumValN(PowerPC, "powerpc", " PowerPC"),
|
||||
clEnumValN(CBackend, "c", " C backend"),
|
||||
0),
|
||||
@ -90,8 +90,8 @@ int main(int argc, char **argv) {
|
||||
case X86:
|
||||
TargetMachineAllocator = allocateX86TargetMachine;
|
||||
break;
|
||||
case Sparc:
|
||||
TargetMachineAllocator = allocateSparcTargetMachine;
|
||||
case SparcV9:
|
||||
TargetMachineAllocator = allocateSparcV9TargetMachine;
|
||||
break;
|
||||
case PowerPC:
|
||||
TargetMachineAllocator = allocatePowerPCTargetMachine;
|
||||
@ -109,14 +109,14 @@ int main(int argc, char **argv) {
|
||||
TargetMachineAllocator = allocatePowerPCTargetMachine;
|
||||
} else if (mod.getEndianness() == Module::BigEndian &&
|
||||
mod.getPointerSize() == Module::Pointer64) {
|
||||
TargetMachineAllocator = allocateSparcTargetMachine;
|
||||
TargetMachineAllocator = allocateSparcV9TargetMachine;
|
||||
} else {
|
||||
// If the module is target independent, favor a target which matches the
|
||||
// current build system.
|
||||
#if defined(i386) || defined(__i386__) || defined(__x86__)
|
||||
TargetMachineAllocator = allocateX86TargetMachine;
|
||||
#elif defined(sparc) || defined(__sparc__) || defined(__sparcv9)
|
||||
TargetMachineAllocator = allocateSparcTargetMachine;
|
||||
TargetMachineAllocator = allocateSparcV9TargetMachine;
|
||||
#elif defined(__POWERPC__) || defined(__ppc__) || defined(__APPLE__)
|
||||
TargetMachineAllocator = allocatePowerPCTargetMachine;
|
||||
#else
|
||||
|
@ -40,10 +40,10 @@ endif
|
||||
# What the Sparc JIT requires
|
||||
ifdef ENABLE_SPARC_JIT
|
||||
CPPFLAGS += -DENABLE_SPARC_JIT
|
||||
JITLIBS += sparc
|
||||
ARCHLIBS += sched livevar instrument.a profpaths \
|
||||
bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \
|
||||
select
|
||||
JITLIBS += sparcv9
|
||||
ARCHLIBS += sched sparcv9livevar instrument.a profpaths \
|
||||
bcwriter transforms.a ipo.a ipa.a datastructure.a \
|
||||
sparcv9regalloc sparcv9select
|
||||
endif
|
||||
|
||||
USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \
|
||||
|
@ -41,10 +41,10 @@ endif
|
||||
# What the Sparc JIT requires
|
||||
ifdef ENABLE_SPARC_JIT
|
||||
CPPFLAGS += -DENABLE_SPARC_JIT
|
||||
JITLIBS += sparc
|
||||
ARCHLIBS += sched livevar instrument.a profpaths \
|
||||
bcwriter transforms.a ipo.a ipa.a datastructure.a regalloc \
|
||||
select
|
||||
JITLIBS += sparcv9
|
||||
ARCHLIBS += sched sparcv9livevar instrument.a profpaths \
|
||||
bcwriter transforms.a ipo.a ipa.a datastructure.a \
|
||||
sparcv9regalloc sparcv9select
|
||||
endif
|
||||
|
||||
USEDLIBS = lli-interpreter $(JITLIBS) $(ARCHLIBS) scalaropts analysis.a \
|
||||
|
Loading…
x
Reference in New Issue
Block a user