LLVM 19.0.0git
AddressPool.h
Go to the documentation of this file.
1//===- llvm/CodeGen/AddressPool.h - Dwarf Debug Framework -------*- 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
9#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_ADDRESSPOOL_H
10#define LLVM_LIB_CODEGEN_ASMPRINTER_ADDRESSPOOL_H
11
12#include "llvm/ADT/DenseMap.h"
13
14namespace llvm {
15
16class AsmPrinter;
17class MCSection;
18class MCSymbol;
19
20// Collection of addresses for this unit and assorted labels.
21// A Symbol->unsigned mapping of addresses used by indirect
22// references.
24 struct AddressPoolEntry {
25 unsigned Number;
26 bool TLS;
27
28 AddressPoolEntry(unsigned Number, bool TLS) : Number(Number), TLS(TLS) {}
29 };
31
32 /// Record whether the AddressPool has been queried for an address index since
33 /// the last "resetUsedFlag" call. Used to implement type unit fallback - a
34 /// type that references addresses cannot be placed in a type unit when using
35 /// fission.
36 bool HasBeenUsed = false;
37
38public:
39 AddressPool() = default;
40
41 /// Returns the index into the address pool with the given
42 /// label/symbol.
43 unsigned getIndex(const MCSymbol *Sym, bool TLS = false);
44
45 void emit(AsmPrinter &Asm, MCSection *AddrSection);
46
47 bool isEmpty() { return Pool.empty(); }
48
49 bool hasBeenUsed() const { return HasBeenUsed; }
50
51 void resetUsedFlag(bool HasBeenUsed = false) { this->HasBeenUsed = HasBeenUsed; }
52
53 MCSymbol *getLabel() { return AddressTableBaseSym; }
54 void setLabel(MCSymbol *Sym) { AddressTableBaseSym = Sym; }
55
56private:
57 MCSymbol *emitHeader(AsmPrinter &Asm, MCSection *Section);
58
59 /// Symbol designates the start of the contribution to the address table.
60 MCSymbol *AddressTableBaseSym = nullptr;
61};
62
63} // end namespace llvm
64
65#endif // LLVM_LIB_CODEGEN_ASMPRINTER_ADDRESSPOOL_H
dxil metadata emit
This file defines the DenseMap class.
Symbol * Sym
Definition: ELF_riscv.cpp:479
uint32_t Number
Definition: Profile.cpp:47
unsigned getIndex(const MCSymbol *Sym, bool TLS=false)
Returns the index into the address pool with the given label/symbol.
Definition: AddressPool.cpp:20
MCSymbol * getLabel()
Definition: AddressPool.h:53
void setLabel(MCSymbol *Sym)
Definition: AddressPool.h:54
bool hasBeenUsed() const
Definition: AddressPool.h:49
AddressPool()=default
void resetUsedFlag(bool HasBeenUsed=false)
Definition: AddressPool.h:51
This class is intended to be used as a driving class for all asm writers.
Definition: AsmPrinter.h:84
bool empty() const
Definition: DenseMap.h:98
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition: MCSection.h:39
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:40
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18