blob: 10eadb03c43416f6c5580587e39fa6d36d8cc3f2 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- MCSymbolWasm.h - ----------------------------------------*- 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#ifndef LLVM_MC_MCSYMBOLWASM_H
10#define LLVM_MC_MCSYMBOLWASM_H
11
12#include "llvm/BinaryFormat/Wasm.h"
13#include "llvm/MC/MCSymbol.h"
14
15namespace llvm {
16
17class MCSymbolWasm : public MCSymbol {
18 wasm::WasmSymbolType Type = wasm::WASM_SYMBOL_TYPE_DATA;
19 bool IsWeak = false;
20 bool IsHidden = false;
21 bool IsComdat = false;
22 std::string ModuleName;
23 SmallVector<wasm::ValType, 1> Returns;
24 SmallVector<wasm::ValType, 4> Params;
25 wasm::WasmGlobalType GlobalType;
26 bool ParamsSet = false;
27 bool ReturnsSet = false;
28 bool GlobalTypeSet = false;
29
30 /// An expression describing how to calculate the size of a symbol. If a
31 /// symbol has no size this field will be NULL.
32 const MCExpr *SymbolSize = nullptr;
33
34public:
35 // Use a module name of "env" for now, for compatibility with existing tools.
36 // This is temporary, and may change, as the ABI is not yet stable.
37 MCSymbolWasm(const StringMapEntry<bool> *Name, bool isTemporary)
38 : MCSymbol(SymbolKindWasm, Name, isTemporary),
39 ModuleName("env") {}
40 static bool classof(const MCSymbol *S) { return S->isWasm(); }
41
42 const MCExpr *getSize() const { return SymbolSize; }
43 void setSize(const MCExpr *SS) { SymbolSize = SS; }
44
45 bool isFunction() const { return Type == wasm::WASM_SYMBOL_TYPE_FUNCTION; }
46 bool isData() const { return Type == wasm::WASM_SYMBOL_TYPE_DATA; }
47 bool isGlobal() const { return Type == wasm::WASM_SYMBOL_TYPE_GLOBAL; }
48 wasm::WasmSymbolType getType() const { return Type; }
49 void setType(wasm::WasmSymbolType type) { Type = type; }
50
51 bool isWeak() const { return IsWeak; }
52 void setWeak(bool isWeak) { IsWeak = isWeak; }
53
54 bool isHidden() const { return IsHidden; }
55 void setHidden(bool isHidden) { IsHidden = isHidden; }
56
57 bool isComdat() const { return IsComdat; }
58 void setComdat(bool isComdat) { IsComdat = isComdat; }
59
60 const StringRef getModuleName() const { return ModuleName; }
61 void setModuleName(StringRef Name) { ModuleName = Name; }
62
63 const SmallVector<wasm::ValType, 1> &getReturns() const {
64 assert(ReturnsSet);
65 return Returns;
66 }
67
68 void setReturns(SmallVectorImpl<wasm::ValType> &&Rets) {
69 ReturnsSet = true;
70 Returns = std::move(Rets);
71 }
72
73 const SmallVector<wasm::ValType, 4> &getParams() const {
74 assert(ParamsSet);
75 return Params;
76 }
77
78 void setParams(SmallVectorImpl<wasm::ValType> &&Pars) {
79 ParamsSet = true;
80 Params = std::move(Pars);
81 }
82
83 const wasm::WasmGlobalType &getGlobalType() const {
84 assert(GlobalTypeSet);
85 return GlobalType;
86 }
87
88 void setGlobalType(wasm::WasmGlobalType GT) {
89 GlobalTypeSet = true;
90 GlobalType = GT;
91 }
92};
93
94} // end namespace llvm
95
96#endif // LLVM_MC_MCSYMBOLWASM_H