1//===- llvm/CodeGen/GCMetadataPrinter.h - Prints asm GC tables --*- C++ -*-===//
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
7//===----------------------------------------------------------------------===//
9// The abstract base class GCMetadataPrinter supports writing GC metadata tables
10// as assembly code. This is a separate class from GCStrategy in order to allow
11// users of the LLVM JIT to avoid linking with the AsmWriter.
13// Subclasses of GCMetadataPrinter must be registered using the
14// GCMetadataPrinterRegistry. This is separate from the GCStrategy itself
15// because these subclasses are logically plugins for the AsmWriter.
17//===----------------------------------------------------------------------===//
19#ifndef LLVM_CODEGEN_GCMETADATAPRINTER_H
20#define LLVM_CODEGEN_GCMETADATAPRINTER_H
33/// GCMetadataPrinterRegistry - The GC assembly printer registry uses all the
34/// defaults from Registry.
39/// GCMetadataPrinter - Emits GC metadata as assembly code. Instances are
40/// created, managed, and owned by the AsmPrinter.
48 // May only be subclassed.
58 /// Called before the assembly for the module is generated by
59 /// the AsmPrinter (but after target specific hooks.)
62 /// Called after the assembly for the module is generated by
63 /// the AsmPrinter (but before target specific hooks)
66 /// Called when the stack maps are generated. Return true if
67 /// stack maps with a custom format are generated. Otherwise
68 /// returns false and the default format will be used.
72}
// end namespace llvm
74#endif // LLVM_CODEGEN_GCMETADATAPRINTER_H
Analysis containing CSE Info
#define LLVM_TEMPLATE_ABI
This class is intended to be used as a driving class for all asm writers.
An analysis pass which caches information about the entire Module.
GCStrategy describes a garbage collector algorithm's code generation requirements,...
A Module instance is used to store all the information related to an LLVM module.
A global registry used in conjunction with static constructors to make pluggable components (like tar...
This is an optimization pass for GlobalISel generic memory operations.
Registry< GCMetadataPrinter > GCMetadataPrinterRegistry
GCMetadataPrinterRegistry - The GC assembly printer registry uses all the defaults from Registry.