1 //===-- ARMSubtarget.cpp - ARM Subtarget Information ------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the ARM specific subclass of TargetSubtarget.
12 //===----------------------------------------------------------------------===//
14 #include "ARMSubtarget.h"
15 #include "ARMGenSubtarget.inc"
16 #include "llvm/Module.h"
19 ARMSubtarget::ARMSubtarget(const Module
&M
, const std::string
&FS
, bool thumb
)
23 , UseThumbBacktraces(false)
26 , TargetType(isELF
) // Default to ELF unless otherwise specified.
27 , TargetABI(ARM_ABI_APCS
) {
29 // Determine default and user specified characteristics
30 std::string CPU
= "generic";
32 // Parse features string.
33 ParseSubtargetFeatures(FS
, CPU
);
35 // Set the boolean corresponding to the current target triple, or the default
36 // if one cannot be determined, to true.
37 const std::string
& TT
= M
.getTargetTriple();
38 unsigned Len
= TT
.length();
40 if (Len
>= 5 && TT
.substr(0, 4) == "armv")
42 else if (Len
>= 6 && TT
.substr(0, 6) == "thumb") {
44 if (Len
>= 7 && TT
[5] == 'v')
48 unsigned SubVer
= TT
[Idx
];
49 if (SubVer
> '4' && SubVer
<= '9') {
52 else if (SubVer
== '5') {
54 if (Len
>= Idx
+3 && TT
[Idx
+1] == 't' && TT
[Idx
+2] == 'e')
55 ARMArchVersion
= V5TE
;
61 if (TT
.find("-darwin") != std::string::npos
)
63 TargetType
= isDarwin
;
64 } else if (TT
.empty()) {
65 #if defined(__APPLE__)
66 TargetType
= isDarwin
;
70 if (TT
.find("eabi") != std::string::npos
)
71 TargetABI
= ARM_ABI_AAPCS
;
76 if (isTargetDarwin()) {
77 UseThumbBacktraces
= true;