LLVM
20.0.0git
include
llvm
MC
MCSymbolELF.h
Go to the documentation of this file.
1
//===- MCSymbolELF.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_MCSYMBOLELF_H
9
#define LLVM_MC_MCSYMBOLELF_H
10
11
#include "
llvm/MC/MCSymbol.h
"
12
#include "
llvm/MC/MCSymbolTableEntry.h
"
13
14
namespace
llvm
{
15
class
MCSymbolELF
:
public
MCSymbol
{
16
/// An expression describing how to calculate the size of a symbol. If a
17
/// symbol has no size this field will be NULL.
18
const
MCExpr
*SymbolSize =
nullptr
;
19
20
public
:
21
MCSymbolELF
(
const
MCSymbolTableEntry
*
Name
,
bool
isTemporary
)
22
:
MCSymbol
(
SymbolKindELF
,
Name
,
isTemporary
) {}
23
void
setSize
(
const
MCExpr
*SS) { SymbolSize = SS; }
24
25
const
MCExpr
*
getSize
()
const
{
return
SymbolSize; }
26
27
void
setVisibility
(
unsigned
Visibility);
28
unsigned
getVisibility
()
const
;
29
30
void
setOther
(
unsigned
Other
);
31
unsigned
getOther
()
const
;
32
33
void
setType
(
unsigned
Type
)
const
;
34
unsigned
getType
()
const
;
35
36
void
setBinding
(
unsigned
Binding)
const
;
37
unsigned
getBinding
()
const
;
38
39
bool
isBindingSet
()
const
;
40
41
void
setIsWeakrefUsedInReloc
()
const
;
42
bool
isWeakrefUsedInReloc
()
const
;
43
44
void
setIsSignature
()
const
;
45
bool
isSignature
()
const
;
46
47
void
setMemtag
(
bool
Tagged);
48
bool
isMemtag
()
const
;
49
50
static
bool
classof
(
const
MCSymbol
*S) {
return
S->
isELF
(); }
51
52
private
:
53
void
setIsBindingSet()
const
;
54
};
55
}
56
57
#endif
Name
std::string Name
Definition:
ELFObjHandler.cpp:77
MCSymbolTableEntry.h
MCSymbol.h
llvm::MCExpr
Base class for the full range of assembler expressions which are needed for parsing.
Definition:
MCExpr.h:34
llvm::MCSymbolELF
Definition:
MCSymbolELF.h:15
llvm::MCSymbolELF::isMemtag
bool isMemtag() const
Definition:
MCSymbolELF.cpp:200
llvm::MCSymbolELF::getOther
unsigned getOther() const
Definition:
MCSymbolELF.cpp:168
llvm::MCSymbolELF::getType
unsigned getType() const
Definition:
MCSymbolELF.cpp:125
llvm::MCSymbolELF::isWeakrefUsedInReloc
bool isWeakrefUsedInReloc() const
Definition:
MCSymbolELF.cpp:178
llvm::MCSymbolELF::setVisibility
void setVisibility(unsigned Visibility)
Definition:
MCSymbolELF.cpp:147
llvm::MCSymbolELF::setMemtag
void setMemtag(bool Tagged)
Definition:
MCSymbolELF.cpp:204
llvm::MCSymbolELF::setSize
void setSize(const MCExpr *SS)
Definition:
MCSymbolELF.h:23
llvm::MCSymbolELF::isBindingSet
bool isBindingSet() const
Definition:
MCSymbolELF.cpp:196
llvm::MCSymbolELF::setIsSignature
void setIsSignature() const
Definition:
MCSymbolELF.cpp:182
llvm::MCSymbolELF::getSize
const MCExpr * getSize() const
Definition:
MCSymbolELF.h:25
llvm::MCSymbolELF::setIsWeakrefUsedInReloc
void setIsWeakrefUsedInReloc() const
Definition:
MCSymbolELF.cpp:173
llvm::MCSymbolELF::classof
static bool classof(const MCSymbol *S)
Definition:
MCSymbolELF.h:50
llvm::MCSymbolELF::MCSymbolELF
MCSymbolELF(const MCSymbolTableEntry *Name, bool isTemporary)
Definition:
MCSymbolELF.h:21
llvm::MCSymbolELF::setBinding
void setBinding(unsigned Binding) const
Definition:
MCSymbolELF.cpp:43
llvm::MCSymbolELF::isSignature
bool isSignature() const
Definition:
MCSymbolELF.cpp:187
llvm::MCSymbolELF::getVisibility
unsigned getVisibility() const
Definition:
MCSymbolELF.cpp:155
llvm::MCSymbolELF::getBinding
unsigned getBinding() const
Definition:
MCSymbolELF.cpp:66
llvm::MCSymbolELF::setType
void setType(unsigned Type) const
Definition:
MCSymbolELF.cpp:94
llvm::MCSymbolELF::setOther
void setOther(unsigned Other)
Definition:
MCSymbolELF.cpp:160
llvm::MCSymbol
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition:
MCSymbol.h:41
llvm::MCSymbol::isELF
bool isELF() const
Definition:
MCSymbol.h:283
llvm::MCSymbol::SymbolKindELF
@ SymbolKindELF
Definition:
MCSymbol.h:48
llvm::MCSymbol::isTemporary
bool isTemporary() const
isTemporary - Check if this is an assembler temporary symbol.
Definition:
MCSymbol.h:222
llvm::StringMapEntry
StringMapEntry - This is used to represent one value that is inserted into a StringMap.
Definition:
StringMapEntry.h:102
llvm::Type
The instances of the Type class are immutable: once they are created, they are never changed.
Definition:
Type.h:45
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:18
llvm::IRMemLocation::Other
@ Other
Any other memory.
Generated on Tue Nov 12 2024 11:57:35 for LLVM by
1.9.6