blob: 372c82a359f6b46ed81916defed6ceb9f2b111c8 [file] [log] [blame]
Eugene Zelenkofa57bd02017-09-27 23:26:01 +00001//===- StatepointLowering.h - SDAGBuilder's statepoint code ---*- C++ -*---===//
Philip Reames1a1bdb22014-12-02 18:50:36 +00002//
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 includes support code use by SelectionDAGBuilder when lowering a
11// statepoint sequence in SelectionDAG IR.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_LIB_CODEGEN_SELECTIONDAG_STATEPOINTLOWERING_H
16#define LLVM_LIB_CODEGEN_SELECTIONDAG_STATEPOINTLOWERING_H
17
18#include "llvm/ADT/DenseMap.h"
Eugene Zelenkofa57bd02017-09-27 23:26:01 +000019#include "llvm/ADT/STLExtras.h"
Sanjoy Das171313c2016-02-19 17:15:26 +000020#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenkofa57bd02017-09-27 23:26:01 +000021#include "llvm/ADT/SmallVector.h"
Philip Reames1a1bdb22014-12-02 18:50:36 +000022#include "llvm/CodeGen/SelectionDAGNodes.h"
Eugene Zelenkofa57bd02017-09-27 23:26:01 +000023#include "llvm/CodeGen/ValueTypes.h"
24#include <cassert>
Philip Reames1a1bdb22014-12-02 18:50:36 +000025
26namespace llvm {
Eugene Zelenkofa57bd02017-09-27 23:26:01 +000027
28class CallInst;
Philip Reames1a1bdb22014-12-02 18:50:36 +000029class SelectionDAGBuilder;
30
31/// This class tracks both per-statepoint and per-selectiondag information.
32/// For each statepoint it tracks locations of it's gc valuess (incoming and
33/// relocated) and list of gcreloc calls scheduled for visiting (this is
34/// used for a debug mode consistency check only). The spill slot tracking
35/// works in concert with information in FunctionLoweringInfo.
36class StatepointLoweringState {
37public:
Eugene Zelenkofa57bd02017-09-27 23:26:01 +000038 StatepointLoweringState() = default;
Philip Reames1a1bdb22014-12-02 18:50:36 +000039
40 /// Reset all state tracking for a newly encountered safepoint. Also
41 /// performs some consistency checking.
42 void startNewStatepoint(SelectionDAGBuilder &Builder);
43
44 /// Clear the memory usage of this object. This is called from
45 /// SelectionDAGBuilder::clear. We require this is never called in the
46 /// midst of processing a statepoint sequence.
47 void clear();
48
49 /// Returns the spill location of a value incoming to the current
50 /// statepoint. Will return SDValue() if this value hasn't been
51 /// spilled. Otherwise, the value has already been spilled and no
52 /// further action is required by the caller.
Sanjoy Das7edbef32016-03-23 02:24:13 +000053 SDValue getLocation(SDValue Val) {
Sanjoy Dasac53dc72016-03-23 02:24:15 +000054 auto I = Locations.find(Val);
55 if (I == Locations.end())
Philip Reames1a1bdb22014-12-02 18:50:36 +000056 return SDValue();
Sanjoy Dasac53dc72016-03-23 02:24:15 +000057 return I->second;
Philip Reames1a1bdb22014-12-02 18:50:36 +000058 }
Sanjoy Das7edbef32016-03-23 02:24:13 +000059
60 void setLocation(SDValue Val, SDValue Location) {
61 assert(!Locations.count(Val) &&
Philip Reames1a1bdb22014-12-02 18:50:36 +000062 "Trying to allocate already allocated location");
Sanjoy Das7edbef32016-03-23 02:24:13 +000063 Locations[Val] = Location;
Philip Reames1a1bdb22014-12-02 18:50:36 +000064 }
65
Philip Reames1a1bdb22014-12-02 18:50:36 +000066 /// Record the fact that we expect to encounter a given gc_relocate
67 /// before the next statepoint. If we don't see it, we'll report
68 /// an assertion.
69 void scheduleRelocCall(const CallInst &RelocCall) {
70 PendingGCRelocateCalls.push_back(&RelocCall);
71 }
Sanjoy Das7edbef32016-03-23 02:24:13 +000072
Philip Reames1a1bdb22014-12-02 18:50:36 +000073 /// Remove this gc_relocate from the list we're expecting to see
74 /// before the next statepoint. If we weren't expecting to see
75 /// it, we'll report an assertion.
76 void relocCallVisited(const CallInst &RelocCall) {
Eugene Zelenkofa57bd02017-09-27 23:26:01 +000077 auto I = llvm::find(PendingGCRelocateCalls, &RelocCall);
Sanjoy Das7edbef32016-03-23 02:24:13 +000078 assert(I != PendingGCRelocateCalls.end() &&
Philip Reames1a1bdb22014-12-02 18:50:36 +000079 "Visited unexpected gcrelocate call");
Sanjoy Das7edbef32016-03-23 02:24:13 +000080 PendingGCRelocateCalls.erase(I);
Philip Reames1a1bdb22014-12-02 18:50:36 +000081 }
82
83 // TODO: Should add consistency tracking to ensure we encounter
84 // expected gc_result calls too.
85
86 /// Get a stack slot we can use to store an value of type ValueType. This
87 /// will hopefully be a recylced slot from another statepoint.
88 SDValue allocateStackSlot(EVT ValueType, SelectionDAGBuilder &Builder);
89
90 void reserveStackSlot(int Offset) {
91 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() &&
92 "out of bounds");
Sanjoy Das171313c2016-02-19 17:15:26 +000093 assert(!AllocatedStackSlots.test(Offset) && "already reserved!");
Philip Reames1a1bdb22014-12-02 18:50:36 +000094 assert(NextSlotToAllocate <= (unsigned)Offset && "consistency!");
Sanjoy Das171313c2016-02-19 17:15:26 +000095 AllocatedStackSlots.set(Offset);
Philip Reames1a1bdb22014-12-02 18:50:36 +000096 }
Sanjoy Das7edbef32016-03-23 02:24:13 +000097
Philip Reames1a1bdb22014-12-02 18:50:36 +000098 bool isStackSlotAllocated(int Offset) {
99 assert(Offset >= 0 && Offset < (int)AllocatedStackSlots.size() &&
100 "out of bounds");
Sanjoy Das171313c2016-02-19 17:15:26 +0000101 return AllocatedStackSlots.test(Offset);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000102 }
103
104private:
105 /// Maps pre-relocation value (gc pointer directly incoming into statepoint)
106 /// into it's location (currently only stack slots)
107 DenseMap<SDValue, SDValue> Locations;
Philip Reames1a1bdb22014-12-02 18:50:36 +0000108
109 /// A boolean indicator for each slot listed in the FunctionInfo as to
110 /// whether it has been used in the current statepoint. Since we try to
111 /// preserve stack slots across safepoints, there can be gaps in which
112 /// slots have been allocated.
Sanjoy Das171313c2016-02-19 17:15:26 +0000113 SmallBitVector AllocatedStackSlots;
Philip Reames1a1bdb22014-12-02 18:50:36 +0000114
115 /// Points just beyond the last slot known to have been allocated
Eugene Zelenkofa57bd02017-09-27 23:26:01 +0000116 unsigned NextSlotToAllocate = 0;
Philip Reames1a1bdb22014-12-02 18:50:36 +0000117
118 /// Keep track of pending gcrelocate calls for consistency check
119 SmallVector<const CallInst *, 10> PendingGCRelocateCalls;
120};
Eugene Zelenkofa57bd02017-09-27 23:26:01 +0000121
Philip Reames1a1bdb22014-12-02 18:50:36 +0000122} // end namespace llvm
123
124#endif // LLVM_LIB_CODEGEN_SELECTIONDAG_STATEPOINTLOWERING_H