edeea2ef8760abba44861855e46341bdeb71420d
[oota-llvm.git] / lib / Target / ARM / ARMSubtarget.cpp
1 //===-- ARMSubtarget.cpp - ARM Subtarget Information ------------*- C++ -*-===//
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 ARM specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARMSubtarget.h"
15 #include "ARMGenSubtarget.inc"
16 #include "llvm/Module.h"
17 using namespace llvm;
18
19 ARMSubtarget::ARMSubtarget(const Module &M, const std::string &FS, bool thumb)
20   : ARMArchVersion(V4T)
21   , ARMFPUType(None)
22   , IsThumb(thumb)
23   , UseThumbBacktraces(false)
24   , IsR9Reserved(false)
25   , stackAlignment(4)
26   , CPUString("generic")
27   , TargetType(isELF) // Default to ELF unless otherwise specified.
28   , TargetABI(ARM_ABI_APCS) {
29   // Determine default and user specified characteristics
30
31   // Parse features string.
32   CPUString = ParseSubtargetFeatures(FS, CPUString);
33
34   // Set the boolean corresponding to the current target triple, or the default
35   // if one cannot be determined, to true.
36   const std::string& TT = M.getTargetTriple();
37   unsigned Len = TT.length();
38   unsigned Idx = 0;
39   if (Len >= 5 && TT.substr(0, 4) == "armv")
40     Idx = 4;
41   else if (Len >= 6 && TT.substr(0, 6) == "thumb") {
42     IsThumb = true;
43     if (Len >= 7 && TT[5] == 'v')
44       Idx = 6;
45   }
46   if (Idx) {
47     unsigned SubVer = TT[Idx];
48     if (SubVer > '4' && SubVer <= '9') {
49       if (SubVer >= '6')
50         ARMArchVersion = V6;
51       else if (SubVer == '5') {
52         ARMArchVersion = V5T;
53         if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == 'e')
54           ARMArchVersion = V5TE;
55       }
56     }
57   }
58
59   if (Len >= 10) {
60     if (TT.find("-darwin") != std::string::npos)
61       // arm-darwin
62       TargetType = isDarwin;
63   } else if (TT.empty()) {
64 #if defined(__APPLE__)
65     TargetType = isDarwin;
66 #endif
67   }
68
69   if (TT.find("eabi") != std::string::npos)
70     TargetABI = ARM_ABI_AAPCS;
71
72   if (isAAPCS_ABI())
73     stackAlignment = 8;
74
75   if (isTargetDarwin()) {
76     UseThumbBacktraces = true;
77     IsR9Reserved = true;
78   }
79 }