blob: 735790c237ea7a182a2c53b3ef081cb7bab1ff7c [file] [log] [blame]
Dale Johannesen67cf5612007-05-02 01:02:40 +00001
Jim Laskey8e8de8f2006-09-07 22:05:02 +00002//===-- ARMTargetAsmInfo.cpp - ARM asm properties ---------------*- C++ -*-===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file was developed by James M. Laskey and is distributed under the
7// University of Illinois Open Source License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10//
11// This file contains the declarations of the ARMTargetAsmInfo properties.
12//
13//===----------------------------------------------------------------------===//
14
15#include "ARMTargetAsmInfo.h"
Evan Chenga8e29892007-01-19 07:51:42 +000016#include "ARMTargetMachine.h"
Dale Johannesen24fb52d2007-04-23 20:04:35 +000017#include <cstring>
18#include <cctype>
Jim Laskey8e8de8f2006-09-07 22:05:02 +000019using namespace llvm;
20
21ARMTargetAsmInfo::ARMTargetAsmInfo(const ARMTargetMachine &TM) {
Dale Johannesen67cf5612007-05-02 01:02:40 +000022 Subtarget = &TM.getSubtarget<ARMSubtarget>();
Evan Chenge433ea92007-01-19 19:23:47 +000023 if (Subtarget->isTargetDarwin()) {
Evan Chenga8e29892007-01-19 07:51:42 +000024 GlobalPrefix = "_";
Evan Chenge433ea92007-01-19 19:23:47 +000025 PrivateGlobalPrefix = "L";
26 BSSSection = 0; // no BSS section.
27 ZeroFillDirective = "\t.zerofill\t"; // Uses .zerofill
Evan Chenga8e29892007-01-19 07:51:42 +000028 SetDirective = "\t.set";
29 WeakRefDirective = "\t.weak_reference\t";
Evan Chenga6f567c2007-01-23 19:06:03 +000030 HiddenDirective = "\t.private_extern\t";
Lauro Ramos Venancio0a181732007-04-30 00:23:51 +000031 ProtectedDirective = NULL;
Evan Chenga8e29892007-01-19 07:51:42 +000032 JumpTableDataSection = ".const";
33 CStringSection = "\t.cstring";
Evan Cheng98ded762007-03-08 01:25:25 +000034 FourByteConstantSection = "\t.literal4\n";
35 EightByteConstantSection = "\t.literal8\n";
36 ReadOnlySection = "\t.const\n";
Evan Chenge433ea92007-01-19 19:23:47 +000037 HasDotTypeDotSizeDirective = false;
Evan Chengb267ca12007-01-30 08:04:53 +000038 if (TM.getRelocationModel() == Reloc::Static) {
39 StaticCtorsSection = ".constructor";
40 StaticDtorsSection = ".destructor";
41 } else {
42 StaticCtorsSection = ".mod_init_func";
43 StaticDtorsSection = ".mod_term_func";
44 }
Evan Chenga8e29892007-01-19 07:51:42 +000045
Evan Cheng8e1185b2007-01-19 18:59:56 +000046 // In non-PIC modes, emit a special label before jump tables so that the
47 // linker can perform more accurate dead code stripping.
48 if (TM.getRelocationModel() != Reloc::PIC_) {
49 // Emit a local label that is preserved until the linker runs.
50 JumpTableSpecialLabelPrefix = "l";
51 }
52
Evan Chenga8e29892007-01-19 07:51:42 +000053 NeedsSet = true;
54 DwarfAbbrevSection = ".section __DWARF,__debug_abbrev,regular,debug";
55 DwarfInfoSection = ".section __DWARF,__debug_info,regular,debug";
56 DwarfLineSection = ".section __DWARF,__debug_line,regular,debug";
57 DwarfFrameSection = ".section __DWARF,__debug_frame,regular,debug";
58 DwarfPubNamesSection = ".section __DWARF,__debug_pubnames,regular,debug";
59 DwarfPubTypesSection = ".section __DWARF,__debug_pubtypes,regular,debug";
60 DwarfStrSection = ".section __DWARF,__debug_str,regular,debug";
61 DwarfLocSection = ".section __DWARF,__debug_loc,regular,debug";
62 DwarfARangesSection = ".section __DWARF,__debug_aranges,regular,debug";
63 DwarfRangesSection = ".section __DWARF,__debug_ranges,regular,debug";
64 DwarfMacInfoSection = ".section __DWARF,__debug_macinfo,regular,debug";
65 } else {
Lauro Ramos Venancioc33f6742007-02-01 21:43:53 +000066 PrivateGlobalPrefix = ".L";
Evan Chenga8e29892007-01-19 07:51:42 +000067 WeakRefDirective = "\t.weak\t";
Lauro Ramos Venancio6d7dd8e2007-03-05 17:59:58 +000068 if (Subtarget->isAAPCS_ABI()) {
69 StaticCtorsSection = "\t.section .init_array,\"aw\",%init_array";
70 StaticDtorsSection = "\t.section .fini_array,\"aw\",%fini_array";
71 } else {
72 StaticCtorsSection = "\t.section .ctors,\"aw\",%progbits";
73 StaticDtorsSection = "\t.section .dtors,\"aw\",%progbits";
74 }
Lauro Ramos Venancio64f4fa52007-04-27 13:54:47 +000075 TLSDataSection = "\t.section .tdata,\"awT\",%progbits";
76 TLSBSSSection = "\t.section .tbss,\"awT\",%nobits";
Evan Chenga8e29892007-01-19 07:51:42 +000077 }
Lauro Ramos Venancioea9fc582007-01-26 23:24:43 +000078
79 ZeroDirective = "\t.space\t";
80 AlignmentIsInBytes = false;
Jim Laskey8e8de8f2006-09-07 22:05:02 +000081 Data64bitsDirective = 0;
Jim Laskey8e8de8f2006-09-07 22:05:02 +000082 CommentString = "@";
Evan Chenga8e29892007-01-19 07:51:42 +000083 DataSection = "\t.data";
Jim Laskey8e8de8f2006-09-07 22:05:02 +000084 ConstantPoolSection = "\t.text\n";
Lauro Ramos Venancioea9fc582007-01-26 23:24:43 +000085 COMMDirectiveTakesAlignment = false;
86 InlineAsmStart = "@ InlineAsm Start";
87 InlineAsmEnd = "@ InlineAsm End";
88 LCOMMDirective = "\t.lcomm\t";
Dale Johannesen67cf5612007-05-02 01:02:40 +000089}
90
91/// Count the number of comma-separated arguments.
92/// Do not try to detect errors.
93unsigned ARMTargetAsmInfo::countArguments(const char* p) const {
94 unsigned count = 0;
95 while (*p && isspace(*p) && *p != '\n')
96 p++;
97 count++;
98 while (*p && *p!='\n' &&
99 strncmp(p, CommentString, strlen(CommentString))!=0) {
100 if (*p==',')
101 count++;
102 p++;
103 }
104 return count;
105}
106
107/// Count the length of a string enclosed in quote characters.
108/// Do not try to detect errors.
109unsigned ARMTargetAsmInfo::countString(const char* p) const {
110 unsigned count = 0;
111 while (*p && isspace(*p) && *p!='\n')
112 p++;
113 if (!*p || *p != '\"')
114 return count;
115 while (*++p && *p != '\"')
116 count++;
117 return count;
Jim Laskey8e8de8f2006-09-07 22:05:02 +0000118}
Dale Johannesen86501992007-04-29 19:17:45 +0000119
120/// ARM-specific version of TargetAsmInfo::getInlineAsmLength.
121unsigned ARMTargetAsmInfo::getInlineAsmLength(const char *Str) const {
122 // Count the number of bytes in the asm.
123 bool atInsnStart = true;
Dale Johannesen67cf5612007-05-02 01:02:40 +0000124 bool inTextSection = true;
Dale Johannesen86501992007-04-29 19:17:45 +0000125 unsigned Length = 0;
126 for (; *Str; ++Str) {
127 if (atInsnStart) {
128 // Skip whitespace
129 while (*Str && isspace(*Str) && *Str != '\n')
130 Str++;
131 // Skip label
132 for (const char* p = Str; *p && !isspace(*p); p++)
133 if (*p == ':') {
134 Str = p+1;
Dale Johannesen67cf5612007-05-02 01:02:40 +0000135 while (*Str && isspace(*Str) && *Str != '\n')
136 Str++;
Dale Johannesen86501992007-04-29 19:17:45 +0000137 break;
138 }
139 // Ignore everything from comment char(s) to EOL
140 if (strncmp(Str, CommentString, strlen(CommentString))==-0)
141 atInsnStart = false;
Dale Johannesen67cf5612007-05-02 01:02:40 +0000142 // FIXME do something like the following for non-Darwin
143 else if (*Str == '.' && Subtarget->isTargetDarwin()) {
144 // Directive.
145 atInsnStart = false;
146 // Some change the section, but don't generate code.
147 if (strncasecmp(Str, ".literal4", strlen(".literal4"))==0 ||
148 strncasecmp(Str, ".literal8", strlen(".literal8"))==0 ||
149 strncasecmp(Str, ".const", strlen(".const"))==0 ||
150 strncasecmp(Str, ".constructor", strlen(".constructor"))==0 ||
151 strncasecmp(Str, ".cstring", strlen(".cstring"))==0 ||
152 strncasecmp(Str, ".data", strlen(".data"))==0 ||
153 strncasecmp(Str, ".destructor", strlen(".destructor"))==0 ||
154 strncasecmp(Str, ".fvmlib_init0", strlen(".fvmlib_init0"))==0 ||
155 strncasecmp(Str, ".fvmlib_init1", strlen(".fvmlib_init1"))==0 ||
156 strncasecmp(Str, ".mod_init_func", strlen(".mod_init_func"))==0 ||
157 strncasecmp(Str, ".mod_term_func", strlen(".mod_term_func"))==0 ||
158 strncasecmp(Str, ".picsymbol_stub", strlen(".picsymbol_stub"))==0 ||
159 strncasecmp(Str, ".symbol_stub", strlen(".symbol_stub"))==0 ||
160 strncasecmp(Str, ".static_data", strlen(".static_data"))==0 ||
161 strncasecmp(Str, ".section", strlen(".section"))==0 ||
162 strncasecmp(Str, ".lazy_symbol_pointer", strlen(".lazy_symbol_pointer"))==0 ||
163 strncasecmp(Str, ".non_lazy_symbol_pointer", strlen(".non_lazy_symbol_pointer"))==0 ||
164 strncasecmp(Str, ".dyld", strlen(".dyld"))==0 ||
165 strncasecmp(Str, ".const_data", strlen(".const_data"))==0 ||
166 strncasecmp(Str, ".objc", strlen(".objc"))==0 || //// many directives
167 strncasecmp(Str, ".static_const", strlen(".static_const"))==0)
168 inTextSection=false;
169 else if (strncasecmp(Str, ".text", strlen(".text"))==0)
170 inTextSection = true;
171 // Some can't really be handled without implementing significant pieces
172 // of an assembler. Others require dynamic adjustment of block sizes in
173 // AdjustBBOffsetsAfter; it's a big compile-time speed hit to check every
174 // instruction in there, and none of these are currently used in the kernel.
175 else if (strncasecmp(Str, ".macro", strlen(".macro"))==0 ||
176 strncasecmp(Str, ".if", strlen(".if"))==0 ||
177 strncasecmp(Str, ".align", strlen(".align"))==0 ||
178 strncasecmp(Str, ".fill", strlen(".fill"))==0 ||
179 strncasecmp(Str, ".space", strlen(".space"))==0 ||
180 strncasecmp(Str, ".zerofill", strlen(".zerofill"))==0 ||
181 strncasecmp(Str, ".p2align", strlen(".p2align"))==0 ||
182 strncasecmp(Str, ".p2alignw", strlen(".p2alignw"))==0 ||
183 strncasecmp(Str, ".p2alignl", strlen(".p2alignl"))==0 ||
184 strncasecmp(Str, ".align32", strlen(".p2align32"))==0 ||
185 strncasecmp(Str, ".include", strlen(".include"))==0)
186 cerr << "Directive " << Str << " in asm may lead to invalid offsets for" <<
187 " constant pools (the assembler will tell you if this happens).\n";
188 // Some generate code, but this is only interesting in the text section.
189 else if (inTextSection) {
190 if (strncasecmp(Str, ".long", strlen(".long"))==0)
191 Length += 4*countArguments(Str+strlen(".long"));
192 else if (strncasecmp(Str, ".short", strlen(".short"))==0)
193 Length += 2*countArguments(Str+strlen(".short"));
194 else if (strncasecmp(Str, ".byte", strlen(".byte"))==0)
195 Length += 1*countArguments(Str+strlen(".byte"));
196 else if (strncasecmp(Str, ".single", strlen(".single"))==0)
197 Length += 4*countArguments(Str+strlen(".single"));
198 else if (strncasecmp(Str, ".double", strlen(".double"))==0)
199 Length += 8*countArguments(Str+strlen(".double"));
200 else if (strncasecmp(Str, ".quad", strlen(".quad"))==0)
201 Length += 16*countArguments(Str+strlen(".quad"));
202 else if (strncasecmp(Str, ".ascii", strlen(".ascii"))==0)
203 Length += countString(Str+strlen(".ascii"));
204 else if (strncasecmp(Str, ".asciz", strlen(".asciz"))==0)
205 Length += countString(Str+strlen(".asciz"))+1;
206 }
207 } else if (inTextSection) {
Dale Johannesen86501992007-04-29 19:17:45 +0000208 // An instruction
209 atInsnStart = false;
Dale Johannesen67cf5612007-05-02 01:02:40 +0000210 if (Subtarget->isThumb()) {
Dale Johannesen86501992007-04-29 19:17:45 +0000211 // BL and BLX <non-reg> are 4 bytes, all others 2.
Dale Johannesen67cf5612007-05-02 01:02:40 +0000212 if (strncasecmp(Str, "blx", strlen("blx"))==0) {
213 const char* p = Str+3;
214 while (*p && isspace(*p))
215 p++;
216 if (*p == 'r' || *p=='R')
217 Length += 2; // BLX reg
Dale Johannesen86501992007-04-29 19:17:45 +0000218 else
Dale Johannesen67cf5612007-05-02 01:02:40 +0000219 Length += 4; // BLX non-reg
220 } else if (strncasecmp(Str, "bl", strlen("bl"))==0)
221 Length += 4; // BL
222 else
Dale Johannesen86501992007-04-29 19:17:45 +0000223 Length += 2; // Thumb anything else
224 }
225 else
226 Length += 4; // ARM
227 }
228 }
229 if (*Str == '\n' || *Str == SeparatorChar)
230 atInsnStart = true;
231 }
232 return Length;
233}