mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-01 01:31:26 +00:00
e3f3ccf886
Differential Revision: https://reviews.llvm.org/D44358 llvm-svn: 327326
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
//===- InputGlobal.h --------------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Linker
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLD_WASM_INPUT_GLOBAL_H
|
|
#define LLD_WASM_INPUT_GLOBAL_H
|
|
|
|
#include "Config.h"
|
|
#include "InputFiles.h"
|
|
#include "WriterUtils.h"
|
|
#include "lld/Common/ErrorHandler.h"
|
|
#include "llvm/Object/Wasm.h"
|
|
|
|
using llvm::wasm::WasmGlobal;
|
|
using llvm::wasm::WasmInitExpr;
|
|
|
|
namespace lld {
|
|
namespace wasm {
|
|
|
|
// Represents a single Wasm Global Variable within an input file. These are
|
|
// combined to form the final GLOBALS section.
|
|
class InputGlobal {
|
|
public:
|
|
InputGlobal(const WasmGlobal &G) : Global(G) {}
|
|
|
|
const WasmGlobalType &getType() const { return Global.Type; }
|
|
|
|
uint32_t getGlobalIndex() const { return GlobalIndex.getValue(); }
|
|
bool hasGlobalIndex() const { return GlobalIndex.hasValue(); }
|
|
void setGlobalIndex(uint32_t Index) {
|
|
assert(!hasGlobalIndex());
|
|
GlobalIndex = Index;
|
|
}
|
|
|
|
bool Live = false;
|
|
|
|
WasmGlobal Global;
|
|
|
|
protected:
|
|
llvm::Optional<uint32_t> GlobalIndex;
|
|
};
|
|
|
|
} // namespace wasm
|
|
|
|
} // namespace lld
|
|
|
|
#endif // LLD_WASM_INPUT_GLOBAL_H
|