2012-02-18 12:03:15 +00:00
|
|
|
//===-- SparcSubtarget.cpp - SPARC Subtarget Information ------------------===//
|
2006-01-26 06:51:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-01-26 06:51:21 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 21:01:15 +00:00
|
|
|
// This file implements the SPARC specific subclass of TargetSubtargetInfo.
|
2006-01-26 06:51:21 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-02-05 05:50:24 +00:00
|
|
|
#include "SparcSubtarget.h"
|
2011-07-09 05:47:46 +00:00
|
|
|
#include "Sparc.h"
|
2013-06-01 04:51:18 +00:00
|
|
|
#include "llvm/Support/MathExtras.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2014-04-22 02:03:14 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-21 22:55:11 +00:00
|
|
|
#define DEBUG_TYPE "sparc-subtarget"
|
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
2011-07-08 01:53:10 +00:00
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
2011-07-01 22:36:09 +00:00
|
|
|
#include "SparcGenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void SparcSubtarget::anchor() { }
|
|
|
|
|
2014-06-26 22:33:55 +00:00
|
|
|
static std::string computeDataLayout(const SparcSubtarget &ST) {
|
|
|
|
// Sparc is big endian.
|
|
|
|
std::string Ret = "E-m:e";
|
|
|
|
|
|
|
|
// Some ABIs have 32bit pointers.
|
|
|
|
if (!ST.is64Bit())
|
|
|
|
Ret += "-p:32:32";
|
|
|
|
|
|
|
|
// Alignments for 64 bit integers.
|
|
|
|
Ret += "-i64:64";
|
|
|
|
|
|
|
|
// On SparcV9 128 floats are aligned to 128 bits, on others only to 64.
|
|
|
|
// On SparcV9 registers can hold 64 or 32 bits, on others only 32.
|
|
|
|
if (ST.is64Bit())
|
|
|
|
Ret += "-n32:64";
|
|
|
|
else
|
|
|
|
Ret += "-f128:64-n32";
|
|
|
|
|
|
|
|
if (ST.is64Bit())
|
|
|
|
Ret += "-S128";
|
|
|
|
else
|
|
|
|
Ret += "-S64";
|
|
|
|
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
SparcSubtarget &SparcSubtarget::initializeSubtargetDependencies(StringRef CPU,
|
|
|
|
StringRef FS) {
|
|
|
|
IsV9 = false;
|
|
|
|
V8DeprecatedInsts = false;
|
|
|
|
IsVIS = false;
|
|
|
|
HasHardQuad = false;
|
|
|
|
UsePopc = false;
|
2013-06-04 18:33:25 +00:00
|
|
|
|
2006-01-26 06:51:21 +00:00
|
|
|
// Determine default and user specified characteristics
|
2011-06-30 01:53:36 +00:00
|
|
|
std::string CPUName = CPU;
|
2014-01-11 23:56:13 +00:00
|
|
|
if (CPUName.empty())
|
2014-06-26 22:33:55 +00:00
|
|
|
CPUName = (Is64Bit) ? "v9" : "v8";
|
2006-01-26 06:51:21 +00:00
|
|
|
|
|
|
|
// Parse features string.
|
2011-07-07 07:07:08 +00:00
|
|
|
ParseSubtargetFeatures(CPUName, FS);
|
2014-01-26 08:12:34 +00:00
|
|
|
|
|
|
|
// Popc is a v9-only instruction.
|
|
|
|
if (!IsV9)
|
|
|
|
UsePopc = false;
|
2014-06-26 22:33:55 +00:00
|
|
|
|
|
|
|
return *this;
|
2006-05-24 17:04:05 +00:00
|
|
|
}
|
2013-06-01 04:51:18 +00:00
|
|
|
|
2014-06-26 22:33:55 +00:00
|
|
|
SparcSubtarget::SparcSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS, TargetMachine &TM,
|
|
|
|
bool is64Bit)
|
|
|
|
: SparcGenSubtargetInfo(TT, CPU, FS), Is64Bit(is64Bit),
|
|
|
|
DL(computeDataLayout(initializeSubtargetDependencies(CPU, FS))),
|
|
|
|
InstrInfo(*this), TLInfo(TM), TSInfo(DL), FrameLowering(*this) {}
|
2013-06-01 04:51:18 +00:00
|
|
|
|
|
|
|
int SparcSubtarget::getAdjustedFrameSize(int frameSize) const {
|
|
|
|
|
|
|
|
if (is64Bit()) {
|
|
|
|
// All 64-bit stack frames must be 16-byte aligned, and must reserve space
|
|
|
|
// for spilling the 16 window registers at %sp+BIAS..%sp+BIAS+128.
|
|
|
|
frameSize += 128;
|
|
|
|
// Frames with calls must also reserve space for 6 outgoing arguments
|
|
|
|
// whether they are used or not. LowerCall_64 takes care of that.
|
|
|
|
assert(frameSize % 16 == 0 && "Stack size not 16-byte aligned");
|
|
|
|
} else {
|
|
|
|
// Emit the correct save instruction based on the number of bytes in
|
|
|
|
// the frame. Minimum stack frame size according to V8 ABI is:
|
|
|
|
// 16 words for register window spill
|
|
|
|
// 1 word for address of returned aggregate-value
|
|
|
|
// + 6 words for passing parameters on the stack
|
|
|
|
// ----------
|
|
|
|
// 23 words * 4 bytes per word = 92 bytes
|
|
|
|
frameSize += 92;
|
|
|
|
|
|
|
|
// Round up to next doubleword boundary -- a double-word boundary
|
|
|
|
// is required by the ABI.
|
|
|
|
frameSize = RoundUpToAlignment(frameSize, 8);
|
|
|
|
}
|
|
|
|
return frameSize;
|
|
|
|
}
|