mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
3.4 on Sparc64 (commit descriptions left out for brevity): r196755 r198028 r198029 r198030 r198145 r198149 r198157 r198565 r199186 r199187 r198280 r198281 r198286 r198480 r198484 r198533 r198567 r198580 r198591 r198592 r198658 r198681 r198738 r198739 r198740 r198893 r198909 r198910 r199014 r199024 r199028 r199031 r199033 r199061 r199775 r199781 r199786 r199940 r199974 r199975 r199977 r200103 r200104 r200112 r200130 r200131 r200141 r200282 r200368 r200373 r200376 r200509 r200617 r200960 r200961 r200962 r200963 r200965 Submitted by: rdivacky
75 lines
2.2 KiB
C++
75 lines
2.2 KiB
C++
//===-- SparcSubtarget.h - Define Subtarget for the SPARC -------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file declares the SPARC specific subclass of TargetSubtargetInfo.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SPARC_SUBTARGET_H
|
|
#define SPARC_SUBTARGET_H
|
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
|
#include <string>
|
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
|
#include "SparcGenSubtargetInfo.inc"
|
|
|
|
namespace llvm {
|
|
class StringRef;
|
|
|
|
class SparcSubtarget : public SparcGenSubtargetInfo {
|
|
virtual void anchor();
|
|
bool IsV9;
|
|
bool V8DeprecatedInsts;
|
|
bool IsVIS;
|
|
bool Is64Bit;
|
|
bool HasHardQuad;
|
|
bool UsePopc;
|
|
|
|
public:
|
|
SparcSubtarget(const std::string &TT, const std::string &CPU,
|
|
const std::string &FS, bool is64bit);
|
|
|
|
bool isV9() const { return IsV9; }
|
|
bool isVIS() const { return IsVIS; }
|
|
bool useDeprecatedV8Instructions() const { return V8DeprecatedInsts; }
|
|
bool hasHardQuad() const { return HasHardQuad; }
|
|
bool usePopc() const { return UsePopc; }
|
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
|
|
|
bool is64Bit() const { return Is64Bit; }
|
|
std::string getDataLayout() const {
|
|
const char *p;
|
|
if (is64Bit()) {
|
|
p = "E-p:64:64:64-i64:64:64-f64:64:64-f128:128:128-n32:64";
|
|
} else {
|
|
p = "E-p:32:32:32-i64:64:64-f64:64:64-f128:64:64-n32";
|
|
}
|
|
return std::string(p);
|
|
}
|
|
|
|
/// The 64-bit ABI uses biased stack and frame pointers, so the stack frame
|
|
/// of the current function is the area from [%sp+BIAS] to [%fp+BIAS].
|
|
int64_t getStackPointerBias() const {
|
|
return is64Bit() ? 2047 : 0;
|
|
}
|
|
|
|
/// Given a actual stack size as determined by FrameInfo, this function
|
|
/// returns adjusted framesize which includes space for register window
|
|
/// spills and arguments.
|
|
int getAdjustedFrameSize(int stackSize) const;
|
|
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|