]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h
Update our device tree files to a Linux 4.10
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / AVR / MCTargetDesc / AVRMCExpr.h
1 //===-- AVRMCExpr.h - AVR specific MC expression classes --------*- 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_AVR_MCEXPR_H
11 #define LLVM_AVR_MCEXPR_H
12
13 #include "llvm/MC/MCExpr.h"
14
15 #include "MCTargetDesc/AVRFixupKinds.h"
16
17 namespace llvm {
18
19 /// A expression in AVR machine code.
20 class AVRMCExpr : public MCTargetExpr {
21 public:
22   /// Specifies the type of an expression.
23   enum VariantKind {
24     VK_AVR_None,
25
26     VK_AVR_HI8,  ///< Corresponds to `hi8()`.
27     VK_AVR_LO8,  ///< Corresponds to `lo8()`.
28     VK_AVR_HH8,  ///< Corresponds to `hlo8() and hh8()`.
29     VK_AVR_HHI8, ///< Corresponds to `hhi8()`.
30
31     VK_AVR_PM_LO8, ///< Corresponds to `pm_lo8()`.
32     VK_AVR_PM_HI8, ///< Corresponds to `pm_hi8()`.
33     VK_AVR_PM_HH8  ///< Corresponds to `pm_hh8()`.
34   };
35
36 public:
37   /// Creates an AVR machine code expression.
38   static const AVRMCExpr *create(VariantKind Kind, const MCExpr *Expr,
39                                  bool isNegated, MCContext &Ctx);
40
41   /// Gets the type of the expression.
42   VariantKind getKind() const { return Kind; }
43   /// Gets the name of the expression.
44   const char *getName() const;
45   const MCExpr *getSubExpr() const { return SubExpr; }
46   /// Gets the fixup which corresponds to the expression.
47   AVR::Fixups getFixupKind() const;
48   /// Evaluates the fixup as a constant value.
49   bool evaluateAsConstant(int64_t &Result) const;
50
51   bool isNegated() const { return Negated; }
52   void setNegated(bool negated = true) { Negated = negated; }
53
54   void printImpl(raw_ostream &OS, const MCAsmInfo *MAI) const override;
55   bool evaluateAsRelocatableImpl(MCValue &Res, const MCAsmLayout *Layout,
56                                  const MCFixup *Fixup) const override;
57
58   void visitUsedExpr(MCStreamer &streamer) const override;
59
60   MCFragment *findAssociatedFragment() const override {
61     return getSubExpr()->findAssociatedFragment();
62   }
63
64   void fixELFSymbolsInTLSFixups(MCAssembler &Asm) const override {}
65
66   static bool classof(const MCExpr *E) {
67     return E->getKind() == MCExpr::Target;
68   }
69
70 public:
71   static VariantKind getKindByName(StringRef Name);
72
73 private:
74   int64_t evaluateAsInt64(int64_t Value) const;
75
76   const VariantKind Kind;
77   const MCExpr *SubExpr;
78   bool Negated;
79
80 private:
81   explicit AVRMCExpr(VariantKind Kind, const MCExpr *Expr, bool Negated)
82       : Kind(Kind), SubExpr(Expr), Negated(Negated) {}
83   ~AVRMCExpr() {}
84 };
85
86 } // end namespace llvm
87
88 #endif // LLVM_AVR_MCEXPR_H