mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-30 19:35:54 +00:00
llvm-mc: Add some doxyment markers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80568 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
28c251b54b
commit
869a5e7d66
@ -46,7 +46,10 @@ namespace llvm {
|
|||||||
public:
|
public:
|
||||||
MCContext();
|
MCContext();
|
||||||
~MCContext();
|
~MCContext();
|
||||||
|
|
||||||
|
/// @name Symbol Managment
|
||||||
|
/// @{
|
||||||
|
|
||||||
/// CreateSymbol - Create a new symbol with the specified @param Name.
|
/// CreateSymbol - Create a new symbol with the specified @param Name.
|
||||||
///
|
///
|
||||||
/// @param Name - The symbol name, which must be unique across all symbols.
|
/// @param Name - The symbol name, which must be unique across all symbols.
|
||||||
@ -72,6 +75,10 @@ namespace llvm {
|
|||||||
/// LookupSymbol - Get the symbol for @param Name, or null.
|
/// LookupSymbol - Get the symbol for @param Name, or null.
|
||||||
MCSymbol *LookupSymbol(const StringRef &Name) const;
|
MCSymbol *LookupSymbol(const StringRef &Name) const;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
/// @name Symbol Value Table
|
||||||
|
/// @{
|
||||||
|
|
||||||
/// ClearSymbolValue - Erase a value binding for @arg Symbol, if one exists.
|
/// ClearSymbolValue - Erase a value binding for @arg Symbol, if one exists.
|
||||||
void ClearSymbolValue(const MCSymbol *Symbol);
|
void ClearSymbolValue(const MCSymbol *Symbol);
|
||||||
|
|
||||||
@ -82,6 +89,8 @@ namespace llvm {
|
|||||||
/// none exists.
|
/// none exists.
|
||||||
const MCValue *GetSymbolValue(const MCSymbol *Symbol) const;
|
const MCValue *GetSymbolValue(const MCSymbol *Symbol) const;
|
||||||
|
|
||||||
|
/// @}
|
||||||
|
|
||||||
void *Allocate(unsigned Size, unsigned Align = 8) {
|
void *Allocate(unsigned Size, unsigned Align = 8) {
|
||||||
return Allocator.Allocate(Size, Align);
|
return Allocator.Allocate(Size, Align);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user