LLVM 20.0.0git
SparcSubtarget.cpp
Go to the documentation of this file.
1//===-- SparcSubtarget.cpp - SPARC Subtarget Information ------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the SPARC specific subclass of TargetSubtargetInfo.
10//
11//===----------------------------------------------------------------------===//
12
13#include "SparcSubtarget.h"
14#include "llvm/ADT/StringRef.h"
17
18using namespace llvm;
19
20#define DEBUG_TYPE "sparc-subtarget"
21
22#define GET_SUBTARGETINFO_TARGET_DESC
23#define GET_SUBTARGETINFO_CTOR
24#include "SparcGenSubtargetInfo.inc"
25
26void SparcSubtarget::anchor() { }
27
29 StringRef CPU, StringRef TuneCPU, StringRef FS) {
30 // Determine default and user specified characteristics
31 std::string CPUName = std::string(CPU);
32 if (CPUName.empty())
33 CPUName = (Is64Bit) ? "v9" : "v8";
34
35 if (TuneCPU.empty())
36 TuneCPU = CPUName;
37
38 // Parse features string.
39 ParseSubtargetFeatures(CPUName, TuneCPU, FS);
40
41 // Popc is a v9-only instruction.
42 if (!IsV9)
43 UsePopc = false;
44
45 return *this;
46}
47
49 const StringRef &FS, const TargetMachine &TM,
50 bool is64Bit)
51 : SparcGenSubtargetInfo(TM.getTargetTriple(), CPU, TuneCPU, FS),
52 ReserveRegister(TM.getMCRegisterInfo()->getNumRegs()),
53 TargetTriple(TM.getTargetTriple()), Is64Bit(is64Bit),
54 InstrInfo(initializeSubtargetDependencies(CPU, TuneCPU, FS)),
55 TLInfo(TM, *this), FrameLowering(*this) {}
56
57int SparcSubtarget::getAdjustedFrameSize(int frameSize) const {
58
59 if (is64Bit()) {
60 // All 64-bit stack frames must be 16-byte aligned, and must reserve space
61 // for spilling the 16 window registers at %sp+BIAS..%sp+BIAS+128.
62 frameSize += 128;
63 // Frames with calls must also reserve space for 6 outgoing arguments
64 // whether they are used or not. LowerCall_64 takes care of that.
65 frameSize = alignTo(frameSize, 16);
66 } else {
67 // Emit the correct save instruction based on the number of bytes in
68 // the frame. Minimum stack frame size according to V8 ABI is:
69 // 16 words for register window spill
70 // 1 word for address of returned aggregate-value
71 // + 6 words for passing parameters on the stack
72 // ----------
73 // 23 words * 4 bytes per word = 92 bytes
74 frameSize += 92;
75
76 // Round up to next doubleword boundary -- a double-word boundary
77 // is required by the ABI.
78 frameSize = alignTo(frameSize, 8);
79 }
80 return frameSize;
81}
82
84 return true;
85}
static bool is64Bit(const char *name)
SparcSubtarget(const StringRef &CPU, const StringRef &TuneCPU, const StringRef &FS, const TargetMachine &TM, bool is64bit)
int getAdjustedFrameSize(int stackSize) const
Given a actual stack size as determined by FrameInfo, this function returns adjusted framesize which ...
bool enableMachineScheduler() const override
bool is64Bit() const
void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS)
ParseSubtargetFeatures - Parses features string setting specified subtarget options.
SparcSubtarget & initializeSubtargetDependencies(StringRef CPU, StringRef TuneCPU, StringRef FS)
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:147
Primary interface to the complete machine description for the target machine.
Definition: TargetMachine.h:77
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition: Alignment.h:155