LLVM  8.0.1
MCSectionWasm.h
Go to the documentation of this file.
1 //===- MCSectionWasm.h - Wasm Machine Code Sections -------------*- 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 declares the MCSectionWasm class.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_MC_MCSECTIONWASM_H
15 #define LLVM_MC_MCSECTIONWASM_H
16 
17 #include "llvm/ADT/Twine.h"
18 #include "llvm/MC/MCSection.h"
19 #include "llvm/MC/MCSymbolWasm.h"
20 #include "llvm/Support/Debug.h"
22 
23 namespace llvm {
24 
25 class MCSymbol;
26 
27 /// This represents a section on wasm.
28 class MCSectionWasm final : public MCSection {
29  /// This is the name of the section. The referenced memory is owned by
30  /// TargetLoweringObjectFileWasm's WasmUniqueMap.
32 
33  unsigned UniqueID;
34 
35  const MCSymbolWasm *Group;
36 
37  // The offset of the MC function/data section in the wasm code/data section.
38  // For data relocations the offset is relative to start of the data payload
39  // itself and does not include the size of the section header.
40  uint64_t SectionOffset = 0;
41 
42  // For data sections, this is the index of of the corresponding wasm data
43  // segment
44  uint32_t SegmentIndex = 0;
45 
46  friend class MCContext;
48  unsigned UniqueID, MCSymbol *Begin)
49  : MCSection(SV_Wasm, K, Begin), SectionName(Section), UniqueID(UniqueID),
50  Group(group) {}
51 
52  void setSectionName(StringRef Name) { SectionName = Name; }
53 
54 public:
56 
57  /// Decides whether a '.section' directive should be printed before the
58  /// section name
59  bool ShouldOmitSectionDirective(StringRef Name, const MCAsmInfo &MAI) const;
60 
61  StringRef getSectionName() const { return SectionName; }
62  const MCSymbolWasm *getGroup() const { return Group; }
63 
64  void PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
65  raw_ostream &OS,
66  const MCExpr *Subsection) const override;
67  bool UseCodeAlign() const override;
68  bool isVirtualSection() const override;
69 
70  bool isWasmData() const {
72  }
73 
74  bool isUnique() const { return UniqueID != ~0U; }
75  unsigned getUniqueID() const { return UniqueID; }
76 
77  uint64_t getSectionOffset() const { return SectionOffset; }
78  void setSectionOffset(uint64_t Offset) { SectionOffset = Offset; }
79 
80  uint32_t getSegmentIndex() const { return SegmentIndex; }
81  void setSegmentIndex(uint32_t Index) { SegmentIndex = Index; }
82 
83  static bool classof(const MCSection *S) { return S->getVariant() == SV_Wasm; }
84 };
85 
86 } // end namespace llvm
87 
88 #endif
Instances of this class represent a uniqued identifier for a section in the current translation unit...
Definition: MCSection.h:39
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
StringRef getSectionName() const
Definition: MCSectionWasm.h:61
static bool classof(const MCSection *S)
Definition: MCSectionWasm.h:83
amdgpu Simplify well known AMD library false Value Value const Twine & Name
const MCSymbolWasm * getGroup() const
Definition: MCSectionWasm.h:62
Base class for the full range of assembler expressions which are needed for parsing.
Definition: MCExpr.h:36
bool isGlobalWriteableData() const
Definition: SectionKind.h:156
Context object for machine code objects.
Definition: MCContext.h:63
bool ShouldOmitSectionDirective(StringRef Name, const MCAsmInfo &MAI) const
Decides whether a '.section' directive should be printed before the section name. ...
bool UseCodeAlign() const override
Return true if a .align directive should use "optimized nops" to fill instead of 0s.
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
This represents a section on wasm.
Definition: MCSectionWasm.h:28
void setSectionOffset(uint64_t Offset)
Definition: MCSectionWasm.h:78
SectionKind - This is a simple POD value that classifies the properties of a section.
Definition: SectionKind.h:23
SectionVariant getVariant() const
Definition: MCSection.h:108
bool isUnique() const
Definition: MCSectionWasm.h:74
unsigned getUniqueID() const
Definition: MCSectionWasm.h:75
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
uint64_t getSectionOffset() const
Definition: MCSectionWasm.h:77
void PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T, raw_ostream &OS, const MCExpr *Subsection) const override
bool isWasmData() const
Definition: MCSectionWasm.h:70
bool isReadOnly() const
Definition: SectionKind.h:123
uint32_t getSegmentIndex() const
Definition: MCSectionWasm.h:80
const char SectionName[]
Definition: AMDGPUPTNote.h:24
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
bool isVirtualSection() const override
Check whether this section is "virtual", that is has no actual object file contents.
SectionKind Kind
Definition: MCSection.h:97
void setSegmentIndex(uint32_t Index)
Definition: MCSectionWasm.h:81