blob: 6c501cff6a3ababd48215ab6c9625220720df910 [file] [log] [blame]
John Bauman89401822014-05-06 15:04:28 -04001//===- 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//
John Bauman19bac1e2014-05-06 15:23:49 -040010// This file implements the SPARC specific subclass of TargetSubtargetInfo.
John Bauman89401822014-05-06 15:04:28 -040011//
12//===----------------------------------------------------------------------===//
13
14#include "SparcSubtarget.h"
John Bauman19bac1e2014-05-06 15:23:49 -040015#include "Sparc.h"
16#include "llvm/Support/TargetRegistry.h"
17
18#define GET_SUBTARGETINFO_TARGET_DESC
19#define GET_SUBTARGETINFO_CTOR
20#include "SparcGenSubtargetInfo.inc"
21
John Bauman89401822014-05-06 15:04:28 -040022using namespace llvm;
23
John Bauman19bac1e2014-05-06 15:23:49 -040024SparcSubtarget::SparcSubtarget(const std::string &TT, const std::string &CPU,
25 const std::string &FS, bool is64Bit) :
26 SparcGenSubtargetInfo(TT, CPU, FS),
John Bauman89401822014-05-06 15:04:28 -040027 IsV9(false),
28 V8DeprecatedInsts(false),
29 IsVIS(false),
30 Is64Bit(is64Bit) {
31
32 // Determine default and user specified characteristics
John Bauman19bac1e2014-05-06 15:23:49 -040033 std::string CPUName = CPU;
34 if (CPUName.empty()) {
35 if (is64Bit)
36 CPUName = "v9";
37 else
38 CPUName = "v8";
John Bauman89401822014-05-06 15:04:28 -040039 }
John Bauman19bac1e2014-05-06 15:23:49 -040040 IsV9 = CPUName == "v9";
John Bauman89401822014-05-06 15:04:28 -040041
42 // Parse features string.
John Bauman19bac1e2014-05-06 15:23:49 -040043 ParseSubtargetFeatures(CPUName, FS);
John Bauman89401822014-05-06 15:04:28 -040044}