mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
d460f57d65
based on TargetType. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24478 91177308-0d34-0410-b5e6-96231b3b80d8
50 lines
1.6 KiB
C++
50 lines
1.6 KiB
C++
//===-- X86Subtarget.cpp - X86 Subtarget Information ------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by Nate Begeman and is distributed under the
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file implements the X86 specific subclass of TargetSubtarget.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "X86Subtarget.h"
|
|
#include "llvm/Module.h"
|
|
using namespace llvm;
|
|
|
|
X86Subtarget::X86Subtarget(const Module &M, const std::string &FS)
|
|
: stackAlignment(8), indirectExternAndWeakGlobals(false) {
|
|
|
|
// Default to ELF unless otherwise specified.
|
|
TargetType = isELF;
|
|
|
|
// Set the boolean corresponding to the current target triple, or the default
|
|
// if one cannot be determined, to true.
|
|
const std::string& TT = M.getTargetTriple();
|
|
if (TT.length() > 5) {
|
|
if (TT.find("cygwin") != std::string::npos ||
|
|
TT.find("mingw") != std::string::npos)
|
|
TargetType = isCygwin;
|
|
else if (TT.find("darwin") != std::string::npos)
|
|
TargetType = isDarwin;
|
|
else if (TT.find("win32") != std::string::npos)
|
|
TargetType = isWindows;
|
|
} else if (TT.empty()) {
|
|
#if defined(__CYGWIN__) || defined(__MINGW32__)
|
|
TargetType = isCygwin;
|
|
#elif defined(__APPLE__)
|
|
TargetType = isDarwin;
|
|
#elif defined(_WIN32)
|
|
TargetType = isWindows;
|
|
#endif
|
|
}
|
|
|
|
if (TargetType == isDarwin) {
|
|
stackAlignment = 16;
|
|
indirectExternAndWeakGlobals = true;
|
|
}
|
|
}
|