blob: 6547a62d07786aba43f7ddf810e5a784608ceb38 [file] [log] [blame]
Philip Reames1a1bdb22014-12-02 18:50:36 +00001//===-- StatepointLowering.cpp - SDAGBuilder's statepoint code -----------===//
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 includes support code use by SelectionDAGBuilder when lowering a
11// statepoint sequence in SelectionDAG IR.
12//
13//===----------------------------------------------------------------------===//
14
15#include "StatepointLowering.h"
16#include "SelectionDAGBuilder.h"
17#include "llvm/ADT/SmallSet.h"
18#include "llvm/ADT/Statistic.h"
19#include "llvm/CodeGen/FunctionLoweringInfo.h"
Philip Reamescb0f9472015-12-23 23:44:28 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruth71f308a2015-02-13 09:09:03 +000021#include "llvm/CodeGen/GCMetadata.h"
Philip Reames56a03932015-01-26 18:26:35 +000022#include "llvm/CodeGen/GCStrategy.h"
Philip Reames1a1bdb22014-12-02 18:50:36 +000023#include "llvm/CodeGen/SelectionDAG.h"
24#include "llvm/CodeGen/StackMaps.h"
25#include "llvm/IR/CallingConv.h"
26#include "llvm/IR/Instructions.h"
27#include "llvm/IR/IntrinsicInst.h"
28#include "llvm/IR/Intrinsics.h"
29#include "llvm/IR/Statepoint.h"
30#include "llvm/Target/TargetLowering.h"
31#include <algorithm>
32using namespace llvm;
33
34#define DEBUG_TYPE "statepoint-lowering"
35
36STATISTIC(NumSlotsAllocatedForStatepoints,
37 "Number of stack slots allocated for statepoints");
38STATISTIC(NumOfStatepoints, "Number of statepoint nodes encountered");
39STATISTIC(StatepointMaxSlotsRequired,
40 "Maximum number of stack slots required for a singe statepoint");
41
Pat Gavlinc7dc6d6ee2015-05-12 19:50:19 +000042static void pushStackMapConstant(SmallVectorImpl<SDValue>& Ops,
43 SelectionDAGBuilder &Builder, uint64_t Value) {
44 SDLoc L = Builder.getCurSDLoc();
45 Ops.push_back(Builder.DAG.getTargetConstant(StackMaps::ConstantOp, L,
46 MVT::i64));
47 Ops.push_back(Builder.DAG.getTargetConstant(Value, L, MVT::i64));
48}
49
Pat Gavlin022c5ac2015-04-29 21:52:45 +000050void StatepointLoweringState::startNewStatepoint(SelectionDAGBuilder &Builder) {
Philip Reames1a1bdb22014-12-02 18:50:36 +000051 // Consistency check
52 assert(PendingGCRelocateCalls.empty() &&
53 "Trying to visit statepoint before finished processing previous one");
54 Locations.clear();
Philip Reames1a1bdb22014-12-02 18:50:36 +000055 NextSlotToAllocate = 0;
56 // Need to resize this on each safepoint - we need the two to stay in
57 // sync and the clear patterns of a SelectionDAGBuilder have no relation
58 // to FunctionLoweringInfo.
59 AllocatedStackSlots.resize(Builder.FuncInfo.StatepointStackSlots.size());
60 for (size_t i = 0; i < AllocatedStackSlots.size(); i++) {
61 AllocatedStackSlots[i] = false;
62 }
63}
Igor Laevsky423bc9ec2015-05-20 11:37:25 +000064
Philip Reames1a1bdb22014-12-02 18:50:36 +000065void StatepointLoweringState::clear() {
66 Locations.clear();
Philip Reames1a1bdb22014-12-02 18:50:36 +000067 AllocatedStackSlots.clear();
68 assert(PendingGCRelocateCalls.empty() &&
69 "cleared before statepoint sequence completed");
70}
71
72SDValue
73StatepointLoweringState::allocateStackSlot(EVT ValueType,
74 SelectionDAGBuilder &Builder) {
75
76 NumSlotsAllocatedForStatepoints++;
77
78 // The basic scheme here is to first look for a previously created stack slot
79 // which is not in use (accounting for the fact arbitrary slots may already
80 // be reserved), or to create a new stack slot and use it.
81
82 // If this doesn't succeed in 40000 iterations, something is seriously wrong
83 for (int i = 0; i < 40000; i++) {
84 assert(Builder.FuncInfo.StatepointStackSlots.size() ==
85 AllocatedStackSlots.size() &&
86 "broken invariant");
87 const size_t NumSlots = AllocatedStackSlots.size();
88 assert(NextSlotToAllocate <= NumSlots && "broken invariant");
89
90 if (NextSlotToAllocate >= NumSlots) {
91 assert(NextSlotToAllocate == NumSlots);
92 // record stats
93 if (NumSlots + 1 > StatepointMaxSlotsRequired) {
94 StatepointMaxSlotsRequired = NumSlots + 1;
95 }
96
97 SDValue SpillSlot = Builder.DAG.CreateStackTemporary(ValueType);
98 const unsigned FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Philip Reamescb0f9472015-12-23 23:44:28 +000099 auto *MFI = Builder.DAG.getMachineFunction().getFrameInfo();
100 MFI->markAsStatepointSpillSlotObjectIndex(FI);
101
Philip Reames1a1bdb22014-12-02 18:50:36 +0000102 Builder.FuncInfo.StatepointStackSlots.push_back(FI);
103 AllocatedStackSlots.push_back(true);
104 return SpillSlot;
105 }
106 if (!AllocatedStackSlots[NextSlotToAllocate]) {
107 const int FI = Builder.FuncInfo.StatepointStackSlots[NextSlotToAllocate];
108 AllocatedStackSlots[NextSlotToAllocate] = true;
109 return Builder.DAG.getFrameIndex(FI, ValueType);
110 }
111 // Note: We deliberately choose to advance this only on the failing path.
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000112 // Doing so on the succeeding path involves a bit of complexity that caused
113 // a minor bug previously. Unless performance shows this matters, please
Philip Reames1a1bdb22014-12-02 18:50:36 +0000114 // keep this code as simple as possible.
115 NextSlotToAllocate++;
116 }
117 llvm_unreachable("infinite loop?");
118}
119
Igor Laevsky346ff622015-06-10 12:31:53 +0000120/// Utility function for reservePreviousStackSlotForValue. Tries to find
121/// stack slot index to which we have spilled value for previous statepoints.
122/// LookUpDepth specifies maximum DFS depth this function is allowed to look.
123static Optional<int> findPreviousSpillSlot(const Value *Val,
124 SelectionDAGBuilder &Builder,
125 int LookUpDepth) {
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000126 // Can not look any further - give up now
Igor Laevsky346ff622015-06-10 12:31:53 +0000127 if (LookUpDepth <= 0)
128 return Optional<int>();
129
130 // Spill location is known for gc relocates
Manuel Jacob83eefa62016-01-05 04:03:00 +0000131 if (const auto *Relocate = dyn_cast<GCRelocateInst>(Val)) {
Igor Laevsky346ff622015-06-10 12:31:53 +0000132 FunctionLoweringInfo::StatepointSpilledValueMapTy &SpillMap =
Manuel Jacob83eefa62016-01-05 04:03:00 +0000133 Builder.FuncInfo.StatepointRelocatedValues[Relocate->getStatepoint()];
Igor Laevsky346ff622015-06-10 12:31:53 +0000134
Manuel Jacob83eefa62016-01-05 04:03:00 +0000135 auto It = SpillMap.find(Relocate->getDerivedPtr());
Igor Laevsky346ff622015-06-10 12:31:53 +0000136 if (It == SpillMap.end())
137 return Optional<int>();
138
139 return It->second;
140 }
141
142 // Look through bitcast instructions.
143 if (const BitCastInst *Cast = dyn_cast<BitCastInst>(Val)) {
144 return findPreviousSpillSlot(Cast->getOperand(0), Builder, LookUpDepth - 1);
145 }
146
147 // Look through phi nodes
148 // All incoming values should have same known stack slot, otherwise result
149 // is unknown.
150 if (const PHINode *Phi = dyn_cast<PHINode>(Val)) {
151 Optional<int> MergedResult = None;
152
153 for (auto &IncomingValue : Phi->incoming_values()) {
154 Optional<int> SpillSlot =
155 findPreviousSpillSlot(IncomingValue, Builder, LookUpDepth - 1);
156 if (!SpillSlot.hasValue())
157 return Optional<int>();
158
159 if (MergedResult.hasValue() && *MergedResult != *SpillSlot)
160 return Optional<int>();
161
162 MergedResult = SpillSlot;
163 }
164 return MergedResult;
165 }
166
167 // TODO: We can do better for PHI nodes. In cases like this:
168 // ptr = phi(relocated_pointer, not_relocated_pointer)
169 // statepoint(ptr)
170 // We will return that stack slot for ptr is unknown. And later we might
171 // assign different stack slots for ptr and relocated_pointer. This limits
172 // llvm's ability to remove redundant stores.
173 // Unfortunately it's hard to accomplish in current infrastructure.
174 // We use this function to eliminate spill store completely, while
175 // in example we still need to emit store, but instead of any location
176 // we need to use special "preferred" location.
177
178 // TODO: handle simple updates. If a value is modified and the original
179 // value is no longer live, it would be nice to put the modified value in the
180 // same slot. This allows folding of the memory accesses for some
181 // instructions types (like an increment).
182 // statepoint (i)
183 // i1 = i+1
184 // statepoint (i1)
185 // However we need to be careful for cases like this:
186 // statepoint(i)
187 // i1 = i+1
188 // statepoint(i, i1)
189 // Here we want to reserve spill slot for 'i', but not for 'i+1'. If we just
190 // put handling of simple modifications in this function like it's done
191 // for bitcasts we might end up reserving i's slot for 'i+1' because order in
192 // which we visit values is unspecified.
193
194 // Don't know any information about this instruction
195 return Optional<int>();
196}
197
Philip Reames1a1bdb22014-12-02 18:50:36 +0000198/// Try to find existing copies of the incoming values in stack slots used for
199/// statepoint spilling. If we can find a spill slot for the incoming value,
200/// mark that slot as allocated, and reuse the same slot for this safepoint.
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000201/// This helps to avoid series of loads and stores that only serve to reshuffle
Philip Reames1a1bdb22014-12-02 18:50:36 +0000202/// values on the stack between calls.
Igor Laevsky346ff622015-06-10 12:31:53 +0000203static void reservePreviousStackSlotForValue(const Value *IncomingValue,
Philip Reames1a1bdb22014-12-02 18:50:36 +0000204 SelectionDAGBuilder &Builder) {
205
Igor Laevsky346ff622015-06-10 12:31:53 +0000206 SDValue Incoming = Builder.getValue(IncomingValue);
207
Philip Reames1a1bdb22014-12-02 18:50:36 +0000208 if (isa<ConstantSDNode>(Incoming) || isa<FrameIndexSDNode>(Incoming)) {
209 // We won't need to spill this, so no need to check for previously
210 // allocated stack slots
211 return;
212 }
213
Igor Laevsky346ff622015-06-10 12:31:53 +0000214 SDValue OldLocation = Builder.StatepointLowering.getLocation(Incoming);
215 if (OldLocation.getNode())
Philip Reames1a1bdb22014-12-02 18:50:36 +0000216 // duplicates in input
217 return;
Igor Laevsky346ff622015-06-10 12:31:53 +0000218
219 const int LookUpDepth = 6;
220 Optional<int> Index =
221 findPreviousSpillSlot(IncomingValue, Builder, LookUpDepth);
222 if (!Index.hasValue())
223 return;
224
225 auto Itr = std::find(Builder.FuncInfo.StatepointStackSlots.begin(),
226 Builder.FuncInfo.StatepointStackSlots.end(), *Index);
227 assert(Itr != Builder.FuncInfo.StatepointStackSlots.end() &&
228 "value spilled to the unknown stack slot");
229
230 // This is one of our dedicated lowering slots
231 const int Offset =
232 std::distance(Builder.FuncInfo.StatepointStackSlots.begin(), Itr);
233 if (Builder.StatepointLowering.isStackSlotAllocated(Offset)) {
234 // stack slot already assigned to someone else, can't use it!
235 // TODO: currently we reserve space for gc arguments after doing
236 // normal allocation for deopt arguments. We should reserve for
237 // _all_ deopt and gc arguments, then start allocating. This
238 // will prevent some moves being inserted when vm state changes,
239 // but gc state doesn't between two calls.
240 return;
Philip Reames1a1bdb22014-12-02 18:50:36 +0000241 }
Igor Laevsky346ff622015-06-10 12:31:53 +0000242 // Reserve this stack slot
243 Builder.StatepointLowering.reserveStackSlot(Offset);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000244
Igor Laevsky346ff622015-06-10 12:31:53 +0000245 // Cache this slot so we find it when going through the normal
246 // assignment loop.
247 SDValue Loc = Builder.DAG.getTargetFrameIndex(*Index, Incoming.getValueType());
248 Builder.StatepointLowering.setLocation(Incoming, Loc);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000249}
250
251/// Remove any duplicate (as SDValues) from the derived pointer pairs. This
252/// is not required for correctness. It's purpose is to reduce the size of
253/// StackMap section. It has no effect on the number of spill slots required
254/// or the actual lowering.
255static void removeDuplicatesGCPtrs(SmallVectorImpl<const Value *> &Bases,
256 SmallVectorImpl<const Value *> &Ptrs,
257 SmallVectorImpl<const Value *> &Relocs,
258 SelectionDAGBuilder &Builder) {
259
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000260 // This is horribly inefficient, but I don't care right now
Philip Reames1a1bdb22014-12-02 18:50:36 +0000261 SmallSet<SDValue, 64> Seen;
262
263 SmallVector<const Value *, 64> NewBases, NewPtrs, NewRelocs;
264 for (size_t i = 0; i < Ptrs.size(); i++) {
265 SDValue SD = Builder.getValue(Ptrs[i]);
266 // Only add non-duplicates
267 if (Seen.count(SD) == 0) {
268 NewBases.push_back(Bases[i]);
269 NewPtrs.push_back(Ptrs[i]);
270 NewRelocs.push_back(Relocs[i]);
271 }
272 Seen.insert(SD);
273 }
274 assert(Bases.size() >= NewBases.size());
275 assert(Ptrs.size() >= NewPtrs.size());
276 assert(Relocs.size() >= NewRelocs.size());
277 Bases = NewBases;
278 Ptrs = NewPtrs;
279 Relocs = NewRelocs;
280 assert(Ptrs.size() == Bases.size());
281 assert(Ptrs.size() == Relocs.size());
282}
283
284/// Extract call from statepoint, lower it and return pointer to the
285/// call node. Also update NodeMap so that getValue(statepoint) will
286/// reference lowered call result
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000287static SDNode *
Reid Kleckner51189f0a2015-09-08 23:28:38 +0000288lowerCallFromStatepoint(ImmutableStatepoint ISP, const BasicBlock *EHPadBB,
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000289 SelectionDAGBuilder &Builder,
290 SmallVectorImpl<SDValue> &PendingExports) {
Philip Reames1a1bdb22014-12-02 18:50:36 +0000291
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000292 ImmutableCallSite CS(ISP.getCallSite());
Philip Reames1a1bdb22014-12-02 18:50:36 +0000293
Sanjoy Dascfe41f02015-07-28 23:50:30 +0000294 SDValue ActualCallee;
295
296 if (ISP.getNumPatchBytes() > 0) {
297 // If we've been asked to emit a nop sequence instead of a call instruction
298 // for this statepoint then don't lower the call target, but use a constant
299 // `null` instead. Not lowering the call target lets statepoint clients get
300 // away without providing a physical address for the symbolic call target at
301 // link time.
302
303 const auto &TLI = Builder.DAG.getTargetLoweringInfo();
304 const auto &DL = Builder.DAG.getDataLayout();
305
306 unsigned AS = ISP.getCalledValue()->getType()->getPointerAddressSpace();
307 ActualCallee = Builder.DAG.getConstant(0, Builder.getCurSDLoc(),
308 TLI.getPointerTy(DL, AS));
309 } else
310 ActualCallee = Builder.getValue(ISP.getCalledValue());
Philip Reames1a1bdb22014-12-02 18:50:36 +0000311
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000312 assert(CS.getCallingConv() != CallingConv::AnyReg &&
313 "anyregcc is not supported on statepoints!");
314
Sanjoy Das499d7032015-05-06 02:36:26 +0000315 Type *DefTy = ISP.getActualReturnType();
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000316 bool HasDef = !DefTy->isVoidTy();
317
318 SDValue ReturnValue, CallEndVal;
319 std::tie(ReturnValue, CallEndVal) = Builder.lowerCallOperands(
Sanjoy Das4bfb4722015-05-06 02:36:31 +0000320 ISP.getCallSite(), ImmutableStatepoint::CallArgsBeginPos,
Reid Kleckner51189f0a2015-09-08 23:28:38 +0000321 ISP.getNumCallArgs(), ActualCallee, DefTy, EHPadBB,
Sanjoy Das4bfb4722015-05-06 02:36:31 +0000322 false /* IsPatchPoint */);
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000323
324 SDNode *CallEnd = CallEndVal.getNode();
325
326 // Get a call instruction from the call sequence chain. Tail calls are not
327 // allowed. The following code is essentially reverse engineering X86's
328 // LowerCallTo.
329 //
330 // We are expecting DAG to have the following form:
331 //
332 // ch = eh_label (only in case of invoke statepoint)
333 // ch, glue = callseq_start ch
334 // ch, glue = X86::Call ch, glue
335 // ch, glue = callseq_end ch, glue
336 // get_return_value ch, glue
337 //
Pat Gavlinc8ea1572015-11-17 16:04:21 +0000338 // get_return_value can either be a sequence of CopyFromReg instructions
339 // to grab the return value from the return register(s), or it can be a LOAD
340 // to load a value returned by reference via a stack slot.
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000341
Pat Gavlinc8ea1572015-11-17 16:04:21 +0000342 if (HasDef) {
343 if (CallEnd->getOpcode() == ISD::LOAD)
344 CallEnd = CallEnd->getOperand(0).getNode();
345 else
346 while (CallEnd->getOpcode() == ISD::CopyFromReg)
347 CallEnd = CallEnd->getOperand(0).getNode();
348 }
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000349
350 assert(CallEnd->getOpcode() == ISD::CALLSEQ_END && "expected!");
351
Igor Laevsky35fe6922015-11-04 01:16:10 +0000352 // Export the result value if needed
353 const Instruction *GCResult = ISP.getGCResult();
354 if (HasDef && GCResult) {
355 if (GCResult->getParent() != CS.getParent()) {
356 // Result value will be used in a different basic block so we need to
357 // export it now.
358 // Default exporting mechanism will not work here because statepoint call
359 // has a different type than the actual call. It means that by default
360 // llvm will create export register of the wrong type (always i32 in our
361 // case). So instead we need to create export register with correct type
362 // manually.
Igor Laevsky85f7f722015-03-10 16:26:48 +0000363 // TODO: To eliminate this problem we can remove gc.result intrinsics
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000364 // completely and make statepoint call to return a tuple.
Sanjoy Das499d7032015-05-06 02:36:26 +0000365 unsigned Reg = Builder.FuncInfo.CreateRegs(ISP.getActualReturnType());
Mehdi Amini56228da2015-07-09 01:57:34 +0000366 RegsForValue RFV(
367 *Builder.DAG.getContext(), Builder.DAG.getTargetLoweringInfo(),
368 Builder.DAG.getDataLayout(), Reg, ISP.getActualReturnType());
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000369 SDValue Chain = Builder.DAG.getEntryNode();
370
371 RFV.getCopyToRegs(ReturnValue, Builder.DAG, Builder.getCurSDLoc(), Chain,
372 nullptr);
373 PendingExports.push_back(Chain);
374 Builder.FuncInfo.ValueMap[CS.getInstruction()] = Reg;
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000375 } else {
Igor Laevsky35fe6922015-11-04 01:16:10 +0000376 // Result value will be used in a same basic block. Don't export it or
377 // perform any explicit register copies.
378 // We'll replace the actuall call node shortly. gc_result will grab
Igor Laevsky85f7f722015-03-10 16:26:48 +0000379 // this value.
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000380 Builder.setValue(CS.getInstruction(), ReturnValue);
Igor Laevsky85f7f722015-03-10 16:26:48 +0000381 }
Philip Reames1a1bdb22014-12-02 18:50:36 +0000382 } else {
383 // The token value is never used from here on, just generate a poison value
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000384 Builder.setValue(CS.getInstruction(),
385 Builder.DAG.getIntPtrConstant(-1, Builder.getCurSDLoc()));
Philip Reames1a1bdb22014-12-02 18:50:36 +0000386 }
Philip Reames1a1bdb22014-12-02 18:50:36 +0000387
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000388 return CallEnd->getOperand(0).getNode();
Philip Reames1a1bdb22014-12-02 18:50:36 +0000389}
390
391/// Callect all gc pointers coming into statepoint intrinsic, clean them up,
392/// and return two arrays:
393/// Bases - base pointers incoming to this statepoint
394/// Ptrs - derived pointers incoming to this statepoint
395/// Relocs - the gc_relocate corresponding to each base/ptr pair
396/// Elements of this arrays should be in one-to-one correspondence with each
397/// other i.e Bases[i], Ptrs[i] are from the same gcrelocate call
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000398static void getIncomingStatepointGCValues(
399 SmallVectorImpl<const Value *> &Bases, SmallVectorImpl<const Value *> &Ptrs,
400 SmallVectorImpl<const Value *> &Relocs, ImmutableStatepoint StatepointSite,
401 SelectionDAGBuilder &Builder) {
Manuel Jacob83eefa62016-01-05 04:03:00 +0000402 for (const GCRelocateInst *Relocate : StatepointSite.getRelocates()) {
403 Relocs.push_back(Relocate);
404 Bases.push_back(Relocate->getBasePtr());
405 Ptrs.push_back(Relocate->getDerivedPtr());
Philip Reames1a1bdb22014-12-02 18:50:36 +0000406 }
407
408 // Remove any redundant llvm::Values which map to the same SDValue as another
409 // input. Also has the effect of removing duplicates in the original
410 // llvm::Value input list as well. This is a useful optimization for
411 // reducing the size of the StackMap section. It has no other impact.
412 removeDuplicatesGCPtrs(Bases, Ptrs, Relocs, Builder);
413
414 assert(Bases.size() == Ptrs.size() && Ptrs.size() == Relocs.size());
415}
416
417/// Spill a value incoming to the statepoint. It might be either part of
418/// vmstate
419/// or gcstate. In both cases unconditionally spill it on the stack unless it
420/// is a null constant. Return pair with first element being frame index
421/// containing saved value and second element with outgoing chain from the
422/// emitted store
423static std::pair<SDValue, SDValue>
424spillIncomingStatepointValue(SDValue Incoming, SDValue Chain,
425 SelectionDAGBuilder &Builder) {
426 SDValue Loc = Builder.StatepointLowering.getLocation(Incoming);
427
428 // Emit new store if we didn't do it for this ptr before
429 if (!Loc.getNode()) {
430 Loc = Builder.StatepointLowering.allocateStackSlot(Incoming.getValueType(),
431 Builder);
432 assert(isa<FrameIndexSDNode>(Loc));
433 int Index = cast<FrameIndexSDNode>(Loc)->getIndex();
434 // We use TargetFrameIndex so that isel will not select it into LEA
435 Loc = Builder.DAG.getTargetFrameIndex(Index, Incoming.getValueType());
436
437 // TODO: We can create TokenFactor node instead of
438 // chaining stores one after another, this may allow
439 // a bit more optimal scheduling for them
440 Chain = Builder.DAG.getStore(Chain, Builder.getCurSDLoc(), Incoming, Loc,
Alex Lorenze40c8a22015-08-11 23:09:45 +0000441 MachinePointerInfo::getFixedStack(
442 Builder.DAG.getMachineFunction(), Index),
Philip Reames1a1bdb22014-12-02 18:50:36 +0000443 false, false, 0);
444
445 Builder.StatepointLowering.setLocation(Incoming, Loc);
446 }
447
448 assert(Loc.getNode());
449 return std::make_pair(Loc, Chain);
450}
451
452/// Lower a single value incoming to a statepoint node. This value can be
453/// either a deopt value or a gc value, the handling is the same. We special
454/// case constants and allocas, then fall back to spilling if required.
455static void lowerIncomingStatepointValue(SDValue Incoming,
456 SmallVectorImpl<SDValue> &Ops,
457 SelectionDAGBuilder &Builder) {
458 SDValue Chain = Builder.getRoot();
459
460 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Incoming)) {
461 // If the original value was a constant, make sure it gets recorded as
462 // such in the stackmap. This is required so that the consumer can
463 // parse any internal format to the deopt state. It also handles null
464 // pointers and other constant pointers in GC states
Pat Gavlinc7dc6d6ee2015-05-12 19:50:19 +0000465 pushStackMapConstant(Ops, Builder, C->getSExtValue());
Philip Reames1a1bdb22014-12-02 18:50:36 +0000466 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Incoming)) {
Philip Reamesf8f09332015-03-27 04:52:48 +0000467 // This handles allocas as arguments to the statepoint (this is only
468 // really meaningful for a deopt value. For GC, we'd be trying to
469 // relocate the address of the alloca itself?)
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000470 Ops.push_back(Builder.DAG.getTargetFrameIndex(FI->getIndex(),
Philip Reamesf8f09332015-03-27 04:52:48 +0000471 Incoming.getValueType()));
Philip Reames1a1bdb22014-12-02 18:50:36 +0000472 } else {
473 // Otherwise, locate a spill slot and explicitly spill it so it
474 // can be found by the runtime later. We currently do not support
475 // tracking values through callee saved registers to their eventual
476 // spill location. This would be a useful optimization, but would
477 // need to be optional since it requires a lot of complexity on the
478 // runtime side which not all would support.
479 std::pair<SDValue, SDValue> Res =
480 spillIncomingStatepointValue(Incoming, Chain, Builder);
481 Ops.push_back(Res.first);
482 Chain = Res.second;
483 }
484
485 Builder.DAG.setRoot(Chain);
486}
487
488/// Lower deopt state and gc pointer arguments of the statepoint. The actual
489/// lowering is described in lowerIncomingStatepointValue. This function is
490/// responsible for lowering everything in the right position and playing some
491/// tricks to avoid redundant stack manipulation where possible. On
492/// completion, 'Ops' will contain ready to use operands for machine code
493/// statepoint. The chain nodes will have already been created and the DAG root
494/// will be set to the last value spilled (if any were).
495static void lowerStatepointMetaArgs(SmallVectorImpl<SDValue> &Ops,
Igor Laevsky7fc58a42015-02-20 15:28:35 +0000496 ImmutableStatepoint StatepointSite,
Philip Reames1a1bdb22014-12-02 18:50:36 +0000497 SelectionDAGBuilder &Builder) {
498
499 // Lower the deopt and gc arguments for this statepoint. Layout will
500 // be: deopt argument length, deopt arguments.., gc arguments...
501
502 SmallVector<const Value *, 64> Bases, Ptrs, Relocations;
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000503 getIncomingStatepointGCValues(Bases, Ptrs, Relocations, StatepointSite,
504 Builder);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000505
Philip Reames4ac17a32015-01-07 19:07:50 +0000506#ifndef NDEBUG
507 // Check that each of the gc pointer and bases we've gotten out of the
508 // safepoint is something the strategy thinks might be a pointer into the GC
509 // heap. This is basically just here to help catch errors during statepoint
510 // insertion. TODO: This should actually be in the Verifier, but we can't get
511 // to the GCStrategy from there (yet).
Philip Reamese1bf2702015-03-27 05:09:33 +0000512 GCStrategy &S = Builder.GFI->getStrategy();
513 for (const Value *V : Bases) {
Philip Reamesee8f0552015-12-23 01:42:15 +0000514 auto Opt = S.isGCManagedPointer(V->getType());
Philip Reamese1bf2702015-03-27 05:09:33 +0000515 if (Opt.hasValue()) {
516 assert(Opt.getValue() &&
517 "non gc managed base pointer found in statepoint");
Philip Reames4ac17a32015-01-07 19:07:50 +0000518 }
Philip Reamese1bf2702015-03-27 05:09:33 +0000519 }
520 for (const Value *V : Ptrs) {
Philip Reamesee8f0552015-12-23 01:42:15 +0000521 auto Opt = S.isGCManagedPointer(V->getType());
Philip Reamese1bf2702015-03-27 05:09:33 +0000522 if (Opt.hasValue()) {
523 assert(Opt.getValue() &&
524 "non gc managed derived pointer found in statepoint");
Philip Reames4ac17a32015-01-07 19:07:50 +0000525 }
Philip Reamese1bf2702015-03-27 05:09:33 +0000526 }
527 for (const Value *V : Relocations) {
Philip Reamesee8f0552015-12-23 01:42:15 +0000528 auto Opt = S.isGCManagedPointer(V->getType());
Philip Reamese1bf2702015-03-27 05:09:33 +0000529 if (Opt.hasValue()) {
530 assert(Opt.getValue() && "non gc managed pointer relocated");
Philip Reames4ac17a32015-01-07 19:07:50 +0000531 }
532 }
533#endif
534
Philip Reames1a1bdb22014-12-02 18:50:36 +0000535 // Before we actually start lowering (and allocating spill slots for values),
536 // reserve any stack slots which we judge to be profitable to reuse for a
537 // particular value. This is purely an optimization over the code below and
538 // doesn't change semantics at all. It is important for performance that we
539 // reserve slots for both deopt and gc values before lowering either.
Pat Gavlin08d70272015-05-12 21:33:48 +0000540 for (const Value *V : StatepointSite.vm_state_args()) {
Igor Laevsky346ff622015-06-10 12:31:53 +0000541 reservePreviousStackSlotForValue(V, Builder);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000542 }
Igor Laevsky87ef5ea2015-05-12 13:12:14 +0000543 for (unsigned i = 0; i < Bases.size(); ++i) {
Igor Laevsky346ff622015-06-10 12:31:53 +0000544 reservePreviousStackSlotForValue(Bases[i], Builder);
545 reservePreviousStackSlotForValue(Ptrs[i], Builder);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000546 }
547
548 // First, prefix the list with the number of unique values to be
549 // lowered. Note that this is the number of *Values* not the
550 // number of SDValues required to lower them.
Sanjoy Das499d7032015-05-06 02:36:26 +0000551 const int NumVMSArgs = StatepointSite.getNumTotalVMSArgs();
Pat Gavlinc7dc6d6ee2015-05-12 19:50:19 +0000552 pushStackMapConstant(Ops, Builder, NumVMSArgs);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000553
Pat Gavlin08d70272015-05-12 21:33:48 +0000554 assert(NumVMSArgs == std::distance(StatepointSite.vm_state_begin(),
555 StatepointSite.vm_state_end()));
Philip Reames1a1bdb22014-12-02 18:50:36 +0000556
557 // The vm state arguments are lowered in an opaque manner. We do
558 // not know what type of values are contained within. We skip the
559 // first one since that happens to be the total number we lowered
560 // explicitly just above. We could have left it in the loop and
561 // not done it explicitly, but it's far easier to understand this
562 // way.
Pat Gavlin08d70272015-05-12 21:33:48 +0000563 for (const Value *V : StatepointSite.vm_state_args()) {
Philip Reames1a1bdb22014-12-02 18:50:36 +0000564 SDValue Incoming = Builder.getValue(V);
565 lowerIncomingStatepointValue(Incoming, Ops, Builder);
566 }
567
568 // Finally, go ahead and lower all the gc arguments. There's no prefixed
569 // length for this one. After lowering, we'll have the base and pointer
570 // arrays interwoven with each (lowered) base pointer immediately followed by
571 // it's (lowered) derived pointer. i.e
572 // (base[0], ptr[0], base[1], ptr[1], ...)
Igor Laevsky87ef5ea2015-05-12 13:12:14 +0000573 for (unsigned i = 0; i < Bases.size(); ++i) {
574 const Value *Base = Bases[i];
575 lowerIncomingStatepointValue(Builder.getValue(Base), Ops, Builder);
576
577 const Value *Ptr = Ptrs[i];
578 lowerIncomingStatepointValue(Builder.getValue(Ptr), Ops, Builder);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000579 }
Philip Reamesf8f09332015-03-27 04:52:48 +0000580
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000581 // If there are any explicit spill slots passed to the statepoint, record
Philip Reamesf8f09332015-03-27 04:52:48 +0000582 // them, but otherwise do not do anything special. These are user provided
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000583 // allocas and give control over placement to the consumer. In this case,
Philip Reamesf8f09332015-03-27 04:52:48 +0000584 // it is the contents of the slot which may get updated, not the pointer to
585 // the alloca
586 for (Value *V : StatepointSite.gc_args()) {
587 SDValue Incoming = Builder.getValue(V);
588 if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Incoming)) {
589 // This handles allocas as arguments to the statepoint
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000590 Ops.push_back(Builder.DAG.getTargetFrameIndex(FI->getIndex(),
Philip Reamesf8f09332015-03-27 04:52:48 +0000591 Incoming.getValueType()));
Philip Reamesf8f09332015-03-27 04:52:48 +0000592 }
593 }
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000594
595 // Record computed locations for all lowered values.
596 // This can not be embedded in lowering loops as we need to record *all*
597 // values, while previous loops account only values with unique SDValues.
598 const Instruction *StatepointInstr =
599 StatepointSite.getCallSite().getInstruction();
600 FunctionLoweringInfo::StatepointSpilledValueMapTy &SpillMap =
601 Builder.FuncInfo.StatepointRelocatedValues[StatepointInstr];
602
Manuel Jacob83eefa62016-01-05 04:03:00 +0000603 for (const GCRelocateInst *Relocate : StatepointSite.getRelocates()) {
604 const Value *V = Relocate->getDerivedPtr();
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000605 SDValue SDV = Builder.getValue(V);
606 SDValue Loc = Builder.StatepointLowering.getLocation(SDV);
607
608 if (Loc.getNode()) {
609 SpillMap[V] = cast<FrameIndexSDNode>(Loc)->getIndex();
610 } else {
611 // Record value as visited, but not spilled. This is case for allocas
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000612 // and constants. For this values we can avoid emitting spill load while
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000613 // visiting corresponding gc_relocate.
614 // Actually we do not need to record them in this map at all.
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000615 // We do this only to check that we are not relocating any unvisited
616 // value.
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000617 SpillMap[V] = None;
618
619 // Default llvm mechanisms for exporting values which are used in
620 // different basic blocks does not work for gc relocates.
621 // Note that it would be incorrect to teach llvm that all relocates are
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000622 // uses of the corresponding values so that it would automatically
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000623 // export them. Relocates of the spilled values does not use original
624 // value.
Manuel Jacob83eefa62016-01-05 04:03:00 +0000625 if (Relocate->getParent() != StatepointInstr->getParent())
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000626 Builder.ExportFromCurrentBlock(V);
627 }
628 }
Philip Reames1a1bdb22014-12-02 18:50:36 +0000629}
Igor Laevsky7fc58a42015-02-20 15:28:35 +0000630
Philip Reames1a1bdb22014-12-02 18:50:36 +0000631void SelectionDAGBuilder::visitStatepoint(const CallInst &CI) {
Igor Laevsky7fc58a42015-02-20 15:28:35 +0000632 // Check some preconditions for sanity
633 assert(isStatepoint(&CI) &&
634 "function called must be the statepoint function");
635
636 LowerStatepoint(ImmutableStatepoint(&CI));
637}
638
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000639void SelectionDAGBuilder::LowerStatepoint(
Reid Kleckner51189f0a2015-09-08 23:28:38 +0000640 ImmutableStatepoint ISP, const BasicBlock *EHPadBB /*= nullptr*/) {
Philip Reames1a1bdb22014-12-02 18:50:36 +0000641 // The basic scheme here is that information about both the original call and
642 // the safepoint is encoded in the CallInst. We create a temporary call and
643 // lower it, then reverse engineer the calling sequence.
644
Philip Reames1a1bdb22014-12-02 18:50:36 +0000645 NumOfStatepoints++;
646 // Clear state
647 StatepointLowering.startNewStatepoint(*this);
648
Igor Laevsky7fc58a42015-02-20 15:28:35 +0000649 ImmutableCallSite CS(ISP.getCallSite());
650
Philip Reames1a1bdb22014-12-02 18:50:36 +0000651#ifndef NDEBUG
Igor Laevsky35fe6922015-11-04 01:16:10 +0000652 // Consistency check. Check only relocates in the same basic block as thier
653 // statepoint.
654 for (const User *U : CS->users()) {
655 const CallInst *Call = cast<CallInst>(U);
Manuel Jacob83eefa62016-01-05 04:03:00 +0000656 if (isa<GCRelocateInst>(Call) && Call->getParent() == CS.getParent())
Igor Laevsky35fe6922015-11-04 01:16:10 +0000657 StatepointLowering.scheduleRelocCall(*Call);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000658 }
659#endif
660
Philip Reames72fbe7a2014-12-02 21:01:48 +0000661#ifndef NDEBUG
662 // If this is a malformed statepoint, report it early to simplify debugging.
663 // This should catch any IR level mistake that's made when constructing or
664 // transforming statepoints.
665 ISP.verify();
Philip Reames4ac17a32015-01-07 19:07:50 +0000666
667 // Check that the associated GCStrategy expects to encounter statepoints.
Philip Reamese1bf2702015-03-27 05:09:33 +0000668 assert(GFI->getStrategy().useStatepoints() &&
669 "GCStrategy does not expect to encounter statepoints");
Philip Reames72fbe7a2014-12-02 21:01:48 +0000670#endif
671
Philip Reames1a1bdb22014-12-02 18:50:36 +0000672 // Lower statepoint vmstate and gcstate arguments
Sanjoy Das3fb91c02015-05-05 23:06:49 +0000673 SmallVector<SDValue, 10> LoweredMetaArgs;
674 lowerStatepointMetaArgs(LoweredMetaArgs, ISP, *this);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000675
676 // Get call node, we will replace it later with statepoint
Sanjoy Dasc6bf3e92015-05-06 02:36:20 +0000677 SDNode *CallNode =
Reid Kleckner51189f0a2015-09-08 23:28:38 +0000678 lowerCallFromStatepoint(ISP, EHPadBB, *this, PendingExports);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000679
Pat Gavlincc0431d2015-05-08 18:07:42 +0000680 // Construct the actual GC_TRANSITION_START, STATEPOINT, and GC_TRANSITION_END
681 // nodes with all the appropriate arguments and return values.
Philip Reames1a1bdb22014-12-02 18:50:36 +0000682
Philip Reames1a1bdb22014-12-02 18:50:36 +0000683 // Call Node: Chain, Target, {Args}, RegMask, [Glue]
Pat Gavlincc0431d2015-05-08 18:07:42 +0000684 SDValue Chain = CallNode->getOperand(0);
685
Philip Reames1a1bdb22014-12-02 18:50:36 +0000686 SDValue Glue;
Pat Gavlincc0431d2015-05-08 18:07:42 +0000687 bool CallHasIncomingGlue = CallNode->getGluedNode();
688 if (CallHasIncomingGlue) {
Philip Reames1a1bdb22014-12-02 18:50:36 +0000689 // Glue is always last operand
690 Glue = CallNode->getOperand(CallNode->getNumOperands() - 1);
691 }
Pat Gavlincc0431d2015-05-08 18:07:42 +0000692
693 // Build the GC_TRANSITION_START node if necessary.
694 //
695 // The operands to the GC_TRANSITION_{START,END} nodes are laid out in the
696 // order in which they appear in the call to the statepoint intrinsic. If
697 // any of the operands is a pointer-typed, that operand is immediately
698 // followed by a SRCVALUE for the pointer that may be used during lowering
699 // (e.g. to form MachinePointerInfo values for loads/stores).
700 const bool IsGCTransition =
701 (ISP.getFlags() & (uint64_t)StatepointFlags::GCTransition) ==
702 (uint64_t)StatepointFlags::GCTransition;
703 if (IsGCTransition) {
704 SmallVector<SDValue, 8> TSOps;
705
706 // Add chain
707 TSOps.push_back(Chain);
708
709 // Add GC transition arguments
Pat Gavlin08d70272015-05-12 21:33:48 +0000710 for (const Value *V : ISP.gc_transition_args()) {
711 TSOps.push_back(getValue(V));
712 if (V->getType()->isPointerTy())
713 TSOps.push_back(DAG.getSrcValue(V));
Pat Gavlincc0431d2015-05-08 18:07:42 +0000714 }
715
716 // Add glue if necessary
717 if (CallHasIncomingGlue)
718 TSOps.push_back(Glue);
719
720 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
721
722 SDValue GCTransitionStart =
723 DAG.getNode(ISD::GC_TRANSITION_START, getCurSDLoc(), NodeTys, TSOps);
724
725 Chain = GCTransitionStart.getValue(0);
726 Glue = GCTransitionStart.getValue(1);
727 }
728
Sanjoy Dasa1d39ba2015-05-12 23:52:24 +0000729 // TODO: Currently, all of these operands are being marked as read/write in
730 // PrologEpilougeInserter.cpp, we should special case the VMState arguments
731 // and flags to be read-only.
732 SmallVector<SDValue, 40> Ops;
733
734 // Add the <id> and <numBytes> constants.
735 Ops.push_back(DAG.getTargetConstant(ISP.getID(), getCurSDLoc(), MVT::i64));
736 Ops.push_back(
737 DAG.getTargetConstant(ISP.getNumPatchBytes(), getCurSDLoc(), MVT::i32));
738
Pat Gavlincc0431d2015-05-08 18:07:42 +0000739 // Calculate and push starting position of vmstate arguments
Philip Reames1a1bdb22014-12-02 18:50:36 +0000740 // Get number of arguments incoming directly into call node
741 unsigned NumCallRegArgs =
Pat Gavlincc0431d2015-05-08 18:07:42 +0000742 CallNode->getNumOperands() - (CallHasIncomingGlue ? 4 : 3);
Sergey Dmitrouk842a51b2015-04-28 14:05:47 +0000743 Ops.push_back(DAG.getTargetConstant(NumCallRegArgs, getCurSDLoc(), MVT::i32));
Philip Reames1a1bdb22014-12-02 18:50:36 +0000744
745 // Add call target
746 SDValue CallTarget = SDValue(CallNode->getOperand(1).getNode(), 0);
747 Ops.push_back(CallTarget);
748
749 // Add call arguments
750 // Get position of register mask in the call
751 SDNode::op_iterator RegMaskIt;
Pat Gavlincc0431d2015-05-08 18:07:42 +0000752 if (CallHasIncomingGlue)
Philip Reames1a1bdb22014-12-02 18:50:36 +0000753 RegMaskIt = CallNode->op_end() - 2;
754 else
755 RegMaskIt = CallNode->op_end() - 1;
756 Ops.insert(Ops.end(), CallNode->op_begin() + 2, RegMaskIt);
757
Pat Gavlinc7dc6d6ee2015-05-12 19:50:19 +0000758 // Add a constant argument for the calling convention
759 pushStackMapConstant(Ops, *this, CS.getCallingConv());
760
761 // Add a constant argument for the flags
Sanjoy Dasa1d39ba2015-05-12 23:52:24 +0000762 uint64_t Flags = ISP.getFlags();
Pat Gavlincc0431d2015-05-08 18:07:42 +0000763 assert(
764 ((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0)
765 && "unknown flag used");
Pat Gavlinc7dc6d6ee2015-05-12 19:50:19 +0000766 pushStackMapConstant(Ops, *this, Flags);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000767
768 // Insert all vmstate and gcstate arguments
Sanjoy Das3fb91c02015-05-05 23:06:49 +0000769 Ops.insert(Ops.end(), LoweredMetaArgs.begin(), LoweredMetaArgs.end());
Philip Reames1a1bdb22014-12-02 18:50:36 +0000770
771 // Add register mask from call node
772 Ops.push_back(*RegMaskIt);
773
774 // Add chain
Pat Gavlincc0431d2015-05-08 18:07:42 +0000775 Ops.push_back(Chain);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000776
777 // Same for the glue, but we add it only if original call had it
778 if (Glue.getNode())
779 Ops.push_back(Glue);
780
Benjamin Kramerea68a942015-02-19 15:26:17 +0000781 // Compute return values. Provide a glue output since we consume one as
782 // input. This allows someone else to chain off us as needed.
783 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000784
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000785 SDNode *StatepointMCNode =
786 DAG.getMachineNode(TargetOpcode::STATEPOINT, getCurSDLoc(), NodeTys, Ops);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000787
Pat Gavlincc0431d2015-05-08 18:07:42 +0000788 SDNode *SinkNode = StatepointMCNode;
789
790 // Build the GC_TRANSITION_END node if necessary.
791 //
792 // See the comment above regarding GC_TRANSITION_START for the layout of
793 // the operands to the GC_TRANSITION_END node.
794 if (IsGCTransition) {
795 SmallVector<SDValue, 8> TEOps;
796
797 // Add chain
798 TEOps.push_back(SDValue(StatepointMCNode, 0));
799
800 // Add GC transition arguments
Pat Gavlin08d70272015-05-12 21:33:48 +0000801 for (const Value *V : ISP.gc_transition_args()) {
802 TEOps.push_back(getValue(V));
803 if (V->getType()->isPointerTy())
804 TEOps.push_back(DAG.getSrcValue(V));
Pat Gavlincc0431d2015-05-08 18:07:42 +0000805 }
806
807 // Add glue
808 TEOps.push_back(SDValue(StatepointMCNode, 1));
809
810 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
811
812 SDValue GCTransitionStart =
813 DAG.getNode(ISD::GC_TRANSITION_END, getCurSDLoc(), NodeTys, TEOps);
814
815 SinkNode = GCTransitionStart.getNode();
816 }
817
Philip Reames1a1bdb22014-12-02 18:50:36 +0000818 // Replace original call
Pat Gavlincc0431d2015-05-08 18:07:42 +0000819 DAG.ReplaceAllUsesWith(CallNode, SinkNode); // This may update Root
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000820 // Remove original call node
Philip Reames1a1bdb22014-12-02 18:50:36 +0000821 DAG.DeleteNode(CallNode);
822
823 // DON'T set the root - under the assumption that it's already set past the
824 // inserted node we created.
825
826 // TODO: A better future implementation would be to emit a single variable
827 // argument, variable return value STATEPOINT node here and then hookup the
828 // return value of each gc.relocate to the respective output of the
829 // previously emitted STATEPOINT value. Unfortunately, this doesn't appear
830 // to actually be possible today.
831}
832
833void SelectionDAGBuilder::visitGCResult(const CallInst &CI) {
834 // The result value of the gc_result is simply the result of the actual
835 // call. We've already emitted this, so just grab the value.
836 Instruction *I = cast<Instruction>(CI.getArgOperand(0));
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000837 assert(isStatepoint(I) && "first argument must be a statepoint token");
Philip Reames1a1bdb22014-12-02 18:50:36 +0000838
Igor Laevsky35fe6922015-11-04 01:16:10 +0000839 if (I->getParent() != CI.getParent()) {
840 // Statepoint is in different basic block so we should have stored call
841 // result in a virtual register.
Igor Laevsky85f7f722015-03-10 16:26:48 +0000842 // We can not use default getValue() functionality to copy value from this
843 // register because statepoint and actuall call return types can be
844 // different, and getValue() will use CopyFromReg of the wrong type,
845 // which is always i32 in our case.
Sanjoy Dasbbb2e822015-07-02 02:53:45 +0000846 PointerType *CalleeType = cast<PointerType>(
847 ImmutableStatepoint(I).getCalledValue()->getType());
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000848 Type *RetTy =
849 cast<FunctionType>(CalleeType->getElementType())->getReturnType();
Igor Laevsky85f7f722015-03-10 16:26:48 +0000850 SDValue CopyFromReg = getCopyFromRegs(I, RetTy);
851
852 assert(CopyFromReg.getNode());
853 setValue(&CI, CopyFromReg);
Pat Gavlin022c5ac2015-04-29 21:52:45 +0000854 } else {
Igor Laevsky85f7f722015-03-10 16:26:48 +0000855 setValue(&CI, getValue(I));
856 }
Philip Reames1a1bdb22014-12-02 18:50:36 +0000857}
858
Manuel Jacob83eefa62016-01-05 04:03:00 +0000859void SelectionDAGBuilder::visitGCRelocate(const GCRelocateInst &Relocate) {
Philip Reames1a1bdb22014-12-02 18:50:36 +0000860#ifndef NDEBUG
861 // Consistency check
Igor Laevsky35fe6922015-11-04 01:16:10 +0000862 // We skip this check for relocates not in the same basic block as thier
863 // statepoint. It would be too expensive to preserve validation info through
864 // different basic blocks.
Manuel Jacob83eefa62016-01-05 04:03:00 +0000865 if (Relocate.getStatepoint()->getParent() == Relocate.getParent()) {
866 StatepointLowering.relocCallVisited(Relocate);
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000867 }
Philip Reames1a1bdb22014-12-02 18:50:36 +0000868#endif
869
Manuel Jacob83eefa62016-01-05 04:03:00 +0000870 const Value *DerivedPtr = Relocate.getDerivedPtr();
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000871 SDValue SD = getValue(DerivedPtr);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000872
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000873 FunctionLoweringInfo::StatepointSpilledValueMapTy &SpillMap =
Manuel Jacob83eefa62016-01-05 04:03:00 +0000874 FuncInfo.StatepointRelocatedValues[Relocate.getStatepoint()];
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000875
876 // We should have recorded location for this pointer
877 assert(SpillMap.count(DerivedPtr) && "Relocating not lowered gc value");
878 Optional<int> DerivedPtrLocation = SpillMap[DerivedPtr];
879
880 // We didn't need to spill these special cases (constants and allocas).
881 // See the handling in spillIncomingValueForStatepoint for detail.
882 if (!DerivedPtrLocation) {
Manuel Jacob83eefa62016-01-05 04:03:00 +0000883 setValue(&Relocate, SD);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000884 return;
885 }
886
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000887 SDValue SpillSlot = DAG.getTargetFrameIndex(*DerivedPtrLocation,
888 SD.getValueType());
Philip Reames1a1bdb22014-12-02 18:50:36 +0000889
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000890 // Be conservative: flush all pending loads
891 // TODO: Probably we can be less restrictive on this,
Benjamin Kramerdf005cb2015-08-08 18:27:36 +0000892 // it may allow more scheduling opportunities.
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000893 SDValue Chain = getRoot();
Philip Reames1a1bdb22014-12-02 18:50:36 +0000894
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000895 SDValue SpillLoad =
Alex Lorenze40c8a22015-08-11 23:09:45 +0000896 DAG.getLoad(SpillSlot.getValueType(), getCurSDLoc(), Chain, SpillSlot,
897 MachinePointerInfo::getFixedStack(DAG.getMachineFunction(),
898 *DerivedPtrLocation),
899 false, false, false, 0);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000900
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000901 // Again, be conservative, don't emit pending loads
902 DAG.setRoot(SpillLoad.getValue(1));
Philip Reames1a1bdb22014-12-02 18:50:36 +0000903
Igor Laevsky423bc9ec2015-05-20 11:37:25 +0000904 assert(SpillLoad.getNode());
Manuel Jacob83eefa62016-01-05 04:03:00 +0000905 setValue(&Relocate, SpillLoad);
Philip Reames1a1bdb22014-12-02 18:50:36 +0000906}