blob: 88759fe4d9e6b72c570cf9d06a2d27718578f296 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- MCSymbolWasm.h - ----------------------------------------*- C++ -*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// 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
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8#ifndef LLVM_MC_MCSYMBOLWASM_H
9#define LLVM_MC_MCSYMBOLWASM_H
10
11#include "llvm/BinaryFormat/Wasm.h"
12#include "llvm/MC/MCSymbol.h"
13
14namespace llvm {
15
16class MCSymbolWasm : public MCSymbol {
17 wasm::WasmSymbolType Type = wasm::WASM_SYMBOL_TYPE_DATA;
18 bool IsWeak = false;
19 bool IsHidden = false;
20 bool IsComdat = false;
Andrew Walbran16937d02019-10-22 13:54:20 +010021 Optional<std::string> ImportModule;
22 Optional<std::string> ImportName;
Andrew Scull0372a572018-11-16 15:47:06 +000023 wasm::WasmSignature *Signature = nullptr;
Andrew Walbran16937d02019-10-22 13:54:20 +010024 Optional<wasm::WasmGlobalType> GlobalType;
25 Optional<wasm::WasmEventType> EventType;
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010026
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;
30
31public:
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)
Andrew Walbran16937d02019-10-22 13:54:20 +010035 : MCSymbol(SymbolKindWasm, Name, isTemporary) {}
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010036 static bool classof(const MCSymbol *S) { return S->isWasm(); }
37
38 const MCExpr *getSize() const { return SymbolSize; }
39 void setSize(const MCExpr *SS) { SymbolSize = SS; }
40
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; }
Andrew Scullcdfcccc2018-10-05 20:58:37 +010044 bool isSection() const { return Type == wasm::WASM_SYMBOL_TYPE_SECTION; }
Andrew Walbran16937d02019-10-22 13:54:20 +010045 bool isEvent() const { return Type == wasm::WASM_SYMBOL_TYPE_EVENT; }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010046 wasm::WasmSymbolType getType() const { return Type; }
47 void setType(wasm::WasmSymbolType type) { Type = type; }
48
Andrew Walbran16937d02019-10-22 13:54:20 +010049 bool isExported() const {
50 return getFlags() & wasm::WASM_SYMBOL_EXPORTED;
51 }
52 void setExported() const {
53 modifyFlags(wasm::WASM_SYMBOL_EXPORTED, wasm::WASM_SYMBOL_EXPORTED);
54 }
55
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010056 bool isWeak() const { return IsWeak; }
57 void setWeak(bool isWeak) { IsWeak = isWeak; }
58
59 bool isHidden() const { return IsHidden; }
60 void setHidden(bool isHidden) { IsHidden = isHidden; }
61
62 bool isComdat() const { return IsComdat; }
63 void setComdat(bool isComdat) { IsComdat = isComdat; }
64
Andrew Walbran16937d02019-10-22 13:54:20 +010065 const StringRef getImportModule() const {
66 if (ImportModule.hasValue()) {
67 return ImportModule.getValue();
68 }
69 return "env";
70 }
71 void setImportModule(StringRef Name) { ImportModule = Name; }
72
73 const StringRef getImportName() const {
74 if (ImportName.hasValue()) {
75 return ImportName.getValue();
76 }
77 return getName();
78 }
79 void setImportName(StringRef Name) { ImportName = Name; }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010080
Andrew Scull0372a572018-11-16 15:47:06 +000081 const wasm::WasmSignature *getSignature() const { return Signature; }
82 void setSignature(wasm::WasmSignature *Sig) { Signature = Sig; }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010083
84 const wasm::WasmGlobalType &getGlobalType() const {
Andrew Walbran16937d02019-10-22 13:54:20 +010085 assert(GlobalType.hasValue());
86 return GlobalType.getValue();
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010087 }
Andrew Walbran16937d02019-10-22 13:54:20 +010088 void setGlobalType(wasm::WasmGlobalType GT) { GlobalType = GT; }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010089
Andrew Walbran16937d02019-10-22 13:54:20 +010090 const wasm::WasmEventType &getEventType() const {
91 assert(EventType.hasValue());
92 return EventType.getValue();
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010093 }
Andrew Walbran16937d02019-10-22 13:54:20 +010094 void setEventType(wasm::WasmEventType ET) { EventType = ET; }
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010095};
96
Andrew Scull0372a572018-11-16 15:47:06 +000097} // end namespace llvm
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010098
99#endif // LLVM_MC_MCSYMBOLWASM_H