blob: aaddbff073ad552134f6d9962cbba0e5d9839da4 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- SparcSubtarget.cpp - SPARC Subtarget Information -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the SPARC specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SparcSubtarget.h"
15#include "SparcGenSubtarget.inc"
16using namespace llvm;
17
18// FIXME: temporary.
19#include "llvm/Support/CommandLine.h"
20namespace {
21 cl::opt<bool> EnableV9("enable-sparc-v9-insts", cl::Hidden,
22 cl::desc("Enable V9 instructions in the V8 target"));
23}
24
25SparcSubtarget::SparcSubtarget(const Module &M, const std::string &FS) {
26 // Set the default features.
27 IsV9 = false;
28 V8DeprecatedInsts = false;
29 IsVIS = false;
30
31 // Determine default and user specified characteristics
32 std::string CPU = "generic";
33
34 // FIXME: autodetect host here!
35 CPU = "v9"; // What is a good way to detect V9?
36
37 // Parse features string.
38 ParseSubtargetFeatures(FS, CPU);
39
40 // Unless explicitly enabled, disable the V9 instructions.
41 if (!EnableV9)
42 IsV9 = false;
43}