7032d7f3fb0919bcaee377b7b2441d30cb89bb67
[oota-llvm.git] / lib / Target / Sparc / SparcSubtarget.cpp
1 //===-- SparcSubtarget.cpp - SPARC Subtarget Information ------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the SPARC specific subclass of TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "SparcSubtarget.h"
15 #include "Sparc.h"
16 #include "llvm/Support/MathExtras.h"
17 #include "llvm/Support/TargetRegistry.h"
18
19 #define GET_SUBTARGETINFO_TARGET_DESC
20 #define GET_SUBTARGETINFO_CTOR
21 #include "SparcGenSubtargetInfo.inc"
22
23 using namespace llvm;
24
25 void SparcSubtarget::anchor() { }
26
27 SparcSubtarget::SparcSubtarget(const std::string &TT, const std::string &CPU,
28                                const std::string &FS,  bool is64Bit) :
29   SparcGenSubtargetInfo(TT, CPU, FS),
30   IsV9(false),
31   V8DeprecatedInsts(false),
32   IsVIS(false),
33   Is64Bit(is64Bit),
34   HasHardQuad(false) {
35
36   // Determine default and user specified characteristics
37   std::string CPUName = CPU;
38   if (CPUName.empty())
39     CPUName = (is64Bit) ? "v9" : "v8";
40
41   // Parse features string.
42   ParseSubtargetFeatures(CPUName, FS);
43 }
44
45
46 int SparcSubtarget::getAdjustedFrameSize(int frameSize) const {
47
48   if (is64Bit()) {
49     // All 64-bit stack frames must be 16-byte aligned, and must reserve space
50     // for spilling the 16 window registers at %sp+BIAS..%sp+BIAS+128.
51     frameSize += 128;
52     // Frames with calls must also reserve space for 6 outgoing arguments
53     // whether they are used or not. LowerCall_64 takes care of that.
54     assert(frameSize % 16 == 0 && "Stack size not 16-byte aligned");
55   } else {
56     // Emit the correct save instruction based on the number of bytes in
57     // the frame. Minimum stack frame size according to V8 ABI is:
58     //   16 words for register window spill
59     //    1 word for address of returned aggregate-value
60     // +  6 words for passing parameters on the stack
61     // ----------
62     //   23 words * 4 bytes per word = 92 bytes
63     frameSize += 92;
64
65     // Round up to next doubleword boundary -- a double-word boundary
66     // is required by the ABI.
67     frameSize = RoundUpToAlignment(frameSize, 8);
68   }
69   return frameSize;
70 }