blob: 6a023b998b326f1a6df00bbc3a925796a2db55f8 [file] [log] [blame]
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +00001//===-- ErlangGCPrinter.cpp - Erlang/OTP frametable emitter -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the compiler plugin that is used in order to emit
11// garbage collection information in a convenient layout for parsing and
12// loading in the Erlang/OTP runtime.
13//
14//===----------------------------------------------------------------------===//
15
16#include "llvm/CodeGen/AsmPrinter.h"
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000017#include "llvm/CodeGen/GCMetadataPrinter.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000018#include "llvm/CodeGen/GCs.h"
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000019#include "llvm/IR/DataLayout.h"
20#include "llvm/IR/Function.h"
21#include "llvm/IR/Instruction.h"
22#include "llvm/IR/IntrinsicInst.h"
23#include "llvm/IR/Metadata.h"
24#include "llvm/MC/MCAsmInfo.h"
25#include "llvm/MC/MCContext.h"
26#include "llvm/MC/MCSectionELF.h"
27#include "llvm/MC/MCStreamer.h"
28#include "llvm/MC/MCSymbol.h"
29#include "llvm/Target/TargetLoweringObjectFile.h"
30#include "llvm/Target/TargetMachine.h"
Eric Christopherd9134482014-08-04 21:25:23 +000031#include "llvm/Target/TargetSubtargetInfo.h"
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000032
33using namespace llvm;
34
35namespace {
36
Philip Reames36319532015-01-16 23:16:12 +000037class ErlangGCPrinter : public GCMetadataPrinter {
38public:
39 void finishAssembly(Module &M, GCModuleInfo &Info, AsmPrinter &AP) override;
40};
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000041}
42
43static GCMetadataPrinterRegistry::Add<ErlangGCPrinter>
Philip Reames36319532015-01-16 23:16:12 +000044 X("erlang", "erlang-compatible garbage collector");
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000045
Philip Reames36319532015-01-16 23:16:12 +000046void llvm::linkErlangGCPrinter() {}
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000047
Philip Reames1e308972014-12-11 01:47:23 +000048void ErlangGCPrinter::finishAssembly(Module &M, GCModuleInfo &Info,
49 AsmPrinter &AP) {
Lang Hames9ff69c82015-04-24 19:11:51 +000050 MCStreamer &OS = *AP.OutStreamer;
Mehdi Aminibd7287e2015-07-16 06:11:10 +000051 unsigned IntPtrSize = M.getDataLayout().getPointerSize();
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000052
53 // Put this in a custom .note section.
Lang Hames9ff69c82015-04-24 19:11:51 +000054 OS.SwitchSection(
Rafael Espindolaba31e272015-01-29 17:33:21 +000055 AP.getObjFileLowering().getContext().getELFSection(".note.gc",
56 ELF::SHT_PROGBITS, 0));
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000057
58 // For each function...
Philip Reames1e308972014-12-11 01:47:23 +000059 for (GCModuleInfo::FuncInfoVec::iterator FI = Info.funcinfo_begin(),
Philip Reames36319532015-01-16 23:16:12 +000060 IE = Info.funcinfo_end();
Philip Reames1e308972014-12-11 01:47:23 +000061 FI != IE; ++FI) {
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000062 GCFunctionInfo &MD = **FI;
Philip Reames1e308972014-12-11 01:47:23 +000063 if (MD.getStrategy().getName() != getStrategy().getName())
64 // this function is managed by some other GC
65 continue;
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000066 /** A compact GC layout. Emit this data structure:
67 *
68 * struct {
69 * int16_t PointCount;
70 * void *SafePointAddress[PointCount];
71 * int16_t StackFrameSize; (in words)
72 * int16_t StackArity;
73 * int16_t LiveCount;
74 * int16_t LiveOffsets[LiveCount];
75 * } __gcmap_<FUNCTIONNAME>;
76 **/
77
78 // Align to address width.
79 AP.EmitAlignment(IntPtrSize == 4 ? 2 : 3);
80
81 // Emit PointCount.
82 OS.AddComment("safe point count");
83 AP.EmitInt16(MD.size());
84
85 // And each safe point...
86 for (GCFunctionInfo::iterator PI = MD.begin(), PE = MD.end(); PI != PE;
87 ++PI) {
88 // Emit the address of the safe point.
89 OS.AddComment("safe point address");
90 MCSymbol *Label = PI->Label;
Philip Reames36319532015-01-16 23:16:12 +000091 AP.EmitLabelPlusOffset(Label /*Hi*/, 0 /*Offset*/, 4 /*Size*/);
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +000092 }
93
94 // Stack information never change in safe points! Only print info from the
95 // first call-site.
96 GCFunctionInfo::iterator PI = MD.begin();
97
98 // Emit the stack frame size.
99 OS.AddComment("stack frame size (in words)");
100 AP.EmitInt16(MD.getFrameSize() / IntPtrSize);
101
102 // Emit stack arity, i.e. the number of stacked arguments.
103 unsigned RegisteredArgs = IntPtrSize == 4 ? 5 : 6;
Philip Reames36319532015-01-16 23:16:12 +0000104 unsigned StackArity = MD.getFunction().arg_size() > RegisteredArgs
105 ? MD.getFunction().arg_size() - RegisteredArgs
106 : 0;
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +0000107 OS.AddComment("stack arity");
108 AP.EmitInt16(StackArity);
109
110 // Emit the number of live roots in the function.
111 OS.AddComment("live root count");
112 AP.EmitInt16(MD.live_size(PI));
113
114 // And for each live root...
115 for (GCFunctionInfo::live_iterator LI = MD.live_begin(PI),
116 LE = MD.live_end(PI);
Philip Reames36319532015-01-16 23:16:12 +0000117 LI != LE; ++LI) {
Yiannis Tsiourisdbb4adf2013-03-25 13:47:46 +0000118 // Emit live root's offset within the stack frame.
119 OS.AddComment("stack index (offset / wordsize)");
120 AP.EmitInt16(LI->StackOffset / IntPtrSize);
121 }
122 }
123}