Latency information for ARM v6. It's rough and not yet hooked up. Right now we are...
[oota-llvm.git] / lib / Target / ARM / ARMTargetAsmInfo.cpp
1 //===-- ARMTargetAsmInfo.cpp - ARM asm properties ---------------*- 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 contains the declarations of the ARMTargetAsmInfo properties.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "ARMTargetAsmInfo.h"
15 #include "ARMTargetMachine.h"
16 #include <cstring>
17 #include <cctype>
18 using namespace llvm;
19
20 const char *const llvm::arm_asm_table[] = {
21   "{r0}", "r0",
22   "{r1}", "r1",
23   "{r2}", "r2",
24   "{r3}", "r3",
25   "{r4}", "r4",
26   "{r5}", "r5",
27   "{r6}", "r6",
28   "{r7}", "r7",
29   "{r8}", "r8",
30   "{r9}", "r9",
31   "{r10}", "r10",
32   "{r11}", "r11",
33   "{r12}", "r12",
34   "{r13}", "r13",
35   "{r14}", "r14",
36   "{lr}", "lr",
37   "{sp}", "sp",
38   "{ip}", "ip",
39   "{fp}", "fp",
40   "{sl}", "sl",
41   "{memory}", "memory",
42   "{cc}", "cc",
43   0,0
44 };
45
46 ARMDarwinTargetAsmInfo::ARMDarwinTargetAsmInfo(const ARMTargetMachine &TM):
47   ARMTargetAsmInfo<DarwinTargetAsmInfo>(TM) {
48   Subtarget = &TM.getSubtarget<ARMSubtarget>();
49
50   ZeroDirective = "\t.space\t";
51   ZeroFillDirective = "\t.zerofill\t";  // Uses .zerofill
52   SetDirective = "\t.set\t";
53   ProtectedDirective = NULL;
54   HasDotTypeDotSizeDirective = false;
55 }
56
57 ARMELFTargetAsmInfo::ARMELFTargetAsmInfo(const ARMTargetMachine &TM):
58   ARMTargetAsmInfo<ELFTargetAsmInfo>(TM) {
59   Subtarget = &TM.getSubtarget<ARMSubtarget>();
60
61   NeedsSet = false;
62   HasLEB128 = true;
63   AbsoluteDebugSectionOffsets = true;
64   CStringSection = ".rodata.str";
65   PrivateGlobalPrefix = ".L";
66   WeakRefDirective = "\t.weak\t";
67   SetDirective = "\t.set\t";
68   DwarfRequiresFrameSection = false;
69   DwarfAbbrevSection =  "\t.section\t.debug_abbrev,\"\",%progbits";
70   DwarfInfoSection =    "\t.section\t.debug_info,\"\",%progbits";
71   DwarfLineSection =    "\t.section\t.debug_line,\"\",%progbits";
72   DwarfFrameSection =   "\t.section\t.debug_frame,\"\",%progbits";
73   DwarfPubNamesSection ="\t.section\t.debug_pubnames,\"\",%progbits";
74   DwarfPubTypesSection ="\t.section\t.debug_pubtypes,\"\",%progbits";
75   DwarfStrSection =     "\t.section\t.debug_str,\"\",%progbits";
76   DwarfLocSection =     "\t.section\t.debug_loc,\"\",%progbits";
77   DwarfARangesSection = "\t.section\t.debug_aranges,\"\",%progbits";
78   DwarfRangesSection =  "\t.section\t.debug_ranges,\"\",%progbits";
79   DwarfMacroInfoSection = "\t.section\t.debug_macinfo,\"\",%progbits";
80
81   if (Subtarget->isAAPCS_ABI()) {
82     StaticCtorsSection = "\t.section .init_array,\"aw\",%init_array";
83     StaticDtorsSection = "\t.section .fini_array,\"aw\",%fini_array";
84   } else {
85     StaticCtorsSection = "\t.section .ctors,\"aw\",%progbits";
86     StaticDtorsSection = "\t.section .dtors,\"aw\",%progbits";
87   }
88 }
89
90 /// Count the number of comma-separated arguments.
91 /// Do not try to detect errors.
92 template <class BaseTAI>
93 unsigned ARMTargetAsmInfo<BaseTAI>::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, BaseTAI::CommentString,
100                  strlen(BaseTAI::CommentString))!=0) {
101     if (*p==',')
102       count++;
103     p++;
104   }
105   return count;
106 }
107
108 /// Count the length of a string enclosed in quote characters.
109 /// Do not try to detect errors.
110 template <class BaseTAI>
111 unsigned ARMTargetAsmInfo<BaseTAI>::countString(const char* p) const {
112   unsigned count = 0;
113   while (*p && isspace(*p) && *p!='\n')
114     p++;
115   if (!*p || *p != '\"')
116     return count;
117   while (*++p && *p != '\"')
118     count++;
119   return count;
120 }
121
122 /// ARM-specific version of TargetAsmInfo::getInlineAsmLength.
123 template <class BaseTAI>
124 unsigned ARMTargetAsmInfo<BaseTAI>::getInlineAsmLength(const char *s) const {
125   // Make a lowercase-folded version of s for counting purposes.
126   char *q, *s_copy = (char *)malloc(strlen(s) + 1);
127   strcpy(s_copy, s);
128   for (q=s_copy; *q; q++)
129     *q = tolower(*q);
130   const char *Str = s_copy;
131
132   // Count the number of bytes in the asm.
133   bool atInsnStart = true;
134   bool inTextSection = true;
135   unsigned Length = 0;
136   for (; *Str; ++Str) {
137     if (atInsnStart) {
138       // Skip whitespace
139       while (*Str && isspace(*Str) && *Str != '\n')
140         Str++;
141       // Skip label
142       for (const char* p = Str; *p && !isspace(*p); p++)
143         if (*p == ':') {
144           Str = p+1;
145           while (*Str && isspace(*Str) && *Str != '\n')
146             Str++;
147           break;
148         }
149       
150       if (*Str == 0) break;
151       
152       // Ignore everything from comment char(s) to EOL
153       if (strncmp(Str, BaseTAI::CommentString,
154                   strlen(BaseTAI::CommentString)) == 0)
155         atInsnStart = false;
156       // FIXME do something like the following for non-Darwin
157       else if (*Str == '.' && Subtarget->isTargetDarwin()) {
158         // Directive.
159         atInsnStart = false;
160
161         // Some change the section, but don't generate code.
162         if (strncmp(Str, ".literal4", strlen(".literal4"))==0 ||
163             strncmp(Str, ".literal8", strlen(".literal8"))==0 ||
164             strncmp(Str, ".const", strlen(".const"))==0 ||
165             strncmp(Str, ".constructor", strlen(".constructor"))==0 ||
166             strncmp(Str, ".cstring", strlen(".cstring"))==0 ||
167             strncmp(Str, ".data", strlen(".data"))==0 ||
168             strncmp(Str, ".destructor", strlen(".destructor"))==0 ||
169             strncmp(Str, ".fvmlib_init0", strlen(".fvmlib_init0"))==0 ||
170             strncmp(Str, ".fvmlib_init1", strlen(".fvmlib_init1"))==0 ||
171             strncmp(Str, ".mod_init_func", strlen(".mod_init_func"))==0 ||
172             strncmp(Str, ".mod_term_func", strlen(".mod_term_func"))==0 ||
173             strncmp(Str, ".picsymbol_stub", strlen(".picsymbol_stub"))==0 ||
174             strncmp(Str, ".symbol_stub", strlen(".symbol_stub"))==0 ||
175             strncmp(Str, ".static_data", strlen(".static_data"))==0 ||
176             strncmp(Str, ".section", strlen(".section"))==0 ||
177             strncmp(Str, ".lazy_symbol_pointer", strlen(".lazy_symbol_pointer"))==0 ||
178             strncmp(Str, ".non_lazy_symbol_pointer", strlen(".non_lazy_symbol_pointer"))==0 ||
179             strncmp(Str, ".dyld", strlen(".dyld"))==0 ||
180             strncmp(Str, ".const_data", strlen(".const_data"))==0 ||
181             strncmp(Str, ".objc", strlen(".objc"))==0 ||       //// many directives
182             strncmp(Str, ".static_const", strlen(".static_const"))==0)
183           inTextSection=false;
184         else if (strncmp(Str, ".text", strlen(".text"))==0)
185           inTextSection = true;
186         // Some can't really be handled without implementing significant pieces
187         // of an assembler.  Others require dynamic adjustment of block sizes in
188         // AdjustBBOffsetsAfter; it's a big compile-time speed hit to check every
189         // instruction in there, and none of these are currently used in the kernel.
190         else if (strncmp(Str, ".macro", strlen(".macro"))==0 ||
191                  strncmp(Str, ".if", strlen(".if"))==0 ||
192                  strncmp(Str, ".align", strlen(".align"))==0 ||
193                  strncmp(Str, ".fill", strlen(".fill"))==0 ||
194                  strncmp(Str, ".space", strlen(".space"))==0 ||
195                  strncmp(Str, ".zerofill", strlen(".zerofill"))==0 ||
196                  strncmp(Str, ".p2align", strlen(".p2align"))==0 ||
197                  strncmp(Str, ".p2alignw", strlen(".p2alignw"))==0 ||
198                  strncmp(Str, ".p2alignl", strlen(".p2alignl"))==0 ||
199                  strncmp(Str, ".align32", strlen(".p2align32"))==0 ||
200                  strncmp(Str, ".include", strlen(".include"))==0)
201           cerr << "Directive " << Str << " in asm may lead to invalid offsets for" <<
202                    " constant pools (the assembler will tell you if this happens).\n";
203         // Some generate code, but this is only interesting in the text section.
204         else if (inTextSection) {
205           if (strncmp(Str, ".long", strlen(".long"))==0)
206             Length += 4*countArguments(Str+strlen(".long"));
207           else if (strncmp(Str, ".short", strlen(".short"))==0)
208             Length += 2*countArguments(Str+strlen(".short"));
209           else if (strncmp(Str, ".byte", strlen(".byte"))==0)
210             Length += 1*countArguments(Str+strlen(".byte"));
211           else if (strncmp(Str, ".single", strlen(".single"))==0)
212             Length += 4*countArguments(Str+strlen(".single"));
213           else if (strncmp(Str, ".double", strlen(".double"))==0)
214             Length += 8*countArguments(Str+strlen(".double"));
215           else if (strncmp(Str, ".quad", strlen(".quad"))==0)
216             Length += 16*countArguments(Str+strlen(".quad"));
217           else if (strncmp(Str, ".ascii", strlen(".ascii"))==0)
218             Length += countString(Str+strlen(".ascii"));
219           else if (strncmp(Str, ".asciz", strlen(".asciz"))==0)
220             Length += countString(Str+strlen(".asciz"))+1;
221         }
222       } else if (inTextSection) {
223         // An instruction
224         atInsnStart = false;
225         if (Subtarget->isThumb()) {
226           // BL and BLX <non-reg> are 4 bytes, all others 2.
227           if (strncmp(Str, "blx", strlen("blx"))==0) {
228             const char* p = Str+3;
229             while (*p && isspace(*p))
230               p++;
231             if (*p == 'r' || *p=='R')
232               Length += 2;    // BLX reg
233             else
234               Length += 4;    // BLX non-reg
235           } else if (strncmp(Str, "bl", strlen("bl"))==0)
236             Length += 4;    // BL
237           else
238             Length += 2;    // Thumb anything else
239         }
240         else
241           Length += 4;    // ARM
242       }
243     }
244     if (*Str == '\n' || *Str == BaseTAI::SeparatorChar)
245       atInsnStart = true;
246   }
247   free(s_copy);
248   return Length;
249 }
250
251 // Instantiate default implementation.
252 TEMPLATE_INSTANTIATION(class ARMTargetAsmInfo<TargetAsmInfo>);