1 //===-- GCMetadata.h - Garbage collector metadata ---------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the GCFunctionInfo and GCModuleInfo classes, which are
11 // used as a communication channel from the target code generator to the target
12 // garbage collectors. This interface allows code generators and garbage
13 // collectors to be developed independently.
15 // The GCFunctionInfo class logs the data necessary to build a type accurate
16 // stack map. The code generator outputs:
18 // - Safe points as specified by the GCStrategy's NeededSafePoints.
19 // - Stack offsets for GC roots, as specified by calls to llvm.gcroot
21 // As a refinement, liveness analysis calculates the set of live roots at each
22 // safe point. Liveness analysis is not presently performed by the code
23 // generator, so all roots are assumed live.
25 // GCModuleInfo simply collects GCFunctionInfo instances for each Function as
26 // they are compiled. This accretion is necessary for collectors which must emit
27 // a stack map for the compilation unit as a whole. Therefore, GCFunctionInfo
28 // outlives the MachineFunction from which it is derived and must not refer to
29 // any code generator data structures.
31 //===----------------------------------------------------------------------===//
33 #ifndef LLVM_CODEGEN_GCMETADATA_H
34 #define LLVM_CODEGEN_GCMETADATA_H
36 #include "llvm/Pass.h"
37 #include "llvm/ADT/DenseMap.h"
38 #include "llvm/ADT/StringMap.h"
47 /// PointKind - The type of a collector-safe point.
50 Loop, //< Instr is a loop (backwards branch).
51 Return, //< Instr is a return instruction.
52 PreCall, //< Instr is a call instruction.
53 PostCall //< Instr is the return address of a call.
57 /// GCPoint - Metadata for a collector-safe point in machine code.
60 GC::PointKind Kind; //< The kind of the safe point.
61 MCSymbol *Label; //< A label.
63 GCPoint(GC::PointKind K, MCSymbol *L) : Kind(K), Label(L) {}
66 /// GCRoot - Metadata for a pointer to an object managed by the garbage
69 int Num; //< Usually a frame index.
70 int StackOffset; //< Offset from the stack pointer.
71 const Constant *Metadata;//< Metadata straight from the call to llvm.gcroot.
73 GCRoot(int N, const Constant *MD) : Num(N), StackOffset(-1), Metadata(MD) {}
77 /// GCFunctionInfo - Garbage collection metadata for a single function.
79 class GCFunctionInfo {
81 typedef std::vector<GCPoint>::iterator iterator;
82 typedef std::vector<GCRoot>::iterator roots_iterator;
83 typedef std::vector<GCRoot>::const_iterator live_iterator;
89 std::vector<GCRoot> Roots;
90 std::vector<GCPoint> SafePoints;
92 // FIXME: Liveness. A 2D BitVector, perhaps?
94 // BitVector Liveness;
96 // bool islive(int point, int root) =
97 // Liveness[point * SafePoints.size() + root]
99 // The bit vector is the more compact representation where >3.2% of roots
100 // are live per safe point (1.5% on 64-bit hosts).
103 GCFunctionInfo(const Function &F, GCStrategy &S);
106 /// getFunction - Return the function to which this metadata applies.
108 const Function &getFunction() const { return F; }
110 /// getStrategy - Return the GC strategy for the function.
112 GCStrategy &getStrategy() { return S; }
114 /// addStackRoot - Registers a root that lives on the stack. Num is the
115 /// stack object ID for the alloca (if the code generator is
116 // using MachineFrameInfo).
117 void addStackRoot(int Num, const Constant *Metadata) {
118 Roots.push_back(GCRoot(Num, Metadata));
121 /// addSafePoint - Notes the existence of a safe point. Num is the ID of the
122 /// label just prior to the safe point (if the code generator is using
123 /// MachineModuleInfo).
124 void addSafePoint(GC::PointKind Kind, MCSymbol *Label) {
125 SafePoints.push_back(GCPoint(Kind, Label));
128 /// getFrameSize/setFrameSize - Records the function's frame size.
130 uint64_t getFrameSize() const { return FrameSize; }
131 void setFrameSize(uint64_t S) { FrameSize = S; }
133 /// begin/end - Iterators for safe points.
135 iterator begin() { return SafePoints.begin(); }
136 iterator end() { return SafePoints.end(); }
137 size_t size() const { return SafePoints.size(); }
139 /// roots_begin/roots_end - Iterators for all roots in the function.
141 roots_iterator roots_begin() { return Roots.begin(); }
142 roots_iterator roots_end () { return Roots.end(); }
143 size_t roots_size() const { return Roots.size(); }
145 /// live_begin/live_end - Iterators for live roots at a given safe point.
147 live_iterator live_begin(const iterator &p) { return roots_begin(); }
148 live_iterator live_end (const iterator &p) { return roots_end(); }
149 size_t live_size(const iterator &p) const { return roots_size(); }
153 /// GCModuleInfo - Garbage collection metadata for a whole module.
155 class GCModuleInfo : public ImmutablePass {
156 typedef StringMap<GCStrategy*> strategy_map_type;
157 typedef std::vector<GCStrategy*> list_type;
158 typedef DenseMap<const Function*,GCFunctionInfo*> finfo_map_type;
160 strategy_map_type StrategyMap;
161 list_type StrategyList;
162 finfo_map_type FInfoMap;
164 GCStrategy *getOrCreateStrategy(const Module *M, const std::string &Name);
167 typedef list_type::const_iterator iterator;
174 /// clear - Resets the pass. The metadata deleter pass calls this.
178 /// begin/end - Iterators for used strategies.
180 iterator begin() const { return StrategyList.begin(); }
181 iterator end() const { return StrategyList.end(); }
183 /// get - Look up function metadata.
185 GCFunctionInfo &getFunctionInfo(const Function &F);