1 //===-- PIC16.h - Top-level interface for PIC16 representation --*- 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 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"
26 class PIC16TargetMachine
;
28 class MachineCodeEmitter
;
29 class formatted_raw_ostream
;
45 // A Central class to manage all ABI naming conventions.
46 // PAN - [P]ic16 [A]BI [N]ames
49 // Map the name of the symbol to its section name.
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.
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
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 //----------------------------------------------
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.
107 // Textual names of the tags.
108 inline static const char *getTagName(TAGS tag
) {
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
)
129 if (Sym
.find(getTagName(FRAME_LABEL
)) != std::string::npos
)
132 if (Sym
.find(getTagName(RET_LABEL
)) != std::string::npos
)
135 if (Sym
.find(getTagName(ARGS_LABEL
)) != std::string::npos
)
138 if (Sym
.find(getTagName(AUTOS_LABEL
)) != std::string::npos
)
141 if (Sym
.find(getTagName(LIBCALL
)) != std::string::npos
)
144 // It does not have any Tag. So its a true global or static local.
145 if (Sym
.find(".") == std::string::npos
)
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
)
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)
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
);
188 static std::string
getRetvalLabel(const std::string
&Func
) {
189 std::string Func1
= addPrefix(Func
);
190 std::string tag
= getTagName(RET_LABEL
);
194 static std::string
getArgsLabel(const std::string
&Func
) {
195 std::string Func1
= addPrefix(Func
);
196 std::string tag
= getTagName(ARGS_LABEL
);
200 static std::string
getTempdataLabel(const std::string
&Func
) {
201 std::string Func1
= addPrefix(Func
);
202 std::string tag
= getTagName(TEMPS_LABEL
);
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.
226 static std::string
getUdataSectionName(unsigned num
,
227 std::string prefix
= "") {
228 std::ostringstream o
;
229 o
<< getTagName(PREFIX_SYMBOL
) << prefix
<< "udata." << num
234 static std::string
getRomdataSectionName(unsigned num
,
235 std::string prefix
= "") {
236 std::ostringstream o
;
237 o
<< getTagName(PREFIX_SYMBOL
) << prefix
<< "romdata." << num
242 static std::string
getIdataSectionName(unsigned num
,
243 std::string prefix
= "") {
244 std::ostringstream o
;
245 o
<< getTagName(PREFIX_SYMBOL
) << prefix
<< "idata." << num
250 inline static bool isLocalName (const std::string
&Name
) {
251 if (getSymbolTag(Name
) == AUTOS_LABEL
)
257 inline static bool isMemIntrinsic (const std::string
&Name
) {
258 if (Name
.compare("@memcpy") == 0 || Name
.compare("@memset") == 0 ||
259 Name
.compare("@memmove") == 0) {
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)
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
);
292 default : assert (0 && "Could not determine external symbol type");
297 return getFrameSectionName(Fname
);
300 return getAutosSectionName(Fname
);
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());
317 inline static const char *PIC16CondCodeToString(PIC16CC::CondCodes 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
) {
335 default: llvm_unreachable("Unknown condition code");
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"