remove a dead bool.
[llvm/avr.git] / lib / Target / PIC16 / PIC16.h
blob8a3704d7071e0fd6db830a0d3ecd8cb7e91f9287
1 //===-- PIC16.h - Top-level interface for PIC16 representation --*- 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 entry points for global functions defined in
11 // the LLVM PIC16 back-end.
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_TARGET_PIC16_H
16 #define LLVM_TARGET_PIC16_H
18 #include "llvm/Support/ErrorHandling.h"
19 #include "llvm/Target/TargetMachine.h"
20 #include <cassert>
21 #include <sstream>
22 #include <cstring>
23 #include <string>
25 namespace llvm {
26 class PIC16TargetMachine;
27 class FunctionPass;
28 class MachineCodeEmitter;
29 class formatted_raw_ostream;
31 namespace PIC16CC {
32 enum CondCodes {
33 EQ,
34 NE,
35 LT,
36 LE,
37 GT,
38 GE,
39 ULT,
40 UGT,
41 ULE,
42 UGE
45 // A Central class to manage all ABI naming conventions.
46 // PAN - [P]ic16 [A]BI [N]ames
47 class PAN {
48 public:
49 // Map the name of the symbol to its section name.
50 // Current ABI:
51 // -----------------------------------------------------
52 // ALL Names are prefixed with the symobl '@'.
53 // ------------------------------------------------------
54 // Global variables do not have any '.' in their names.
55 // These are maily function names and global variable names.
56 // Example - @foo, @i
57 // -------------------------------------------------------
58 // Functions and auto variables.
59 // Names are mangled as <prefix><funcname>.<tag>.<varname>
60 // Where <prefix> is '@' and <tag> is any one of
61 // the following
62 // .auto. - an automatic var of a function.
63 // .temp. - temproray data of a function.
64 // .ret. - return value label for a function.
65 // .frame. - Frame label for a function where retval, args
66 // and temps are stored.
67 // .args. - Label used to pass arguments to a direct call.
68 // Example - Function name: @foo
69 // Its frame: @foo.frame.
70 // Its retval: @foo.ret.
71 // Its local vars: @foo.auto.a
72 // Its temp data: @foo.temp.
73 // Its arg passing: @foo.args.
74 //----------------------------------------------
75 // Libcall - compiler generated libcall names must start with .lib.
76 // This id will be used to emit extern decls for libcalls.
77 // Example - libcall name: @.lib.sra.i8
78 // To pass args: @.lib.sra.i8.args.
79 // To return val: @.lib.sra.i8.ret.
80 //----------------------------------------------
81 // SECTION Names
82 // uninitialized globals - @udata.<num>.#
83 // initialized globals - @idata.<num>.#
84 // Function frame - @<func>.frame_section.
85 // Function autos - @<func>.autos_section.
86 // Declarations - Enclosed in comments. No section for them.
87 //----------------------------------------------------------
89 // Tags used to mangle different names.
90 enum TAGS {
91 PREFIX_SYMBOL,
92 GLOBAL,
93 STATIC_LOCAL,
94 AUTOS_LABEL,
95 FRAME_LABEL,
96 RET_LABEL,
97 ARGS_LABEL,
98 TEMPS_LABEL,
100 LIBCALL,
102 FRAME_SECTION,
103 AUTOS_SECTION,
104 CODE_SECTION
107 // Textual names of the tags.
108 inline static const char *getTagName(TAGS tag) {
109 switch (tag) {
110 default: return "";
111 case PREFIX_SYMBOL: return "@";
112 case AUTOS_LABEL: return ".auto.";
113 case FRAME_LABEL: return ".frame.";
114 case TEMPS_LABEL: return ".temp.";
115 case ARGS_LABEL: return ".args.";
116 case RET_LABEL: return ".ret.";
117 case LIBCALL: return ".lib.";
118 case FRAME_SECTION: return ".frame_section.";
119 case AUTOS_SECTION: return ".autos_section.";
120 case CODE_SECTION: return ".code_section.";
124 // Get tag type for the Symbol.
125 inline static TAGS getSymbolTag(const std::string &Sym) {
126 if (Sym.find(getTagName(TEMPS_LABEL)) != std::string::npos)
127 return TEMPS_LABEL;
129 if (Sym.find(getTagName(FRAME_LABEL)) != std::string::npos)
130 return FRAME_LABEL;
132 if (Sym.find(getTagName(RET_LABEL)) != std::string::npos)
133 return RET_LABEL;
135 if (Sym.find(getTagName(ARGS_LABEL)) != std::string::npos)
136 return ARGS_LABEL;
138 if (Sym.find(getTagName(AUTOS_LABEL)) != std::string::npos)
139 return AUTOS_LABEL;
141 if (Sym.find(getTagName(LIBCALL)) != std::string::npos)
142 return LIBCALL;
144 // It does not have any Tag. So its a true global or static local.
145 if (Sym.find(".") == std::string::npos)
146 return GLOBAL;
148 // If a . is there, then it may be static local.
149 // We should mangle these as well in clang.
150 if (Sym.find(".") != std::string::npos)
151 return STATIC_LOCAL;
153 assert (0 && "Could not determine Symbol's tag");
154 return PREFIX_SYMBOL; // Silence warning when assertions are turned off.
157 // addPrefix - add prefix symbol to a name if there isn't one already.
158 inline static std::string addPrefix (const std::string &Name) {
159 std::string prefix = getTagName (PREFIX_SYMBOL);
161 // If this name already has a prefix, nothing to do.
162 if (Name.compare(0, prefix.size(), prefix) == 0)
163 return Name;
165 return prefix + Name;
168 // Get mangled func name from a mangled sym name.
169 // In all cases func name is the first component before a '.'.
170 static inline std::string getFuncNameForSym(const std::string &Sym1) {
171 assert (getSymbolTag(Sym1) != GLOBAL && "not belongs to a function");
173 std::string Sym = addPrefix(Sym1);
175 // Position of the . after func name. That's where func name ends.
176 size_t func_name_end = Sym.find ('.');
178 return Sym.substr (0, func_name_end);
181 // Get Frame start label for a func.
182 static std::string getFrameLabel(const std::string &Func) {
183 std::string Func1 = addPrefix(Func);
184 std::string tag = getTagName(FRAME_LABEL);
185 return Func1 + tag;
188 static std::string getRetvalLabel(const std::string &Func) {
189 std::string Func1 = addPrefix(Func);
190 std::string tag = getTagName(RET_LABEL);
191 return Func1 + tag;
194 static std::string getArgsLabel(const std::string &Func) {
195 std::string Func1 = addPrefix(Func);
196 std::string tag = getTagName(ARGS_LABEL);
197 return Func1 + tag;
200 static std::string getTempdataLabel(const std::string &Func) {
201 std::string Func1 = addPrefix(Func);
202 std::string tag = getTagName(TEMPS_LABEL);
203 return Func1 + tag;
206 static std::string getFrameSectionName(const std::string &Func) {
207 std::string Func1 = addPrefix(Func);
208 std::string tag = getTagName(FRAME_SECTION);
209 return Func1 + tag + "# UDATA_OVR";
212 static std::string getAutosSectionName(const std::string &Func) {
213 std::string Func1 = addPrefix(Func);
214 std::string tag = getTagName(AUTOS_SECTION);
215 return Func1 + tag + "# UDATA_OVR";
218 static std::string getCodeSectionName(const std::string &Func) {
219 std::string Func1 = addPrefix(Func);
220 std::string tag = getTagName(CODE_SECTION);
221 return Func1 + tag + "# CODE";
224 // udata, romdata and idata section names are generated by a given number.
225 // @udata.<num>.#
226 static std::string getUdataSectionName(unsigned num,
227 std::string prefix = "") {
228 std::ostringstream o;
229 o << getTagName(PREFIX_SYMBOL) << prefix << "udata." << num
230 << ".# UDATA";
231 return o.str();
234 static std::string getRomdataSectionName(unsigned num,
235 std::string prefix = "") {
236 std::ostringstream o;
237 o << getTagName(PREFIX_SYMBOL) << prefix << "romdata." << num
238 << ".# ROMDATA";
239 return o.str();
242 static std::string getIdataSectionName(unsigned num,
243 std::string prefix = "") {
244 std::ostringstream o;
245 o << getTagName(PREFIX_SYMBOL) << prefix << "idata." << num
246 << ".# IDATA";
247 return o.str();
250 inline static bool isLocalName (const std::string &Name) {
251 if (getSymbolTag(Name) == AUTOS_LABEL)
252 return true;
254 return false;
257 inline static bool isMemIntrinsic (const std::string &Name) {
258 if (Name.compare("@memcpy") == 0 || Name.compare("@memset") == 0 ||
259 Name.compare("@memmove") == 0) {
260 return true;
263 return false;
266 inline static bool isLocalToFunc (std::string &Func, std::string &Var) {
267 if (! isLocalName(Var)) return false;
269 std::string Func1 = addPrefix(Func);
270 // Extract func name of the varilable.
271 const std::string &fname = getFuncNameForSym(Var);
273 if (fname.compare(Func1) == 0)
274 return true;
276 return false;
280 // Get the section for the given external symbol names.
281 // This tries to find the type (Tag) of the symbol from its mangled name
282 // and return appropriate section name for it.
283 static inline std::string getSectionNameForSym(const std::string &Sym1) {
284 std::string Sym = addPrefix(Sym1);
286 std::string SectionName;
288 std::string Fname = getFuncNameForSym (Sym);
289 TAGS id = getSymbolTag (Sym);
291 switch (id) {
292 default : assert (0 && "Could not determine external symbol type");
293 case FRAME_LABEL:
294 case RET_LABEL:
295 case TEMPS_LABEL:
296 case ARGS_LABEL: {
297 return getFrameSectionName(Fname);
299 case AUTOS_LABEL: {
300 return getAutosSectionName(Fname);
304 }; // class PAN.
307 // External symbol names require memory to live till the program end.
308 // So we have to allocate it and keep.
309 inline static const char *createESName (const std::string &name) {
310 char *tmpName = new char[name.size() + 1];
311 strcpy (tmpName, name.c_str());
312 return tmpName;
317 inline static const char *PIC16CondCodeToString(PIC16CC::CondCodes CC) {
318 switch (CC) {
319 default: llvm_unreachable("Unknown condition code");
320 case PIC16CC::NE: return "ne";
321 case PIC16CC::EQ: return "eq";
322 case PIC16CC::LT: return "lt";
323 case PIC16CC::ULT: return "lt";
324 case PIC16CC::LE: return "le";
325 case PIC16CC::ULE: return "le";
326 case PIC16CC::GT: return "gt";
327 case PIC16CC::UGT: return "gt";
328 case PIC16CC::GE: return "ge";
329 case PIC16CC::UGE: return "ge";
333 inline static bool isSignedComparison(PIC16CC::CondCodes CC) {
334 switch (CC) {
335 default: llvm_unreachable("Unknown condition code");
336 case PIC16CC::NE:
337 case PIC16CC::EQ:
338 case PIC16CC::LT:
339 case PIC16CC::LE:
340 case PIC16CC::GE:
341 case PIC16CC::GT:
342 return true;
343 case PIC16CC::ULT:
344 case PIC16CC::UGT:
345 case PIC16CC::ULE:
346 case PIC16CC::UGE:
347 return false; // condition codes for unsigned comparison.
353 FunctionPass *createPIC16ISelDag(PIC16TargetMachine &TM);
354 // Banksel optimizer pass.
355 FunctionPass *createPIC16MemSelOptimizerPass();
357 extern Target ThePIC16Target;
358 extern Target TheCooperTarget;
360 } // end namespace llvm;
362 // Defines symbolic names for PIC16 registers. This defines a mapping from
363 // register name to register number.
364 #include "PIC16GenRegisterNames.inc"
366 // Defines symbolic names for the PIC16 instructions.
367 #include "PIC16GenInstrNames.inc"
369 #endif