LLVM  8.0.1
X86MCAsmInfo.h
Go to the documentation of this file.
1 //===-- X86MCAsmInfo.h - X86 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 declaration of the X86MCAsmInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_LIB_TARGET_X86_MCTARGETDESC_X86MCASMINFO_H
15 #define LLVM_LIB_TARGET_X86_MCTARGETDESC_X86MCASMINFO_H
16 
17 #include "llvm/MC/MCAsmInfo.h"
18 #include "llvm/MC/MCAsmInfoCOFF.h"
20 #include "llvm/MC/MCAsmInfoELF.h"
21 
22 namespace llvm {
23 class Triple;
24 
26  virtual void anchor();
27 
28 public:
29  explicit X86MCAsmInfoDarwin(const Triple &Triple);
30 };
31 
33  explicit X86_64MCAsmInfoDarwin(const Triple &Triple);
34  const MCExpr *
35  getExprForPersonalitySymbol(const MCSymbol *Sym, unsigned Encoding,
36  MCStreamer &Streamer) const override;
37 };
38 
39 class X86ELFMCAsmInfo : public MCAsmInfoELF {
40  void anchor() override;
41 
42 public:
43  explicit X86ELFMCAsmInfo(const Triple &Triple);
44 };
45 
47  void anchor() override;
48 
49 public:
50  explicit X86MCAsmInfoMicrosoft(const Triple &Triple);
51 };
52 
54  void anchor() override;
55 
56 public:
57  explicit X86MCAsmInfoGNUCOFF(const Triple &Triple);
58 };
59 } // namespace llvm
60 
61 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:42
virtual const MCExpr * getExprForPersonalitySymbol(const MCSymbol *Sym, unsigned Encoding, MCStreamer &Streamer) const
Definition: MCAsmInfo.cpp:79
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:36
Streaming machine code generation interface.
Definition: MCStreamer.h:189
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
X86MCAsmInfoDarwin(const Triple &Triple)