Implement TLSLD.
[oota-llvm.git] / include / llvm / MC / MCExpr.h
1 //===- MCExpr.h - Assembly Level Expressions --------------------*- 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 #ifndef LLVM_MC_MCEXPR_H
11 #define LLVM_MC_MCEXPR_H
12
13 #include "llvm/Support/Casting.h"
14 #include "llvm/System/DataTypes.h"
15
16 namespace llvm {
17 class MCAsmInfo;
18 class MCAsmLayout;
19 class MCContext;
20 class MCSymbol;
21 class MCValue;
22 class raw_ostream;
23 class StringRef;
24
25 /// MCExpr - Base class for the full range of assembler expressions which are
26 /// needed for parsing.
27 class MCExpr {
28 public:
29   enum ExprKind {
30     Binary,    ///< Binary expressions.
31     Constant,  ///< Constant expressions.
32     SymbolRef, ///< References to labels and assigned expressions.
33     Unary,     ///< Unary expressions.
34     Target     ///< Target specific expression.
35   };
36
37 private:
38   ExprKind Kind;
39
40   MCExpr(const MCExpr&); // DO NOT IMPLEMENT
41   void operator=(const MCExpr&); // DO NOT IMPLEMENT
42
43 protected:
44   explicit MCExpr(ExprKind _Kind) : Kind(_Kind) {}
45
46   bool EvaluateAsRelocatableImpl(MCValue &Res, const MCAsmLayout *Layout,
47                                  bool InSet) const;
48 public:
49   /// @name Accessors
50   /// @{
51
52   ExprKind getKind() const { return Kind; }
53
54   /// @}
55   /// @name Utility Methods
56   /// @{
57
58   void print(raw_ostream &OS) const;
59   void dump() const;
60
61   /// @}
62   /// @name Expression Evaluation
63   /// @{
64
65   /// EvaluateAsAbsolute - Try to evaluate the expression to an absolute value.
66   ///
67   /// @param Res - The absolute value, if evaluation succeeds.
68   /// @param Layout - The assembler layout object to use for evaluating symbol
69   /// values. If not given, then only non-symbolic expressions will be
70   /// evaluated.
71   /// @result - True on success.
72   bool EvaluateAsAbsolute(int64_t &Res, const MCAsmLayout *Layout = 0) const;
73
74   /// EvaluateAsRelocatable - Try to evaluate the expression to a relocatable
75   /// value, i.e. an expression of the fixed form (a - b + constant).
76   ///
77   /// @param Res - The relocatable value, if evaluation succeeds.
78   /// @param Layout - The assembler layout object to use for evaluating values.
79   /// @result - True on success.
80   bool EvaluateAsRelocatable(MCValue &Res, const MCAsmLayout *Layout = 0) const;
81
82   /// @}
83
84   static bool classof(const MCExpr *) { return true; }
85 };
86
87 inline raw_ostream &operator<<(raw_ostream &OS, const MCExpr &E) {
88   E.print(OS);
89   return OS;
90 }
91
92 //// MCConstantExpr - Represent a constant integer expression.
93 class MCConstantExpr : public MCExpr {
94   int64_t Value;
95
96   explicit MCConstantExpr(int64_t _Value)
97     : MCExpr(MCExpr::Constant), Value(_Value) {}
98
99 public:
100   /// @name Construction
101   /// @{
102
103   static const MCConstantExpr *Create(int64_t Value, MCContext &Ctx);
104
105   /// @}
106   /// @name Accessors
107   /// @{
108
109   int64_t getValue() const { return Value; }
110
111   /// @}
112
113   static bool classof(const MCExpr *E) {
114     return E->getKind() == MCExpr::Constant;
115   }
116   static bool classof(const MCConstantExpr *) { return true; }
117 };
118
119 /// MCSymbolRefExpr - Represent a reference to a symbol from inside an
120 /// expression.
121 ///
122 /// A symbol reference in an expression may be a use of a label, a use of an
123 /// assembler variable (defined constant), or constitute an implicit definition
124 /// of the symbol as external.
125 class MCSymbolRefExpr : public MCExpr {
126 public:
127   enum VariantKind {
128     VK_None,
129     VK_Invalid,
130
131     VK_GOT,
132     VK_GOTOFF,
133     VK_GOTPCREL,
134     VK_GOTTPOFF,
135     VK_INDNTPOFF,
136     VK_NTPOFF,
137     VK_GOTNTPOFF,
138     VK_PLT,
139     VK_TLSGD,
140     VK_TLSLD,
141     VK_TLSLDM,
142     VK_TPOFF,
143     VK_DTPOFF,
144     VK_ARM_HI16, // The R_ARM_MOVT_ABS relocation (:upper16: in the asm file)
145     VK_ARM_LO16, // The R_ARM_MOVW_ABS_NC relocation (:lower16: in the asm file)
146     VK_ARM_PLT,  // ARM-style PLT symbol references. i.e., (PLT) instead of @PLT
147     VK_TLVP // Mach-O thread local variable relocation
148   };
149
150 private:
151   /// The symbol being referenced.
152   const MCSymbol *Symbol;
153
154   /// The symbol reference modifier.
155   const VariantKind Kind;
156
157   explicit MCSymbolRefExpr(const MCSymbol *_Symbol, VariantKind _Kind)
158     : MCExpr(MCExpr::SymbolRef), Symbol(_Symbol), Kind(_Kind) {}
159
160 public:
161   /// @name Construction
162   /// @{
163
164   static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, MCContext &Ctx) {
165     return MCSymbolRefExpr::Create(Symbol, VK_None, Ctx);
166   }
167
168   static const MCSymbolRefExpr *Create(const MCSymbol *Symbol, VariantKind Kind,
169                                        MCContext &Ctx);
170   static const MCSymbolRefExpr *Create(StringRef Name, VariantKind Kind,
171                                        MCContext &Ctx);
172   
173   /// @}
174   /// @name Accessors
175   /// @{
176
177   const MCSymbol &getSymbol() const { return *Symbol; }
178
179   VariantKind getKind() const { return Kind; }
180
181   /// @}
182   /// @name Static Utility Functions
183   /// @{
184
185   static StringRef getVariantKindName(VariantKind Kind);
186
187   static VariantKind getVariantKindForName(StringRef Name);
188
189   /// @}
190
191   static bool classof(const MCExpr *E) {
192     return E->getKind() == MCExpr::SymbolRef;
193   }
194   static bool classof(const MCSymbolRefExpr *) { return true; }
195 };
196
197 /// MCUnaryExpr - Unary assembler expressions.
198 class MCUnaryExpr : public MCExpr {
199 public:
200   enum Opcode {
201     LNot,  ///< Logical negation.
202     Minus, ///< Unary minus.
203     Not,   ///< Bitwise negation.
204     Plus   ///< Unary plus.
205   };
206
207 private:
208   Opcode Op;
209   const MCExpr *Expr;
210
211   MCUnaryExpr(Opcode _Op, const MCExpr *_Expr)
212     : MCExpr(MCExpr::Unary), Op(_Op), Expr(_Expr) {}
213
214 public:
215   /// @name Construction
216   /// @{
217
218   static const MCUnaryExpr *Create(Opcode Op, const MCExpr *Expr,
219                                    MCContext &Ctx);
220   static const MCUnaryExpr *CreateLNot(const MCExpr *Expr, MCContext &Ctx) {
221     return Create(LNot, Expr, Ctx);
222   }
223   static const MCUnaryExpr *CreateMinus(const MCExpr *Expr, MCContext &Ctx) {
224     return Create(Minus, Expr, Ctx);
225   }
226   static const MCUnaryExpr *CreateNot(const MCExpr *Expr, MCContext &Ctx) {
227     return Create(Not, Expr, Ctx);
228   }
229   static const MCUnaryExpr *CreatePlus(const MCExpr *Expr, MCContext &Ctx) {
230     return Create(Plus, Expr, Ctx);
231   }
232
233   /// @}
234   /// @name Accessors
235   /// @{
236
237   /// getOpcode - Get the kind of this unary expression.
238   Opcode getOpcode() const { return Op; }
239
240   /// getSubExpr - Get the child of this unary expression.
241   const MCExpr *getSubExpr() const { return Expr; }
242
243   /// @}
244
245   static bool classof(const MCExpr *E) {
246     return E->getKind() == MCExpr::Unary;
247   }
248   static bool classof(const MCUnaryExpr *) { return true; }
249 };
250
251 /// MCBinaryExpr - Binary assembler expressions.
252 class MCBinaryExpr : public MCExpr {
253 public:
254   enum Opcode {
255     Add,  ///< Addition.
256     And,  ///< Bitwise and.
257     Div,  ///< Signed division.
258     EQ,   ///< Equality comparison.
259     GT,   ///< Signed greater than comparison (result is either 0 or some
260           ///< target-specific non-zero value)
261     GTE,  ///< Signed greater than or equal comparison (result is either 0 or
262           ///< some target-specific non-zero value).
263     LAnd, ///< Logical and.
264     LOr,  ///< Logical or.
265     LT,   ///< Signed less than comparison (result is either 0 or
266           ///< some target-specific non-zero value).
267     LTE,  ///< Signed less than or equal comparison (result is either 0 or
268           ///< some target-specific non-zero value).
269     Mod,  ///< Signed remainder.
270     Mul,  ///< Multiplication.
271     NE,   ///< Inequality comparison.
272     Or,   ///< Bitwise or.
273     Shl,  ///< Shift left.
274     Shr,  ///< Shift right (arithmetic or logical, depending on target)
275     Sub,  ///< Subtraction.
276     Xor   ///< Bitwise exclusive or.
277   };
278
279 private:
280   Opcode Op;
281   const MCExpr *LHS, *RHS;
282
283   MCBinaryExpr(Opcode _Op, const MCExpr *_LHS, const MCExpr *_RHS)
284     : MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {}
285
286 public:
287   /// @name Construction
288   /// @{
289
290   static const MCBinaryExpr *Create(Opcode Op, const MCExpr *LHS,
291                                     const MCExpr *RHS, MCContext &Ctx);
292   static const MCBinaryExpr *CreateAdd(const MCExpr *LHS, const MCExpr *RHS,
293                                        MCContext &Ctx) {
294     return Create(Add, LHS, RHS, Ctx);
295   }
296   static const MCBinaryExpr *CreateAnd(const MCExpr *LHS, const MCExpr *RHS,
297                                        MCContext &Ctx) {
298     return Create(And, LHS, RHS, Ctx);
299   }
300   static const MCBinaryExpr *CreateDiv(const MCExpr *LHS, const MCExpr *RHS,
301                                        MCContext &Ctx) {
302     return Create(Div, LHS, RHS, Ctx);
303   }
304   static const MCBinaryExpr *CreateEQ(const MCExpr *LHS, const MCExpr *RHS,
305                                       MCContext &Ctx) {
306     return Create(EQ, LHS, RHS, Ctx);
307   }
308   static const MCBinaryExpr *CreateGT(const MCExpr *LHS, const MCExpr *RHS,
309                                       MCContext &Ctx) {
310     return Create(GT, LHS, RHS, Ctx);
311   }
312   static const MCBinaryExpr *CreateGTE(const MCExpr *LHS, const MCExpr *RHS,
313                                        MCContext &Ctx) {
314     return Create(GTE, LHS, RHS, Ctx);
315   }
316   static const MCBinaryExpr *CreateLAnd(const MCExpr *LHS, const MCExpr *RHS,
317                                         MCContext &Ctx) {
318     return Create(LAnd, LHS, RHS, Ctx);
319   }
320   static const MCBinaryExpr *CreateLOr(const MCExpr *LHS, const MCExpr *RHS,
321                                        MCContext &Ctx) {
322     return Create(LOr, LHS, RHS, Ctx);
323   }
324   static const MCBinaryExpr *CreateLT(const MCExpr *LHS, const MCExpr *RHS,
325                                       MCContext &Ctx) {
326     return Create(LT, LHS, RHS, Ctx);
327   }
328   static const MCBinaryExpr *CreateLTE(const MCExpr *LHS, const MCExpr *RHS,
329                                        MCContext &Ctx) {
330     return Create(LTE, LHS, RHS, Ctx);
331   }
332   static const MCBinaryExpr *CreateMod(const MCExpr *LHS, const MCExpr *RHS,
333                                        MCContext &Ctx) {
334     return Create(Mod, LHS, RHS, Ctx);
335   }
336   static const MCBinaryExpr *CreateMul(const MCExpr *LHS, const MCExpr *RHS,
337                                        MCContext &Ctx) {
338     return Create(Mul, LHS, RHS, Ctx);
339   }
340   static const MCBinaryExpr *CreateNE(const MCExpr *LHS, const MCExpr *RHS,
341                                       MCContext &Ctx) {
342     return Create(NE, LHS, RHS, Ctx);
343   }
344   static const MCBinaryExpr *CreateOr(const MCExpr *LHS, const MCExpr *RHS,
345                                       MCContext &Ctx) {
346     return Create(Or, LHS, RHS, Ctx);
347   }
348   static const MCBinaryExpr *CreateShl(const MCExpr *LHS, const MCExpr *RHS,
349                                        MCContext &Ctx) {
350     return Create(Shl, LHS, RHS, Ctx);
351   }
352   static const MCBinaryExpr *CreateShr(const MCExpr *LHS, const MCExpr *RHS,
353                                        MCContext &Ctx) {
354     return Create(Shr, LHS, RHS, Ctx);
355   }
356   static const MCBinaryExpr *CreateSub(const MCExpr *LHS, const MCExpr *RHS,
357                                        MCContext &Ctx) {
358     return Create(Sub, LHS, RHS, Ctx);
359   }
360   static const MCBinaryExpr *CreateXor(const MCExpr *LHS, const MCExpr *RHS,
361                                        MCContext &Ctx) {
362     return Create(Xor, LHS, RHS, Ctx);
363   }
364
365   /// @}
366   /// @name Accessors
367   /// @{
368
369   /// getOpcode - Get the kind of this binary expression.
370   Opcode getOpcode() const { return Op; }
371
372   /// getLHS - Get the left-hand side expression of the binary operator.
373   const MCExpr *getLHS() const { return LHS; }
374
375   /// getRHS - Get the right-hand side expression of the binary operator.
376   const MCExpr *getRHS() const { return RHS; }
377
378   /// @}
379
380   static bool classof(const MCExpr *E) {
381     return E->getKind() == MCExpr::Binary;
382   }
383   static bool classof(const MCBinaryExpr *) { return true; }
384 };
385
386 /// MCTargetExpr - This is an extension point for target-specific MCExpr
387 /// subclasses to implement.
388 ///
389 /// NOTE: All subclasses are required to have trivial destructors because
390 /// MCExprs are bump pointer allocated and not destructed.
391 class MCTargetExpr : public MCExpr {
392   virtual void Anchor();
393 protected:
394   MCTargetExpr() : MCExpr(Target) {}
395   virtual ~MCTargetExpr() {}
396 public:
397
398   virtual void PrintImpl(raw_ostream &OS) const = 0;
399   virtual bool EvaluateAsRelocatableImpl(MCValue &Res,
400                                          const MCAsmLayout *Layout) const = 0;
401
402
403   static bool classof(const MCExpr *E) {
404     return E->getKind() == MCExpr::Target;
405   }
406   static bool classof(const MCTargetExpr *) { return true; }
407 };
408
409 } // end namespace llvm
410
411 #endif