Recommit [NFC] Better encapsulation of llvm::Optional Storage
[llvm-complete.git] / include / llvm / MC / MCSymbolWasm.h
blob88759fe4d9e6b72c570cf9d06a2d27718578f296
1 //===- MCSymbolWasm.h - ----------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 #ifndef LLVM_MC_MCSYMBOLWASM_H
9 #define LLVM_MC_MCSYMBOLWASM_H
11 #include "llvm/BinaryFormat/Wasm.h"
12 #include "llvm/MC/MCSymbol.h"
14 namespace llvm {
16 class MCSymbolWasm : public MCSymbol {
17 wasm::WasmSymbolType Type = wasm::WASM_SYMBOL_TYPE_DATA;
18 bool IsWeak = false;
19 bool IsHidden = false;
20 bool IsComdat = false;
21 Optional<std::string> ImportModule;
22 Optional<std::string> ImportName;
23 wasm::WasmSignature *Signature = nullptr;
24 Optional<wasm::WasmGlobalType> GlobalType;
25 Optional<wasm::WasmEventType> EventType;
27 /// An expression describing how to calculate the size of a symbol. If a
28 /// symbol has no size this field will be NULL.
29 const MCExpr *SymbolSize = nullptr;
31 public:
32 // Use a module name of "env" for now, for compatibility with existing tools.
33 // This is temporary, and may change, as the ABI is not yet stable.
34 MCSymbolWasm(const StringMapEntry<bool> *Name, bool isTemporary)
35 : MCSymbol(SymbolKindWasm, Name, isTemporary) {}
36 static bool classof(const MCSymbol *S) { return S->isWasm(); }
38 const MCExpr *getSize() const { return SymbolSize; }
39 void setSize(const MCExpr *SS) { SymbolSize = SS; }
41 bool isFunction() const { return Type == wasm::WASM_SYMBOL_TYPE_FUNCTION; }
42 bool isData() const { return Type == wasm::WASM_SYMBOL_TYPE_DATA; }
43 bool isGlobal() const { return Type == wasm::WASM_SYMBOL_TYPE_GLOBAL; }
44 bool isSection() const { return Type == wasm::WASM_SYMBOL_TYPE_SECTION; }
45 bool isEvent() const { return Type == wasm::WASM_SYMBOL_TYPE_EVENT; }
46 wasm::WasmSymbolType getType() const { return Type; }
47 void setType(wasm::WasmSymbolType type) { Type = type; }
49 bool isExported() const {
50 return getFlags() & wasm::WASM_SYMBOL_EXPORTED;
52 void setExported() const {
53 modifyFlags(wasm::WASM_SYMBOL_EXPORTED, wasm::WASM_SYMBOL_EXPORTED);
56 bool isWeak() const { return IsWeak; }
57 void setWeak(bool isWeak) { IsWeak = isWeak; }
59 bool isHidden() const { return IsHidden; }
60 void setHidden(bool isHidden) { IsHidden = isHidden; }
62 bool isComdat() const { return IsComdat; }
63 void setComdat(bool isComdat) { IsComdat = isComdat; }
65 const StringRef getImportModule() const {
66 if (ImportModule.hasValue()) {
67 return ImportModule.getValue();
69 return "env";
71 void setImportModule(StringRef Name) { ImportModule = Name; }
73 const StringRef getImportName() const {
74 if (ImportName.hasValue()) {
75 return ImportName.getValue();
77 return getName();
79 void setImportName(StringRef Name) { ImportName = Name; }
81 const wasm::WasmSignature *getSignature() const { return Signature; }
82 void setSignature(wasm::WasmSignature *Sig) { Signature = Sig; }
84 const wasm::WasmGlobalType &getGlobalType() const {
85 assert(GlobalType.hasValue());
86 return GlobalType.getValue();
88 void setGlobalType(wasm::WasmGlobalType GT) { GlobalType = GT; }
90 const wasm::WasmEventType &getEventType() const {
91 assert(EventType.hasValue());
92 return EventType.getValue();
94 void setEventType(wasm::WasmEventType ET) { EventType = ET; }
97 } // end namespace llvm
99 #endif // LLVM_MC_MCSYMBOLWASM_H