xref: /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp (revision fcaf7f8644a9988098ac6be2165bce3ea4786e91)
10b57cec5SDimitry Andric //===- StatepointLowering.cpp - SDAGBuilder's statepoint code -------------===//
20b57cec5SDimitry Andric //
30b57cec5SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40b57cec5SDimitry Andric // See https://llvm.org/LICENSE.txt for license information.
50b57cec5SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60b57cec5SDimitry Andric //
70b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
80b57cec5SDimitry Andric //
90b57cec5SDimitry Andric // This file includes support code use by SelectionDAGBuilder when lowering a
100b57cec5SDimitry Andric // statepoint sequence in SelectionDAG IR.
110b57cec5SDimitry Andric //
120b57cec5SDimitry Andric //===----------------------------------------------------------------------===//
130b57cec5SDimitry Andric 
140b57cec5SDimitry Andric #include "StatepointLowering.h"
150b57cec5SDimitry Andric #include "SelectionDAGBuilder.h"
160b57cec5SDimitry Andric #include "llvm/ADT/ArrayRef.h"
170b57cec5SDimitry Andric #include "llvm/ADT/None.h"
180b57cec5SDimitry Andric #include "llvm/ADT/Optional.h"
190b57cec5SDimitry Andric #include "llvm/ADT/STLExtras.h"
2081ad6265SDimitry Andric #include "llvm/ADT/SetVector.h"
2181ad6265SDimitry Andric #include "llvm/ADT/SmallBitVector.h"
225ffd83dbSDimitry Andric #include "llvm/ADT/SmallSet.h"
2381ad6265SDimitry Andric #include "llvm/ADT/SmallVector.h"
240b57cec5SDimitry Andric #include "llvm/ADT/Statistic.h"
250b57cec5SDimitry Andric #include "llvm/CodeGen/FunctionLoweringInfo.h"
260b57cec5SDimitry Andric #include "llvm/CodeGen/GCMetadata.h"
270b57cec5SDimitry Andric #include "llvm/CodeGen/ISDOpcodes.h"
280b57cec5SDimitry Andric #include "llvm/CodeGen/MachineFrameInfo.h"
290b57cec5SDimitry Andric #include "llvm/CodeGen/MachineFunction.h"
300b57cec5SDimitry Andric #include "llvm/CodeGen/MachineMemOperand.h"
310b57cec5SDimitry Andric #include "llvm/CodeGen/RuntimeLibcalls.h"
320b57cec5SDimitry Andric #include "llvm/CodeGen/SelectionDAG.h"
3381ad6265SDimitry Andric #include "llvm/CodeGen/SelectionDAGNodes.h"
340b57cec5SDimitry Andric #include "llvm/CodeGen/StackMaps.h"
350b57cec5SDimitry Andric #include "llvm/CodeGen/TargetLowering.h"
360b57cec5SDimitry Andric #include "llvm/CodeGen/TargetOpcodes.h"
370b57cec5SDimitry Andric #include "llvm/IR/CallingConv.h"
380b57cec5SDimitry Andric #include "llvm/IR/DerivedTypes.h"
39fe6060f1SDimitry Andric #include "llvm/IR/GCStrategy.h"
400b57cec5SDimitry Andric #include "llvm/IR/Instruction.h"
410b57cec5SDimitry Andric #include "llvm/IR/Instructions.h"
420b57cec5SDimitry Andric #include "llvm/IR/LLVMContext.h"
430b57cec5SDimitry Andric #include "llvm/IR/Statepoint.h"
440b57cec5SDimitry Andric #include "llvm/IR/Type.h"
450b57cec5SDimitry Andric #include "llvm/Support/Casting.h"
465ffd83dbSDimitry Andric #include "llvm/Support/CommandLine.h"
470b57cec5SDimitry Andric #include "llvm/Support/MachineValueType.h"
480b57cec5SDimitry Andric #include "llvm/Target/TargetMachine.h"
490b57cec5SDimitry Andric #include "llvm/Target/TargetOptions.h"
500b57cec5SDimitry Andric #include <cassert>
510b57cec5SDimitry Andric #include <cstddef>
520b57cec5SDimitry Andric #include <cstdint>
530b57cec5SDimitry Andric #include <iterator>
540b57cec5SDimitry Andric #include <tuple>
550b57cec5SDimitry Andric #include <utility>
560b57cec5SDimitry Andric 
570b57cec5SDimitry Andric using namespace llvm;
580b57cec5SDimitry Andric 
590b57cec5SDimitry Andric #define DEBUG_TYPE "statepoint-lowering"
600b57cec5SDimitry Andric 
610b57cec5SDimitry Andric STATISTIC(NumSlotsAllocatedForStatepoints,
620b57cec5SDimitry Andric           "Number of stack slots allocated for statepoints");
630b57cec5SDimitry Andric STATISTIC(NumOfStatepoints, "Number of statepoint nodes encountered");
640b57cec5SDimitry Andric STATISTIC(StatepointMaxSlotsRequired,
650b57cec5SDimitry Andric           "Maximum number of stack slots required for a singe statepoint");
660b57cec5SDimitry Andric 
675ffd83dbSDimitry Andric cl::opt<bool> UseRegistersForDeoptValues(
685ffd83dbSDimitry Andric     "use-registers-for-deopt-values", cl::Hidden, cl::init(false),
695ffd83dbSDimitry Andric     cl::desc("Allow using registers for non pointer deopt args"));
705ffd83dbSDimitry Andric 
71e8d8bef9SDimitry Andric cl::opt<bool> UseRegistersForGCPointersInLandingPad(
72e8d8bef9SDimitry Andric     "use-registers-for-gc-values-in-landing-pad", cl::Hidden, cl::init(false),
73e8d8bef9SDimitry Andric     cl::desc("Allow using registers for gc pointer in landing pad"));
74e8d8bef9SDimitry Andric 
75e8d8bef9SDimitry Andric cl::opt<unsigned> MaxRegistersForGCPointers(
76e8d8bef9SDimitry Andric     "max-registers-for-gc-values", cl::Hidden, cl::init(0),
77e8d8bef9SDimitry Andric     cl::desc("Max number of VRegs allowed to pass GC pointer meta args in"));
78e8d8bef9SDimitry Andric 
79e8d8bef9SDimitry Andric typedef FunctionLoweringInfo::StatepointRelocationRecord RecordType;
80e8d8bef9SDimitry Andric 
810b57cec5SDimitry Andric static void pushStackMapConstant(SmallVectorImpl<SDValue>& Ops,
820b57cec5SDimitry Andric                                  SelectionDAGBuilder &Builder, uint64_t Value) {
830b57cec5SDimitry Andric   SDLoc L = Builder.getCurSDLoc();
840b57cec5SDimitry Andric   Ops.push_back(Builder.DAG.getTargetConstant(StackMaps::ConstantOp, L,
850b57cec5SDimitry Andric                                               MVT::i64));
860b57cec5SDimitry Andric   Ops.push_back(Builder.DAG.getTargetConstant(Value, L, MVT::i64));
870b57cec5SDimitry Andric }
880b57cec5SDimitry Andric 
890b57cec5SDimitry Andric void StatepointLoweringState::startNewStatepoint(SelectionDAGBuilder &Builder) {
900b57cec5SDimitry Andric   // Consistency check
910b57cec5SDimitry Andric   assert(PendingGCRelocateCalls.empty() &&
920b57cec5SDimitry Andric          "Trying to visit statepoint before finished processing previous one");
930b57cec5SDimitry Andric   Locations.clear();
940b57cec5SDimitry Andric   NextSlotToAllocate = 0;
950b57cec5SDimitry Andric   // Need to resize this on each safepoint - we need the two to stay in sync and
960b57cec5SDimitry Andric   // the clear patterns of a SelectionDAGBuilder have no relation to
970b57cec5SDimitry Andric   // FunctionLoweringInfo.  Also need to ensure used bits get cleared.
980b57cec5SDimitry Andric   AllocatedStackSlots.clear();
990b57cec5SDimitry Andric   AllocatedStackSlots.resize(Builder.FuncInfo.StatepointStackSlots.size());
1000b57cec5SDimitry Andric }
1010b57cec5SDimitry Andric 
1020b57cec5SDimitry Andric void StatepointLoweringState::clear() {
1030b57cec5SDimitry Andric   Locations.clear();
1040b57cec5SDimitry Andric   AllocatedStackSlots.clear();
1050b57cec5SDimitry Andric   assert(PendingGCRelocateCalls.empty() &&
1060b57cec5SDimitry Andric          "cleared before statepoint sequence completed");
1070b57cec5SDimitry Andric }
1080b57cec5SDimitry Andric 
1090b57cec5SDimitry Andric SDValue
1100b57cec5SDimitry Andric StatepointLoweringState::allocateStackSlot(EVT ValueType,
1110b57cec5SDimitry Andric                                            SelectionDAGBuilder &Builder) {
1120b57cec5SDimitry Andric   NumSlotsAllocatedForStatepoints++;
1130b57cec5SDimitry Andric   MachineFrameInfo &MFI = Builder.DAG.getMachineFunction().getFrameInfo();
1140b57cec5SDimitry Andric 
1150b57cec5SDimitry Andric   unsigned SpillSize = ValueType.getStoreSize();
116fe6060f1SDimitry Andric   assert((SpillSize * 8) ==
117fe6060f1SDimitry Andric              (-8u & (7 + ValueType.getSizeInBits())) && // Round up modulo 8.
118fe6060f1SDimitry Andric          "Size not in bytes?");
1190b57cec5SDimitry Andric 
1200b57cec5SDimitry Andric   // First look for a previously created stack slot which is not in
1210b57cec5SDimitry Andric   // use (accounting for the fact arbitrary slots may already be
1220b57cec5SDimitry Andric   // reserved), or to create a new stack slot and use it.
1230b57cec5SDimitry Andric 
1240b57cec5SDimitry Andric   const size_t NumSlots = AllocatedStackSlots.size();
1250b57cec5SDimitry Andric   assert(NextSlotToAllocate <= NumSlots && "Broken invariant");
1260b57cec5SDimitry Andric 
1270b57cec5SDimitry Andric   assert(AllocatedStackSlots.size() ==
1280b57cec5SDimitry Andric          Builder.FuncInfo.StatepointStackSlots.size() &&
1290b57cec5SDimitry Andric          "Broken invariant");
1300b57cec5SDimitry Andric 
1310b57cec5SDimitry Andric   for (; NextSlotToAllocate < NumSlots; NextSlotToAllocate++) {
1320b57cec5SDimitry Andric     if (!AllocatedStackSlots.test(NextSlotToAllocate)) {
1330b57cec5SDimitry Andric       const int FI = Builder.FuncInfo.StatepointStackSlots[NextSlotToAllocate];
1340b57cec5SDimitry Andric       if (MFI.getObjectSize(FI) == SpillSize) {
1350b57cec5SDimitry Andric         AllocatedStackSlots.set(NextSlotToAllocate);
1360b57cec5SDimitry Andric         // TODO: Is ValueType the right thing to use here?
1370b57cec5SDimitry Andric         return Builder.DAG.getFrameIndex(FI, ValueType);
1380b57cec5SDimitry Andric       }
1390b57cec5SDimitry Andric     }
1400b57cec5SDimitry Andric   }
1410b57cec5SDimitry Andric 
1420b57cec5SDimitry Andric   // Couldn't find a free slot, so create a new one:
1430b57cec5SDimitry Andric 
1440b57cec5SDimitry Andric   SDValue SpillSlot = Builder.DAG.CreateStackTemporary(ValueType);
1450b57cec5SDimitry Andric   const unsigned FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
1460b57cec5SDimitry Andric   MFI.markAsStatepointSpillSlotObjectIndex(FI);
1470b57cec5SDimitry Andric 
1480b57cec5SDimitry Andric   Builder.FuncInfo.StatepointStackSlots.push_back(FI);
1490b57cec5SDimitry Andric   AllocatedStackSlots.resize(AllocatedStackSlots.size()+1, true);
1500b57cec5SDimitry Andric   assert(AllocatedStackSlots.size() ==
1510b57cec5SDimitry Andric          Builder.FuncInfo.StatepointStackSlots.size() &&
1520b57cec5SDimitry Andric          "Broken invariant");
1530b57cec5SDimitry Andric 
1540b57cec5SDimitry Andric   StatepointMaxSlotsRequired.updateMax(
1550b57cec5SDimitry Andric       Builder.FuncInfo.StatepointStackSlots.size());
1560b57cec5SDimitry Andric 
1570b57cec5SDimitry Andric   return SpillSlot;
1580b57cec5SDimitry Andric }
1590b57cec5SDimitry Andric 
1600b57cec5SDimitry Andric /// Utility function for reservePreviousStackSlotForValue. Tries to find
1610b57cec5SDimitry Andric /// stack slot index to which we have spilled value for previous statepoints.
1620b57cec5SDimitry Andric /// LookUpDepth specifies maximum DFS depth this function is allowed to look.
1630b57cec5SDimitry Andric static Optional<int> findPreviousSpillSlot(const Value *Val,
1640b57cec5SDimitry Andric                                            SelectionDAGBuilder &Builder,
1650b57cec5SDimitry Andric                                            int LookUpDepth) {
1660b57cec5SDimitry Andric   // Can not look any further - give up now
1670b57cec5SDimitry Andric   if (LookUpDepth <= 0)
1680b57cec5SDimitry Andric     return None;
1690b57cec5SDimitry Andric 
1700b57cec5SDimitry Andric   // Spill location is known for gc relocates
1710b57cec5SDimitry Andric   if (const auto *Relocate = dyn_cast<GCRelocateInst>(Val)) {
172*fcaf7f86SDimitry Andric     const Value *Statepoint = Relocate->getStatepoint();
173*fcaf7f86SDimitry Andric     assert((isa<GCStatepointInst>(Statepoint) || isa<UndefValue>(Statepoint)) &&
174*fcaf7f86SDimitry Andric            "GetStatepoint must return one of two types");
175*fcaf7f86SDimitry Andric     if (isa<UndefValue>(Statepoint))
176*fcaf7f86SDimitry Andric       return None;
177*fcaf7f86SDimitry Andric 
178*fcaf7f86SDimitry Andric     const auto &RelocationMap = Builder.FuncInfo.StatepointRelocationMaps
179*fcaf7f86SDimitry Andric                                     [cast<GCStatepointInst>(Statepoint)];
1800b57cec5SDimitry Andric 
18181ad6265SDimitry Andric     auto It = RelocationMap.find(Relocate);
182e8d8bef9SDimitry Andric     if (It == RelocationMap.end())
1830b57cec5SDimitry Andric       return None;
1840b57cec5SDimitry Andric 
185e8d8bef9SDimitry Andric     auto &Record = It->second;
186e8d8bef9SDimitry Andric     if (Record.type != RecordType::Spill)
187e8d8bef9SDimitry Andric       return None;
188e8d8bef9SDimitry Andric 
189e8d8bef9SDimitry Andric     return Record.payload.FI;
1900b57cec5SDimitry Andric   }
1910b57cec5SDimitry Andric 
1920b57cec5SDimitry Andric   // Look through bitcast instructions.
1930b57cec5SDimitry Andric   if (const BitCastInst *Cast = dyn_cast<BitCastInst>(Val))
1940b57cec5SDimitry Andric     return findPreviousSpillSlot(Cast->getOperand(0), Builder, LookUpDepth - 1);
1950b57cec5SDimitry Andric 
1960b57cec5SDimitry Andric   // Look through phi nodes
1970b57cec5SDimitry Andric   // All incoming values should have same known stack slot, otherwise result
1980b57cec5SDimitry Andric   // is unknown.
1990b57cec5SDimitry Andric   if (const PHINode *Phi = dyn_cast<PHINode>(Val)) {
2000b57cec5SDimitry Andric     Optional<int> MergedResult = None;
2010b57cec5SDimitry Andric 
202*fcaf7f86SDimitry Andric     for (const auto &IncomingValue : Phi->incoming_values()) {
2030b57cec5SDimitry Andric       Optional<int> SpillSlot =
2040b57cec5SDimitry Andric           findPreviousSpillSlot(IncomingValue, Builder, LookUpDepth - 1);
20581ad6265SDimitry Andric       if (!SpillSlot)
2060b57cec5SDimitry Andric         return None;
2070b57cec5SDimitry Andric 
20881ad6265SDimitry Andric       if (MergedResult && *MergedResult != *SpillSlot)
2090b57cec5SDimitry Andric         return None;
2100b57cec5SDimitry Andric 
2110b57cec5SDimitry Andric       MergedResult = SpillSlot;
2120b57cec5SDimitry Andric     }
2130b57cec5SDimitry Andric     return MergedResult;
2140b57cec5SDimitry Andric   }
2150b57cec5SDimitry Andric 
2160b57cec5SDimitry Andric   // TODO: We can do better for PHI nodes. In cases like this:
2170b57cec5SDimitry Andric   //   ptr = phi(relocated_pointer, not_relocated_pointer)
2180b57cec5SDimitry Andric   //   statepoint(ptr)
2190b57cec5SDimitry Andric   // We will return that stack slot for ptr is unknown. And later we might
2200b57cec5SDimitry Andric   // assign different stack slots for ptr and relocated_pointer. This limits
2210b57cec5SDimitry Andric   // llvm's ability to remove redundant stores.
2220b57cec5SDimitry Andric   // Unfortunately it's hard to accomplish in current infrastructure.
2230b57cec5SDimitry Andric   // We use this function to eliminate spill store completely, while
2240b57cec5SDimitry Andric   // in example we still need to emit store, but instead of any location
2250b57cec5SDimitry Andric   // we need to use special "preferred" location.
2260b57cec5SDimitry Andric 
2270b57cec5SDimitry Andric   // TODO: handle simple updates.  If a value is modified and the original
2280b57cec5SDimitry Andric   // value is no longer live, it would be nice to put the modified value in the
2290b57cec5SDimitry Andric   // same slot.  This allows folding of the memory accesses for some
2300b57cec5SDimitry Andric   // instructions types (like an increment).
2310b57cec5SDimitry Andric   //   statepoint (i)
2320b57cec5SDimitry Andric   //   i1 = i+1
2330b57cec5SDimitry Andric   //   statepoint (i1)
2340b57cec5SDimitry Andric   // However we need to be careful for cases like this:
2350b57cec5SDimitry Andric   //   statepoint(i)
2360b57cec5SDimitry Andric   //   i1 = i+1
2370b57cec5SDimitry Andric   //   statepoint(i, i1)
2380b57cec5SDimitry Andric   // Here we want to reserve spill slot for 'i', but not for 'i+1'. If we just
2390b57cec5SDimitry Andric   // put handling of simple modifications in this function like it's done
2400b57cec5SDimitry Andric   // for bitcasts we might end up reserving i's slot for 'i+1' because order in
2410b57cec5SDimitry Andric   // which we visit values is unspecified.
2420b57cec5SDimitry Andric 
2430b57cec5SDimitry Andric   // Don't know any information about this instruction
2440b57cec5SDimitry Andric   return None;
2450b57cec5SDimitry Andric }
2460b57cec5SDimitry Andric 
2475ffd83dbSDimitry Andric /// Return true if-and-only-if the given SDValue can be lowered as either a
2485ffd83dbSDimitry Andric /// constant argument or a stack reference.  The key point is that the value
2495ffd83dbSDimitry Andric /// doesn't need to be spilled or tracked as a vreg use.
2505ffd83dbSDimitry Andric static bool willLowerDirectly(SDValue Incoming) {
2515ffd83dbSDimitry Andric   // We are making an unchecked assumption that the frame size <= 2^16 as that
2525ffd83dbSDimitry Andric   // is the largest offset which can be encoded in the stackmap format.
2535ffd83dbSDimitry Andric   if (isa<FrameIndexSDNode>(Incoming))
2545ffd83dbSDimitry Andric     return true;
2555ffd83dbSDimitry Andric 
2565ffd83dbSDimitry Andric   // The largest constant describeable in the StackMap format is 64 bits.
2575ffd83dbSDimitry Andric   // Potential Optimization:  Constants values are sign extended by consumer,
2585ffd83dbSDimitry Andric   // and thus there are many constants of static type > 64 bits whose value
2595ffd83dbSDimitry Andric   // happens to be sext(Con64) and could thus be lowered directly.
2605ffd83dbSDimitry Andric   if (Incoming.getValueType().getSizeInBits() > 64)
2615ffd83dbSDimitry Andric     return false;
2625ffd83dbSDimitry Andric 
2635ffd83dbSDimitry Andric   return (isa<ConstantSDNode>(Incoming) || isa<ConstantFPSDNode>(Incoming) ||
2645ffd83dbSDimitry Andric           Incoming.isUndef());
2655ffd83dbSDimitry Andric }
2665ffd83dbSDimitry Andric 
2670b57cec5SDimitry Andric /// Try to find existing copies of the incoming values in stack slots used for
2680b57cec5SDimitry Andric /// statepoint spilling.  If we can find a spill slot for the incoming value,
2690b57cec5SDimitry Andric /// mark that slot as allocated, and reuse the same slot for this safepoint.
2700b57cec5SDimitry Andric /// This helps to avoid series of loads and stores that only serve to reshuffle
2710b57cec5SDimitry Andric /// values on the stack between calls.
2720b57cec5SDimitry Andric static void reservePreviousStackSlotForValue(const Value *IncomingValue,
2730b57cec5SDimitry Andric                                              SelectionDAGBuilder &Builder) {
2740b57cec5SDimitry Andric   SDValue Incoming = Builder.getValue(IncomingValue);
2750b57cec5SDimitry Andric 
2765ffd83dbSDimitry Andric   // If we won't spill this, we don't need to check for previously allocated
2775ffd83dbSDimitry Andric   // stack slots.
2785ffd83dbSDimitry Andric   if (willLowerDirectly(Incoming))
2790b57cec5SDimitry Andric     return;
2800b57cec5SDimitry Andric 
2810b57cec5SDimitry Andric   SDValue OldLocation = Builder.StatepointLowering.getLocation(Incoming);
2820b57cec5SDimitry Andric   if (OldLocation.getNode())
2830b57cec5SDimitry Andric     // Duplicates in input
2840b57cec5SDimitry Andric     return;
2850b57cec5SDimitry Andric 
2860b57cec5SDimitry Andric   const int LookUpDepth = 6;
2870b57cec5SDimitry Andric   Optional<int> Index =
2880b57cec5SDimitry Andric       findPreviousSpillSlot(IncomingValue, Builder, LookUpDepth);
28981ad6265SDimitry Andric   if (!Index)
2900b57cec5SDimitry Andric     return;
2910b57cec5SDimitry Andric 
2920b57cec5SDimitry Andric   const auto &StatepointSlots = Builder.FuncInfo.StatepointStackSlots;
2930b57cec5SDimitry Andric 
2940b57cec5SDimitry Andric   auto SlotIt = find(StatepointSlots, *Index);
2950b57cec5SDimitry Andric   assert(SlotIt != StatepointSlots.end() &&
2960b57cec5SDimitry Andric          "Value spilled to the unknown stack slot");
2970b57cec5SDimitry Andric 
2980b57cec5SDimitry Andric   // This is one of our dedicated lowering slots
2990b57cec5SDimitry Andric   const int Offset = std::distance(StatepointSlots.begin(), SlotIt);
3000b57cec5SDimitry Andric   if (Builder.StatepointLowering.isStackSlotAllocated(Offset)) {
3010b57cec5SDimitry Andric     // stack slot already assigned to someone else, can't use it!
3020b57cec5SDimitry Andric     // TODO: currently we reserve space for gc arguments after doing
3030b57cec5SDimitry Andric     // normal allocation for deopt arguments.  We should reserve for
3040b57cec5SDimitry Andric     // _all_ deopt and gc arguments, then start allocating.  This
3050b57cec5SDimitry Andric     // will prevent some moves being inserted when vm state changes,
3060b57cec5SDimitry Andric     // but gc state doesn't between two calls.
3070b57cec5SDimitry Andric     return;
3080b57cec5SDimitry Andric   }
3090b57cec5SDimitry Andric   // Reserve this stack slot
3100b57cec5SDimitry Andric   Builder.StatepointLowering.reserveStackSlot(Offset);
3110b57cec5SDimitry Andric 
3120b57cec5SDimitry Andric   // Cache this slot so we find it when going through the normal
3130b57cec5SDimitry Andric   // assignment loop.
3140b57cec5SDimitry Andric   SDValue Loc =
3150b57cec5SDimitry Andric       Builder.DAG.getTargetFrameIndex(*Index, Builder.getFrameIndexTy());
3160b57cec5SDimitry Andric   Builder.StatepointLowering.setLocation(Incoming, Loc);
3170b57cec5SDimitry Andric }
3180b57cec5SDimitry Andric 
3190b57cec5SDimitry Andric /// Extract call from statepoint, lower it and return pointer to the
3200b57cec5SDimitry Andric /// call node. Also update NodeMap so that getValue(statepoint) will
3210b57cec5SDimitry Andric /// reference lowered call result
3220b57cec5SDimitry Andric static std::pair<SDValue, SDNode *> lowerCallFromStatepointLoweringInfo(
3230b57cec5SDimitry Andric     SelectionDAGBuilder::StatepointLoweringInfo &SI,
3240b57cec5SDimitry Andric     SelectionDAGBuilder &Builder, SmallVectorImpl<SDValue> &PendingExports) {
3250b57cec5SDimitry Andric   SDValue ReturnValue, CallEndVal;
3260b57cec5SDimitry Andric   std::tie(ReturnValue, CallEndVal) =
3270b57cec5SDimitry Andric       Builder.lowerInvokable(SI.CLI, SI.EHPadBB);
3280b57cec5SDimitry Andric   SDNode *CallEnd = CallEndVal.getNode();
3290b57cec5SDimitry Andric 
3300b57cec5SDimitry Andric   // Get a call instruction from the call sequence chain.  Tail calls are not
3310b57cec5SDimitry Andric   // allowed.  The following code is essentially reverse engineering X86's
3320b57cec5SDimitry Andric   // LowerCallTo.
3330b57cec5SDimitry Andric   //
3340b57cec5SDimitry Andric   // We are expecting DAG to have the following form:
3350b57cec5SDimitry Andric   //
3360b57cec5SDimitry Andric   // ch = eh_label (only in case of invoke statepoint)
3370b57cec5SDimitry Andric   //   ch, glue = callseq_start ch
3380b57cec5SDimitry Andric   //   ch, glue = X86::Call ch, glue
3390b57cec5SDimitry Andric   //   ch, glue = callseq_end ch, glue
3400b57cec5SDimitry Andric   //   get_return_value ch, glue
3410b57cec5SDimitry Andric   //
3420b57cec5SDimitry Andric   // get_return_value can either be a sequence of CopyFromReg instructions
3430b57cec5SDimitry Andric   // to grab the return value from the return register(s), or it can be a LOAD
3440b57cec5SDimitry Andric   // to load a value returned by reference via a stack slot.
3450b57cec5SDimitry Andric 
3460b57cec5SDimitry Andric   bool HasDef = !SI.CLI.RetTy->isVoidTy();
3470b57cec5SDimitry Andric   if (HasDef) {
3480b57cec5SDimitry Andric     if (CallEnd->getOpcode() == ISD::LOAD)
3490b57cec5SDimitry Andric       CallEnd = CallEnd->getOperand(0).getNode();
3500b57cec5SDimitry Andric     else
3510b57cec5SDimitry Andric       while (CallEnd->getOpcode() == ISD::CopyFromReg)
3520b57cec5SDimitry Andric         CallEnd = CallEnd->getOperand(0).getNode();
3530b57cec5SDimitry Andric   }
3540b57cec5SDimitry Andric 
3550b57cec5SDimitry Andric   assert(CallEnd->getOpcode() == ISD::CALLSEQ_END && "expected!");
3560b57cec5SDimitry Andric   return std::make_pair(ReturnValue, CallEnd->getOperand(0).getNode());
3570b57cec5SDimitry Andric }
3580b57cec5SDimitry Andric 
3590b57cec5SDimitry Andric static MachineMemOperand* getMachineMemOperand(MachineFunction &MF,
3600b57cec5SDimitry Andric                                                FrameIndexSDNode &FI) {
3610b57cec5SDimitry Andric   auto PtrInfo = MachinePointerInfo::getFixedStack(MF, FI.getIndex());
3620b57cec5SDimitry Andric   auto MMOFlags = MachineMemOperand::MOStore |
3630b57cec5SDimitry Andric     MachineMemOperand::MOLoad | MachineMemOperand::MOVolatile;
3640b57cec5SDimitry Andric   auto &MFI = MF.getFrameInfo();
3650b57cec5SDimitry Andric   return MF.getMachineMemOperand(PtrInfo, MMOFlags,
3660b57cec5SDimitry Andric                                  MFI.getObjectSize(FI.getIndex()),
3675ffd83dbSDimitry Andric                                  MFI.getObjectAlign(FI.getIndex()));
3680b57cec5SDimitry Andric }
3690b57cec5SDimitry Andric 
3700b57cec5SDimitry Andric /// Spill a value incoming to the statepoint. It might be either part of
3710b57cec5SDimitry Andric /// vmstate
3720b57cec5SDimitry Andric /// or gcstate. In both cases unconditionally spill it on the stack unless it
3730b57cec5SDimitry Andric /// is a null constant. Return pair with first element being frame index
3740b57cec5SDimitry Andric /// containing saved value and second element with outgoing chain from the
3750b57cec5SDimitry Andric /// emitted store
3760b57cec5SDimitry Andric static std::tuple<SDValue, SDValue, MachineMemOperand*>
3770b57cec5SDimitry Andric spillIncomingStatepointValue(SDValue Incoming, SDValue Chain,
3780b57cec5SDimitry Andric                              SelectionDAGBuilder &Builder) {
3790b57cec5SDimitry Andric   SDValue Loc = Builder.StatepointLowering.getLocation(Incoming);
3800b57cec5SDimitry Andric   MachineMemOperand* MMO = nullptr;
3810b57cec5SDimitry Andric 
3820b57cec5SDimitry Andric   // Emit new store if we didn't do it for this ptr before
3830b57cec5SDimitry Andric   if (!Loc.getNode()) {
3840b57cec5SDimitry Andric     Loc = Builder.StatepointLowering.allocateStackSlot(Incoming.getValueType(),
3850b57cec5SDimitry Andric                                                        Builder);
3860b57cec5SDimitry Andric     int Index = cast<FrameIndexSDNode>(Loc)->getIndex();
3870b57cec5SDimitry Andric     // We use TargetFrameIndex so that isel will not select it into LEA
3880b57cec5SDimitry Andric     Loc = Builder.DAG.getTargetFrameIndex(Index, Builder.getFrameIndexTy());
3890b57cec5SDimitry Andric 
3900b57cec5SDimitry Andric     // Right now we always allocate spill slots that are of the same
3910b57cec5SDimitry Andric     // size as the value we're about to spill (the size of spillee can
3920b57cec5SDimitry Andric     // vary since we spill vectors of pointers too).  At some point we
3930b57cec5SDimitry Andric     // can consider allowing spills of smaller values to larger slots
3940b57cec5SDimitry Andric     // (i.e. change the '==' in the assert below to a '>=').
3950b57cec5SDimitry Andric     MachineFrameInfo &MFI = Builder.DAG.getMachineFunction().getFrameInfo();
396480093f4SDimitry Andric     assert((MFI.getObjectSize(Index) * 8) ==
397fe6060f1SDimitry Andric                (-8 & (7 + // Round up modulo 8.
398fe6060f1SDimitry Andric                       (int64_t)Incoming.getValueSizeInBits())) &&
3990b57cec5SDimitry Andric            "Bad spill:  stack slot does not match!");
4000b57cec5SDimitry Andric 
4018bcb0991SDimitry Andric     // Note: Using the alignment of the spill slot (rather than the abi or
4028bcb0991SDimitry Andric     // preferred alignment) is required for correctness when dealing with spill
4038bcb0991SDimitry Andric     // slots with preferred alignments larger than frame alignment..
4040b57cec5SDimitry Andric     auto &MF = Builder.DAG.getMachineFunction();
4050b57cec5SDimitry Andric     auto PtrInfo = MachinePointerInfo::getFixedStack(MF, Index);
4065ffd83dbSDimitry Andric     auto *StoreMMO = MF.getMachineMemOperand(
4075ffd83dbSDimitry Andric         PtrInfo, MachineMemOperand::MOStore, MFI.getObjectSize(Index),
4085ffd83dbSDimitry Andric         MFI.getObjectAlign(Index));
4090b57cec5SDimitry Andric     Chain = Builder.DAG.getStore(Chain, Builder.getCurSDLoc(), Incoming, Loc,
4108bcb0991SDimitry Andric                                  StoreMMO);
4110b57cec5SDimitry Andric 
4120b57cec5SDimitry Andric     MMO = getMachineMemOperand(MF, *cast<FrameIndexSDNode>(Loc));
4130b57cec5SDimitry Andric 
4140b57cec5SDimitry Andric     Builder.StatepointLowering.setLocation(Incoming, Loc);
4150b57cec5SDimitry Andric   }
4160b57cec5SDimitry Andric 
4170b57cec5SDimitry Andric   assert(Loc.getNode());
4180b57cec5SDimitry Andric   return std::make_tuple(Loc, Chain, MMO);
4190b57cec5SDimitry Andric }
4200b57cec5SDimitry Andric 
4210b57cec5SDimitry Andric /// Lower a single value incoming to a statepoint node.  This value can be
4220b57cec5SDimitry Andric /// either a deopt value or a gc value, the handling is the same.  We special
4230b57cec5SDimitry Andric /// case constants and allocas, then fall back to spilling if required.
4245ffd83dbSDimitry Andric static void
4255ffd83dbSDimitry Andric lowerIncomingStatepointValue(SDValue Incoming, bool RequireSpillSlot,
4260b57cec5SDimitry Andric                              SmallVectorImpl<SDValue> &Ops,
4270b57cec5SDimitry Andric                              SmallVectorImpl<MachineMemOperand *> &MemRefs,
4280b57cec5SDimitry Andric                              SelectionDAGBuilder &Builder) {
4290b57cec5SDimitry Andric 
4305ffd83dbSDimitry Andric   if (willLowerDirectly(Incoming)) {
4315ffd83dbSDimitry Andric     if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Incoming)) {
4320b57cec5SDimitry Andric       // This handles allocas as arguments to the statepoint (this is only
4330b57cec5SDimitry Andric       // really meaningful for a deopt value.  For GC, we'd be trying to
4340b57cec5SDimitry Andric       // relocate the address of the alloca itself?)
4350b57cec5SDimitry Andric       assert(Incoming.getValueType() == Builder.getFrameIndexTy() &&
4360b57cec5SDimitry Andric              "Incoming value is a frame index!");
4370b57cec5SDimitry Andric       Ops.push_back(Builder.DAG.getTargetFrameIndex(FI->getIndex(),
4380b57cec5SDimitry Andric                                                     Builder.getFrameIndexTy()));
4390b57cec5SDimitry Andric 
4400b57cec5SDimitry Andric       auto &MF = Builder.DAG.getMachineFunction();
4410b57cec5SDimitry Andric       auto *MMO = getMachineMemOperand(MF, *FI);
4420b57cec5SDimitry Andric       MemRefs.push_back(MMO);
4435ffd83dbSDimitry Andric       return;
4445ffd83dbSDimitry Andric     }
4450b57cec5SDimitry Andric 
4465ffd83dbSDimitry Andric     assert(Incoming.getValueType().getSizeInBits() <= 64);
4475ffd83dbSDimitry Andric 
4485ffd83dbSDimitry Andric     if (Incoming.isUndef()) {
4495ffd83dbSDimitry Andric       // Put an easily recognized constant that's unlikely to be a valid
4505ffd83dbSDimitry Andric       // value so that uses of undef by the consumer of the stackmap is
4515ffd83dbSDimitry Andric       // easily recognized. This is legal since the compiler is always
4525ffd83dbSDimitry Andric       // allowed to chose an arbitrary value for undef.
4535ffd83dbSDimitry Andric       pushStackMapConstant(Ops, Builder, 0xFEFEFEFE);
4545ffd83dbSDimitry Andric       return;
4555ffd83dbSDimitry Andric     }
4565ffd83dbSDimitry Andric 
4575ffd83dbSDimitry Andric     // If the original value was a constant, make sure it gets recorded as
4585ffd83dbSDimitry Andric     // such in the stackmap.  This is required so that the consumer can
4595ffd83dbSDimitry Andric     // parse any internal format to the deopt state.  It also handles null
4605ffd83dbSDimitry Andric     // pointers and other constant pointers in GC states.
4615ffd83dbSDimitry Andric     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Incoming)) {
4625ffd83dbSDimitry Andric       pushStackMapConstant(Ops, Builder, C->getSExtValue());
4635ffd83dbSDimitry Andric       return;
4645ffd83dbSDimitry Andric     } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Incoming)) {
4655ffd83dbSDimitry Andric       pushStackMapConstant(Ops, Builder,
4665ffd83dbSDimitry Andric                            C->getValueAPF().bitcastToAPInt().getZExtValue());
4675ffd83dbSDimitry Andric       return;
4685ffd83dbSDimitry Andric     }
4695ffd83dbSDimitry Andric 
4705ffd83dbSDimitry Andric     llvm_unreachable("unhandled direct lowering case");
4715ffd83dbSDimitry Andric   }
4725ffd83dbSDimitry Andric 
4735ffd83dbSDimitry Andric 
4745ffd83dbSDimitry Andric 
4755ffd83dbSDimitry Andric   if (!RequireSpillSlot) {
4760b57cec5SDimitry Andric     // If this value is live in (not live-on-return, or live-through), we can
4770b57cec5SDimitry Andric     // treat it the same way patchpoint treats it's "live in" values.  We'll
4780b57cec5SDimitry Andric     // end up folding some of these into stack references, but they'll be
4790b57cec5SDimitry Andric     // handled by the register allocator.  Note that we do not have the notion
4800b57cec5SDimitry Andric     // of a late use so these values might be placed in registers which are
4815ffd83dbSDimitry Andric     // clobbered by the call.  This is fine for live-in. For live-through
4825ffd83dbSDimitry Andric     // fix-up pass should be executed to force spilling of such registers.
4830b57cec5SDimitry Andric     Ops.push_back(Incoming);
4840b57cec5SDimitry Andric   } else {
4855ffd83dbSDimitry Andric     // Otherwise, locate a spill slot and explicitly spill it so it can be
4865ffd83dbSDimitry Andric     // found by the runtime later.  Note: We know all of these spills are
4875ffd83dbSDimitry Andric     // independent, but don't bother to exploit that chain wise.  DAGCombine
4885ffd83dbSDimitry Andric     // will happily do so as needed, so doing it here would be a small compile
4895ffd83dbSDimitry Andric     // time win at most.
4905ffd83dbSDimitry Andric     SDValue Chain = Builder.getRoot();
4910b57cec5SDimitry Andric     auto Res = spillIncomingStatepointValue(Incoming, Chain, Builder);
4920b57cec5SDimitry Andric     Ops.push_back(std::get<0>(Res));
4930b57cec5SDimitry Andric     if (auto *MMO = std::get<2>(Res))
4940b57cec5SDimitry Andric       MemRefs.push_back(MMO);
4950b57cec5SDimitry Andric     Chain = std::get<1>(Res);;
4965ffd83dbSDimitry Andric     Builder.DAG.setRoot(Chain);
4970b57cec5SDimitry Andric   }
4980b57cec5SDimitry Andric 
4990b57cec5SDimitry Andric }
5000b57cec5SDimitry Andric 
501fe6060f1SDimitry Andric /// Return true if value V represents the GC value. The behavior is conservative
502fe6060f1SDimitry Andric /// in case it is not sure that value is not GC the function returns true.
503fe6060f1SDimitry Andric static bool isGCValue(const Value *V, SelectionDAGBuilder &Builder) {
504fe6060f1SDimitry Andric   auto *Ty = V->getType();
505fe6060f1SDimitry Andric   if (!Ty->isPtrOrPtrVectorTy())
506fe6060f1SDimitry Andric     return false;
507fe6060f1SDimitry Andric   if (auto *GFI = Builder.GFI)
508fe6060f1SDimitry Andric     if (auto IsManaged = GFI->getStrategy().isGCManagedPointer(Ty))
509fe6060f1SDimitry Andric       return *IsManaged;
510fe6060f1SDimitry Andric   return true; // conservative
511fe6060f1SDimitry Andric }
512fe6060f1SDimitry Andric 
5130b57cec5SDimitry Andric /// Lower deopt state and gc pointer arguments of the statepoint.  The actual
5140b57cec5SDimitry Andric /// lowering is described in lowerIncomingStatepointValue.  This function is
5150b57cec5SDimitry Andric /// responsible for lowering everything in the right position and playing some
5160b57cec5SDimitry Andric /// tricks to avoid redundant stack manipulation where possible.  On
5170b57cec5SDimitry Andric /// completion, 'Ops' will contain ready to use operands for machine code
5180b57cec5SDimitry Andric /// statepoint. The chain nodes will have already been created and the DAG root
5190b57cec5SDimitry Andric /// will be set to the last value spilled (if any were).
5200b57cec5SDimitry Andric static void
5210b57cec5SDimitry Andric lowerStatepointMetaArgs(SmallVectorImpl<SDValue> &Ops,
522e8d8bef9SDimitry Andric                         SmallVectorImpl<MachineMemOperand *> &MemRefs,
523e8d8bef9SDimitry Andric                         SmallVectorImpl<SDValue> &GCPtrs,
524e8d8bef9SDimitry Andric                         DenseMap<SDValue, int> &LowerAsVReg,
525e8d8bef9SDimitry Andric                         SelectionDAGBuilder::StatepointLoweringInfo &SI,
5260b57cec5SDimitry Andric                         SelectionDAGBuilder &Builder) {
5270b57cec5SDimitry Andric   // Lower the deopt and gc arguments for this statepoint.  Layout will be:
5280b57cec5SDimitry Andric   // deopt argument length, deopt arguments.., gc arguments...
5290b57cec5SDimitry Andric #ifndef NDEBUG
5300b57cec5SDimitry Andric   if (auto *GFI = Builder.GFI) {
5310b57cec5SDimitry Andric     // Check that each of the gc pointer and bases we've gotten out of the
5320b57cec5SDimitry Andric     // safepoint is something the strategy thinks might be a pointer (or vector
5330b57cec5SDimitry Andric     // of pointers) into the GC heap.  This is basically just here to help catch
5340b57cec5SDimitry Andric     // errors during statepoint insertion. TODO: This should actually be in the
5350b57cec5SDimitry Andric     // Verifier, but we can't get to the GCStrategy from there (yet).
5360b57cec5SDimitry Andric     GCStrategy &S = GFI->getStrategy();
5370b57cec5SDimitry Andric     for (const Value *V : SI.Bases) {
5380b57cec5SDimitry Andric       auto Opt = S.isGCManagedPointer(V->getType()->getScalarType());
53981ad6265SDimitry Andric       if (Opt) {
540753f127fSDimitry Andric         assert(Opt.value() &&
5410b57cec5SDimitry Andric                "non gc managed base pointer found in statepoint");
5420b57cec5SDimitry Andric       }
5430b57cec5SDimitry Andric     }
5440b57cec5SDimitry Andric     for (const Value *V : SI.Ptrs) {
5450b57cec5SDimitry Andric       auto Opt = S.isGCManagedPointer(V->getType()->getScalarType());
54681ad6265SDimitry Andric       if (Opt) {
547753f127fSDimitry Andric         assert(Opt.value() &&
5480b57cec5SDimitry Andric                "non gc managed derived pointer found in statepoint");
5490b57cec5SDimitry Andric       }
5500b57cec5SDimitry Andric     }
5510b57cec5SDimitry Andric     assert(SI.Bases.size() == SI.Ptrs.size() && "Pointer without base!");
5520b57cec5SDimitry Andric   } else {
5530b57cec5SDimitry Andric     assert(SI.Bases.empty() && "No gc specified, so cannot relocate pointers!");
5540b57cec5SDimitry Andric     assert(SI.Ptrs.empty() && "No gc specified, so cannot relocate pointers!");
5550b57cec5SDimitry Andric   }
5560b57cec5SDimitry Andric #endif
5570b57cec5SDimitry Andric 
5580b57cec5SDimitry Andric   // Figure out what lowering strategy we're going to use for each part
5590b57cec5SDimitry Andric   // Note: Is is conservatively correct to lower both "live-in" and "live-out"
5600b57cec5SDimitry Andric   // as "live-through". A "live-through" variable is one which is "live-in",
5610b57cec5SDimitry Andric   // "live-out", and live throughout the lifetime of the call (i.e. we can find
5620b57cec5SDimitry Andric   // it from any PC within the transitive callee of the statepoint).  In
5630b57cec5SDimitry Andric   // particular, if the callee spills callee preserved registers we may not
5640b57cec5SDimitry Andric   // be able to find a value placed in that register during the call.  This is
5650b57cec5SDimitry Andric   // fine for live-out, but not for live-through.  If we were willing to make
5660b57cec5SDimitry Andric   // assumptions about the code generator producing the callee, we could
5670b57cec5SDimitry Andric   // potentially allow live-through values in callee saved registers.
5680b57cec5SDimitry Andric   const bool LiveInDeopt =
5690b57cec5SDimitry Andric     SI.StatepointFlags & (uint64_t)StatepointFlags::DeoptLiveIn;
5700b57cec5SDimitry Andric 
571e8d8bef9SDimitry Andric   // Decide which deriver pointers will go on VRegs
572e8d8bef9SDimitry Andric   unsigned MaxVRegPtrs = MaxRegistersForGCPointers.getValue();
573e8d8bef9SDimitry Andric 
574e8d8bef9SDimitry Andric   // Pointers used on exceptional path of invoke statepoint.
575e8d8bef9SDimitry Andric   // We cannot assing them to VRegs.
576e8d8bef9SDimitry Andric   SmallSet<SDValue, 8> LPadPointers;
577e8d8bef9SDimitry Andric   if (!UseRegistersForGCPointersInLandingPad)
578*fcaf7f86SDimitry Andric     if (const auto *StInvoke =
579*fcaf7f86SDimitry Andric             dyn_cast_or_null<InvokeInst>(SI.StatepointInstr)) {
580e8d8bef9SDimitry Andric       LandingPadInst *LPI = StInvoke->getLandingPadInst();
581*fcaf7f86SDimitry Andric       for (const auto *Relocate : SI.GCRelocates)
582e8d8bef9SDimitry Andric         if (Relocate->getOperand(0) == LPI) {
583e8d8bef9SDimitry Andric           LPadPointers.insert(Builder.getValue(Relocate->getBasePtr()));
584e8d8bef9SDimitry Andric           LPadPointers.insert(Builder.getValue(Relocate->getDerivedPtr()));
585e8d8bef9SDimitry Andric         }
586e8d8bef9SDimitry Andric     }
587e8d8bef9SDimitry Andric 
588e8d8bef9SDimitry Andric   LLVM_DEBUG(dbgs() << "Deciding how to lower GC Pointers:\n");
589e8d8bef9SDimitry Andric 
590e8d8bef9SDimitry Andric   // List of unique lowered GC Pointer values.
591e8d8bef9SDimitry Andric   SmallSetVector<SDValue, 16> LoweredGCPtrs;
592e8d8bef9SDimitry Andric   // Map lowered GC Pointer value to the index in above vector
593e8d8bef9SDimitry Andric   DenseMap<SDValue, unsigned> GCPtrIndexMap;
594e8d8bef9SDimitry Andric 
595e8d8bef9SDimitry Andric   unsigned CurNumVRegs = 0;
596e8d8bef9SDimitry Andric 
597e8d8bef9SDimitry Andric   auto canPassGCPtrOnVReg = [&](SDValue SD) {
598e8d8bef9SDimitry Andric     if (SD.getValueType().isVector())
599e8d8bef9SDimitry Andric       return false;
600e8d8bef9SDimitry Andric     if (LPadPointers.count(SD))
601e8d8bef9SDimitry Andric       return false;
602e8d8bef9SDimitry Andric     return !willLowerDirectly(SD);
603e8d8bef9SDimitry Andric   };
604e8d8bef9SDimitry Andric 
605e8d8bef9SDimitry Andric   auto processGCPtr = [&](const Value *V) {
606e8d8bef9SDimitry Andric     SDValue PtrSD = Builder.getValue(V);
607e8d8bef9SDimitry Andric     if (!LoweredGCPtrs.insert(PtrSD))
608e8d8bef9SDimitry Andric       return; // skip duplicates
609e8d8bef9SDimitry Andric     GCPtrIndexMap[PtrSD] = LoweredGCPtrs.size() - 1;
610e8d8bef9SDimitry Andric 
611e8d8bef9SDimitry Andric     assert(!LowerAsVReg.count(PtrSD) && "must not have been seen");
612e8d8bef9SDimitry Andric     if (LowerAsVReg.size() == MaxVRegPtrs)
613e8d8bef9SDimitry Andric       return;
614e8d8bef9SDimitry Andric     assert(V->getType()->isVectorTy() == PtrSD.getValueType().isVector() &&
615e8d8bef9SDimitry Andric            "IR and SD types disagree");
616e8d8bef9SDimitry Andric     if (!canPassGCPtrOnVReg(PtrSD)) {
617e8d8bef9SDimitry Andric       LLVM_DEBUG(dbgs() << "direct/spill "; PtrSD.dump(&Builder.DAG));
618e8d8bef9SDimitry Andric       return;
619e8d8bef9SDimitry Andric     }
620e8d8bef9SDimitry Andric     LLVM_DEBUG(dbgs() << "vreg "; PtrSD.dump(&Builder.DAG));
621e8d8bef9SDimitry Andric     LowerAsVReg[PtrSD] = CurNumVRegs++;
622e8d8bef9SDimitry Andric   };
623e8d8bef9SDimitry Andric 
624e8d8bef9SDimitry Andric   // Process derived pointers first to give them more chance to go on VReg.
625e8d8bef9SDimitry Andric   for (const Value *V : SI.Ptrs)
626e8d8bef9SDimitry Andric     processGCPtr(V);
627e8d8bef9SDimitry Andric   for (const Value *V : SI.Bases)
628e8d8bef9SDimitry Andric     processGCPtr(V);
629e8d8bef9SDimitry Andric 
630e8d8bef9SDimitry Andric   LLVM_DEBUG(dbgs() << LowerAsVReg.size() << " pointers will go in vregs\n");
631e8d8bef9SDimitry Andric 
6325ffd83dbSDimitry Andric   auto requireSpillSlot = [&](const Value *V) {
633fe6060f1SDimitry Andric     if (!Builder.DAG.getTargetLoweringInfo().isTypeLegal(
634fe6060f1SDimitry Andric              Builder.getValue(V).getValueType()))
635fe6060f1SDimitry Andric       return true;
636fe6060f1SDimitry Andric     if (isGCValue(V, Builder))
637e8d8bef9SDimitry Andric       return !LowerAsVReg.count(Builder.getValue(V));
638e8d8bef9SDimitry Andric     return !(LiveInDeopt || UseRegistersForDeoptValues);
6390b57cec5SDimitry Andric   };
6400b57cec5SDimitry Andric 
6410b57cec5SDimitry Andric   // Before we actually start lowering (and allocating spill slots for values),
6420b57cec5SDimitry Andric   // reserve any stack slots which we judge to be profitable to reuse for a
6430b57cec5SDimitry Andric   // particular value.  This is purely an optimization over the code below and
6440b57cec5SDimitry Andric   // doesn't change semantics at all.  It is important for performance that we
6450b57cec5SDimitry Andric   // reserve slots for both deopt and gc values before lowering either.
6460b57cec5SDimitry Andric   for (const Value *V : SI.DeoptState) {
6475ffd83dbSDimitry Andric     if (requireSpillSlot(V))
6480b57cec5SDimitry Andric       reservePreviousStackSlotForValue(V, Builder);
6490b57cec5SDimitry Andric   }
650e8d8bef9SDimitry Andric 
651e8d8bef9SDimitry Andric   for (const Value *V : SI.Ptrs) {
652e8d8bef9SDimitry Andric     SDValue SDV = Builder.getValue(V);
653e8d8bef9SDimitry Andric     if (!LowerAsVReg.count(SDV))
654e8d8bef9SDimitry Andric       reservePreviousStackSlotForValue(V, Builder);
655e8d8bef9SDimitry Andric   }
656e8d8bef9SDimitry Andric 
657e8d8bef9SDimitry Andric   for (const Value *V : SI.Bases) {
658e8d8bef9SDimitry Andric     SDValue SDV = Builder.getValue(V);
659e8d8bef9SDimitry Andric     if (!LowerAsVReg.count(SDV))
660e8d8bef9SDimitry Andric       reservePreviousStackSlotForValue(V, Builder);
6610b57cec5SDimitry Andric   }
6620b57cec5SDimitry Andric 
6630b57cec5SDimitry Andric   // First, prefix the list with the number of unique values to be
6640b57cec5SDimitry Andric   // lowered.  Note that this is the number of *Values* not the
6650b57cec5SDimitry Andric   // number of SDValues required to lower them.
6660b57cec5SDimitry Andric   const int NumVMSArgs = SI.DeoptState.size();
6670b57cec5SDimitry Andric   pushStackMapConstant(Ops, Builder, NumVMSArgs);
6680b57cec5SDimitry Andric 
6690b57cec5SDimitry Andric   // The vm state arguments are lowered in an opaque manner.  We do not know
6700b57cec5SDimitry Andric   // what type of values are contained within.
671e8d8bef9SDimitry Andric   LLVM_DEBUG(dbgs() << "Lowering deopt state\n");
6720b57cec5SDimitry Andric   for (const Value *V : SI.DeoptState) {
6730b57cec5SDimitry Andric     SDValue Incoming;
6740b57cec5SDimitry Andric     // If this is a function argument at a static frame index, generate it as
6750b57cec5SDimitry Andric     // the frame index.
6760b57cec5SDimitry Andric     if (const Argument *Arg = dyn_cast<Argument>(V)) {
6770b57cec5SDimitry Andric       int FI = Builder.FuncInfo.getArgumentFrameIndex(Arg);
6780b57cec5SDimitry Andric       if (FI != INT_MAX)
6790b57cec5SDimitry Andric         Incoming = Builder.DAG.getFrameIndex(FI, Builder.getFrameIndexTy());
6800b57cec5SDimitry Andric     }
6810b57cec5SDimitry Andric     if (!Incoming.getNode())
6820b57cec5SDimitry Andric       Incoming = Builder.getValue(V);
683e8d8bef9SDimitry Andric     LLVM_DEBUG(dbgs() << "Value " << *V
684e8d8bef9SDimitry Andric                       << " requireSpillSlot = " << requireSpillSlot(V) << "\n");
6855ffd83dbSDimitry Andric     lowerIncomingStatepointValue(Incoming, requireSpillSlot(V), Ops, MemRefs,
6865ffd83dbSDimitry Andric                                  Builder);
6870b57cec5SDimitry Andric   }
6880b57cec5SDimitry Andric 
689e8d8bef9SDimitry Andric   // Finally, go ahead and lower all the gc arguments.
690e8d8bef9SDimitry Andric   pushStackMapConstant(Ops, Builder, LoweredGCPtrs.size());
691e8d8bef9SDimitry Andric   for (SDValue SDV : LoweredGCPtrs)
692e8d8bef9SDimitry Andric     lowerIncomingStatepointValue(SDV, !LowerAsVReg.count(SDV), Ops, MemRefs,
6935ffd83dbSDimitry Andric                                  Builder);
6940b57cec5SDimitry Andric 
695e8d8bef9SDimitry Andric   // Copy to out vector. LoweredGCPtrs will be empty after this point.
696e8d8bef9SDimitry Andric   GCPtrs = LoweredGCPtrs.takeVector();
6970b57cec5SDimitry Andric 
6980b57cec5SDimitry Andric   // If there are any explicit spill slots passed to the statepoint, record
6990b57cec5SDimitry Andric   // them, but otherwise do not do anything special.  These are user provided
7000b57cec5SDimitry Andric   // allocas and give control over placement to the consumer.  In this case,
7010b57cec5SDimitry Andric   // it is the contents of the slot which may get updated, not the pointer to
7020b57cec5SDimitry Andric   // the alloca
703e8d8bef9SDimitry Andric   SmallVector<SDValue, 4> Allocas;
7040b57cec5SDimitry Andric   for (Value *V : SI.GCArgs) {
7050b57cec5SDimitry Andric     SDValue Incoming = Builder.getValue(V);
7060b57cec5SDimitry Andric     if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Incoming)) {
7070b57cec5SDimitry Andric       // This handles allocas as arguments to the statepoint
7080b57cec5SDimitry Andric       assert(Incoming.getValueType() == Builder.getFrameIndexTy() &&
7090b57cec5SDimitry Andric              "Incoming value is a frame index!");
710e8d8bef9SDimitry Andric       Allocas.push_back(Builder.DAG.getTargetFrameIndex(
711e8d8bef9SDimitry Andric           FI->getIndex(), Builder.getFrameIndexTy()));
7120b57cec5SDimitry Andric 
7130b57cec5SDimitry Andric       auto &MF = Builder.DAG.getMachineFunction();
7140b57cec5SDimitry Andric       auto *MMO = getMachineMemOperand(MF, *FI);
7150b57cec5SDimitry Andric       MemRefs.push_back(MMO);
7160b57cec5SDimitry Andric     }
7170b57cec5SDimitry Andric   }
718e8d8bef9SDimitry Andric   pushStackMapConstant(Ops, Builder, Allocas.size());
719e8d8bef9SDimitry Andric   Ops.append(Allocas.begin(), Allocas.end());
7200b57cec5SDimitry Andric 
721e8d8bef9SDimitry Andric   // Now construct GC base/derived map;
722e8d8bef9SDimitry Andric   pushStackMapConstant(Ops, Builder, SI.Ptrs.size());
723e8d8bef9SDimitry Andric   SDLoc L = Builder.getCurSDLoc();
724e8d8bef9SDimitry Andric   for (unsigned i = 0; i < SI.Ptrs.size(); ++i) {
725e8d8bef9SDimitry Andric     SDValue Base = Builder.getValue(SI.Bases[i]);
726e8d8bef9SDimitry Andric     assert(GCPtrIndexMap.count(Base) && "base not found in index map");
727e8d8bef9SDimitry Andric     Ops.push_back(
728e8d8bef9SDimitry Andric         Builder.DAG.getTargetConstant(GCPtrIndexMap[Base], L, MVT::i64));
729e8d8bef9SDimitry Andric     SDValue Derived = Builder.getValue(SI.Ptrs[i]);
730e8d8bef9SDimitry Andric     assert(GCPtrIndexMap.count(Derived) && "derived not found in index map");
731e8d8bef9SDimitry Andric     Ops.push_back(
732e8d8bef9SDimitry Andric         Builder.DAG.getTargetConstant(GCPtrIndexMap[Derived], L, MVT::i64));
7330b57cec5SDimitry Andric   }
7340b57cec5SDimitry Andric }
7350b57cec5SDimitry Andric 
7360b57cec5SDimitry Andric SDValue SelectionDAGBuilder::LowerAsSTATEPOINT(
7370b57cec5SDimitry Andric     SelectionDAGBuilder::StatepointLoweringInfo &SI) {
7380b57cec5SDimitry Andric   // The basic scheme here is that information about both the original call and
7390b57cec5SDimitry Andric   // the safepoint is encoded in the CallInst.  We create a temporary call and
7400b57cec5SDimitry Andric   // lower it, then reverse engineer the calling sequence.
7410b57cec5SDimitry Andric 
7420b57cec5SDimitry Andric   NumOfStatepoints++;
7430b57cec5SDimitry Andric   // Clear state
7440b57cec5SDimitry Andric   StatepointLowering.startNewStatepoint(*this);
745fe6060f1SDimitry Andric   assert(SI.Bases.size() == SI.Ptrs.size());
7460b57cec5SDimitry Andric 
747e8d8bef9SDimitry Andric   LLVM_DEBUG(dbgs() << "Lowering statepoint " << *SI.StatepointInstr << "\n");
7480b57cec5SDimitry Andric #ifndef NDEBUG
749*fcaf7f86SDimitry Andric   for (const auto *Reloc : SI.GCRelocates)
7500b57cec5SDimitry Andric     if (Reloc->getParent() == SI.StatepointInstr->getParent())
7510b57cec5SDimitry Andric       StatepointLowering.scheduleRelocCall(*Reloc);
7520b57cec5SDimitry Andric #endif
7530b57cec5SDimitry Andric 
7540b57cec5SDimitry Andric   // Lower statepoint vmstate and gcstate arguments
755e8d8bef9SDimitry Andric 
756e8d8bef9SDimitry Andric   // All lowered meta args.
7570b57cec5SDimitry Andric   SmallVector<SDValue, 10> LoweredMetaArgs;
758e8d8bef9SDimitry Andric   // Lowered GC pointers (subset of above).
759e8d8bef9SDimitry Andric   SmallVector<SDValue, 16> LoweredGCArgs;
7600b57cec5SDimitry Andric   SmallVector<MachineMemOperand*, 16> MemRefs;
761e8d8bef9SDimitry Andric   // Maps derived pointer SDValue to statepoint result of relocated pointer.
762e8d8bef9SDimitry Andric   DenseMap<SDValue, int> LowerAsVReg;
763e8d8bef9SDimitry Andric   lowerStatepointMetaArgs(LoweredMetaArgs, MemRefs, LoweredGCArgs, LowerAsVReg,
764e8d8bef9SDimitry Andric                           SI, *this);
7650b57cec5SDimitry Andric 
7660b57cec5SDimitry Andric   // Now that we've emitted the spills, we need to update the root so that the
7670b57cec5SDimitry Andric   // call sequence is ordered correctly.
7680b57cec5SDimitry Andric   SI.CLI.setChain(getRoot());
7690b57cec5SDimitry Andric 
7700b57cec5SDimitry Andric   // Get call node, we will replace it later with statepoint
7710b57cec5SDimitry Andric   SDValue ReturnVal;
7720b57cec5SDimitry Andric   SDNode *CallNode;
7730b57cec5SDimitry Andric   std::tie(ReturnVal, CallNode) =
7740b57cec5SDimitry Andric       lowerCallFromStatepointLoweringInfo(SI, *this, PendingExports);
7750b57cec5SDimitry Andric 
7760b57cec5SDimitry Andric   // Construct the actual GC_TRANSITION_START, STATEPOINT, and GC_TRANSITION_END
7770b57cec5SDimitry Andric   // nodes with all the appropriate arguments and return values.
7780b57cec5SDimitry Andric 
7790b57cec5SDimitry Andric   // Call Node: Chain, Target, {Args}, RegMask, [Glue]
7800b57cec5SDimitry Andric   SDValue Chain = CallNode->getOperand(0);
7810b57cec5SDimitry Andric 
7820b57cec5SDimitry Andric   SDValue Glue;
7830b57cec5SDimitry Andric   bool CallHasIncomingGlue = CallNode->getGluedNode();
7840b57cec5SDimitry Andric   if (CallHasIncomingGlue) {
7850b57cec5SDimitry Andric     // Glue is always last operand
7860b57cec5SDimitry Andric     Glue = CallNode->getOperand(CallNode->getNumOperands() - 1);
7870b57cec5SDimitry Andric   }
7880b57cec5SDimitry Andric 
7890b57cec5SDimitry Andric   // Build the GC_TRANSITION_START node if necessary.
7900b57cec5SDimitry Andric   //
7910b57cec5SDimitry Andric   // The operands to the GC_TRANSITION_{START,END} nodes are laid out in the
7920b57cec5SDimitry Andric   // order in which they appear in the call to the statepoint intrinsic. If
7930b57cec5SDimitry Andric   // any of the operands is a pointer-typed, that operand is immediately
7940b57cec5SDimitry Andric   // followed by a SRCVALUE for the pointer that may be used during lowering
7950b57cec5SDimitry Andric   // (e.g. to form MachinePointerInfo values for loads/stores).
7960b57cec5SDimitry Andric   const bool IsGCTransition =
7970b57cec5SDimitry Andric       (SI.StatepointFlags & (uint64_t)StatepointFlags::GCTransition) ==
7980b57cec5SDimitry Andric       (uint64_t)StatepointFlags::GCTransition;
7990b57cec5SDimitry Andric   if (IsGCTransition) {
8000b57cec5SDimitry Andric     SmallVector<SDValue, 8> TSOps;
8010b57cec5SDimitry Andric 
8020b57cec5SDimitry Andric     // Add chain
8030b57cec5SDimitry Andric     TSOps.push_back(Chain);
8040b57cec5SDimitry Andric 
8050b57cec5SDimitry Andric     // Add GC transition arguments
8060b57cec5SDimitry Andric     for (const Value *V : SI.GCTransitionArgs) {
8070b57cec5SDimitry Andric       TSOps.push_back(getValue(V));
8080b57cec5SDimitry Andric       if (V->getType()->isPointerTy())
8090b57cec5SDimitry Andric         TSOps.push_back(DAG.getSrcValue(V));
8100b57cec5SDimitry Andric     }
8110b57cec5SDimitry Andric 
8120b57cec5SDimitry Andric     // Add glue if necessary
8130b57cec5SDimitry Andric     if (CallHasIncomingGlue)
8140b57cec5SDimitry Andric       TSOps.push_back(Glue);
8150b57cec5SDimitry Andric 
8160b57cec5SDimitry Andric     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8170b57cec5SDimitry Andric 
8180b57cec5SDimitry Andric     SDValue GCTransitionStart =
8190b57cec5SDimitry Andric         DAG.getNode(ISD::GC_TRANSITION_START, getCurSDLoc(), NodeTys, TSOps);
8200b57cec5SDimitry Andric 
8210b57cec5SDimitry Andric     Chain = GCTransitionStart.getValue(0);
8220b57cec5SDimitry Andric     Glue = GCTransitionStart.getValue(1);
8230b57cec5SDimitry Andric   }
8240b57cec5SDimitry Andric 
8250b57cec5SDimitry Andric   // TODO: Currently, all of these operands are being marked as read/write in
8260b57cec5SDimitry Andric   // PrologEpilougeInserter.cpp, we should special case the VMState arguments
8270b57cec5SDimitry Andric   // and flags to be read-only.
8280b57cec5SDimitry Andric   SmallVector<SDValue, 40> Ops;
8290b57cec5SDimitry Andric 
8300b57cec5SDimitry Andric   // Add the <id> and <numBytes> constants.
8310b57cec5SDimitry Andric   Ops.push_back(DAG.getTargetConstant(SI.ID, getCurSDLoc(), MVT::i64));
8320b57cec5SDimitry Andric   Ops.push_back(
8330b57cec5SDimitry Andric       DAG.getTargetConstant(SI.NumPatchBytes, getCurSDLoc(), MVT::i32));
8340b57cec5SDimitry Andric 
8350b57cec5SDimitry Andric   // Calculate and push starting position of vmstate arguments
8360b57cec5SDimitry Andric   // Get number of arguments incoming directly into call node
8370b57cec5SDimitry Andric   unsigned NumCallRegArgs =
8380b57cec5SDimitry Andric       CallNode->getNumOperands() - (CallHasIncomingGlue ? 4 : 3);
8390b57cec5SDimitry Andric   Ops.push_back(DAG.getTargetConstant(NumCallRegArgs, getCurSDLoc(), MVT::i32));
8400b57cec5SDimitry Andric 
8410b57cec5SDimitry Andric   // Add call target
8420b57cec5SDimitry Andric   SDValue CallTarget = SDValue(CallNode->getOperand(1).getNode(), 0);
8430b57cec5SDimitry Andric   Ops.push_back(CallTarget);
8440b57cec5SDimitry Andric 
8450b57cec5SDimitry Andric   // Add call arguments
8460b57cec5SDimitry Andric   // Get position of register mask in the call
8470b57cec5SDimitry Andric   SDNode::op_iterator RegMaskIt;
8480b57cec5SDimitry Andric   if (CallHasIncomingGlue)
8490b57cec5SDimitry Andric     RegMaskIt = CallNode->op_end() - 2;
8500b57cec5SDimitry Andric   else
8510b57cec5SDimitry Andric     RegMaskIt = CallNode->op_end() - 1;
8520b57cec5SDimitry Andric   Ops.insert(Ops.end(), CallNode->op_begin() + 2, RegMaskIt);
8530b57cec5SDimitry Andric 
8540b57cec5SDimitry Andric   // Add a constant argument for the calling convention
8550b57cec5SDimitry Andric   pushStackMapConstant(Ops, *this, SI.CLI.CallConv);
8560b57cec5SDimitry Andric 
8570b57cec5SDimitry Andric   // Add a constant argument for the flags
8580b57cec5SDimitry Andric   uint64_t Flags = SI.StatepointFlags;
8590b57cec5SDimitry Andric   assert(((Flags & ~(uint64_t)StatepointFlags::MaskAll) == 0) &&
8600b57cec5SDimitry Andric          "Unknown flag used");
8610b57cec5SDimitry Andric   pushStackMapConstant(Ops, *this, Flags);
8620b57cec5SDimitry Andric 
8630b57cec5SDimitry Andric   // Insert all vmstate and gcstate arguments
864e8d8bef9SDimitry Andric   llvm::append_range(Ops, LoweredMetaArgs);
8650b57cec5SDimitry Andric 
8660b57cec5SDimitry Andric   // Add register mask from call node
8670b57cec5SDimitry Andric   Ops.push_back(*RegMaskIt);
8680b57cec5SDimitry Andric 
8690b57cec5SDimitry Andric   // Add chain
8700b57cec5SDimitry Andric   Ops.push_back(Chain);
8710b57cec5SDimitry Andric 
8720b57cec5SDimitry Andric   // Same for the glue, but we add it only if original call had it
8730b57cec5SDimitry Andric   if (Glue.getNode())
8740b57cec5SDimitry Andric     Ops.push_back(Glue);
8750b57cec5SDimitry Andric 
8760b57cec5SDimitry Andric   // Compute return values.  Provide a glue output since we consume one as
8770b57cec5SDimitry Andric   // input.  This allows someone else to chain off us as needed.
878e8d8bef9SDimitry Andric   SmallVector<EVT, 8> NodeTys;
879e8d8bef9SDimitry Andric   for (auto SD : LoweredGCArgs) {
880e8d8bef9SDimitry Andric     if (!LowerAsVReg.count(SD))
881e8d8bef9SDimitry Andric       continue;
882e8d8bef9SDimitry Andric     NodeTys.push_back(SD.getValueType());
883e8d8bef9SDimitry Andric   }
884e8d8bef9SDimitry Andric   LLVM_DEBUG(dbgs() << "Statepoint has " << NodeTys.size() << " results\n");
885e8d8bef9SDimitry Andric   assert(NodeTys.size() == LowerAsVReg.size() && "Inconsistent GC Ptr lowering");
886e8d8bef9SDimitry Andric   NodeTys.push_back(MVT::Other);
887e8d8bef9SDimitry Andric   NodeTys.push_back(MVT::Glue);
8880b57cec5SDimitry Andric 
889e8d8bef9SDimitry Andric   unsigned NumResults = NodeTys.size();
8900b57cec5SDimitry Andric   MachineSDNode *StatepointMCNode =
8910b57cec5SDimitry Andric     DAG.getMachineNode(TargetOpcode::STATEPOINT, getCurSDLoc(), NodeTys, Ops);
8920b57cec5SDimitry Andric   DAG.setNodeMemRefs(StatepointMCNode, MemRefs);
8930b57cec5SDimitry Andric 
89481ad6265SDimitry Andric   // For values lowered to tied-defs, create the virtual registers if used
89581ad6265SDimitry Andric   // in other blocks. For local gc.relocate record appropriate statepoint
89681ad6265SDimitry Andric   // result in StatepointLoweringState.
897e8d8bef9SDimitry Andric   DenseMap<SDValue, Register> VirtRegs;
898e8d8bef9SDimitry Andric   for (const auto *Relocate : SI.GCRelocates) {
899e8d8bef9SDimitry Andric     Value *Derived = Relocate->getDerivedPtr();
900e8d8bef9SDimitry Andric     SDValue SD = getValue(Derived);
901e8d8bef9SDimitry Andric     if (!LowerAsVReg.count(SD))
902e8d8bef9SDimitry Andric       continue;
903e8d8bef9SDimitry Andric 
90481ad6265SDimitry Andric     SDValue Relocated = SDValue(StatepointMCNode, LowerAsVReg[SD]);
90581ad6265SDimitry Andric 
90681ad6265SDimitry Andric     // Handle local relocate. Note that different relocates might
90781ad6265SDimitry Andric     // map to the same SDValue.
90881ad6265SDimitry Andric     if (SI.StatepointInstr->getParent() == Relocate->getParent()) {
90981ad6265SDimitry Andric       SDValue Res = StatepointLowering.getLocation(SD);
91081ad6265SDimitry Andric       if (Res)
91181ad6265SDimitry Andric         assert(Res == Relocated);
91281ad6265SDimitry Andric       else
91381ad6265SDimitry Andric         StatepointLowering.setLocation(SD, Relocated);
91481ad6265SDimitry Andric       continue;
91581ad6265SDimitry Andric     }
91681ad6265SDimitry Andric 
917e8d8bef9SDimitry Andric     // Handle multiple gc.relocates of the same input efficiently.
918e8d8bef9SDimitry Andric     if (VirtRegs.count(SD))
919e8d8bef9SDimitry Andric       continue;
920e8d8bef9SDimitry Andric 
921e8d8bef9SDimitry Andric     auto *RetTy = Relocate->getType();
922e8d8bef9SDimitry Andric     Register Reg = FuncInfo.CreateRegs(RetTy);
923e8d8bef9SDimitry Andric     RegsForValue RFV(*DAG.getContext(), DAG.getTargetLoweringInfo(),
924e8d8bef9SDimitry Andric                      DAG.getDataLayout(), Reg, RetTy, None);
925e8d8bef9SDimitry Andric     SDValue Chain = DAG.getRoot();
926e8d8bef9SDimitry Andric     RFV.getCopyToRegs(Relocated, DAG, getCurSDLoc(), Chain, nullptr);
927e8d8bef9SDimitry Andric     PendingExports.push_back(Chain);
928e8d8bef9SDimitry Andric 
929e8d8bef9SDimitry Andric     VirtRegs[SD] = Reg;
930e8d8bef9SDimitry Andric   }
931e8d8bef9SDimitry Andric 
932e8d8bef9SDimitry Andric   // Record for later use how each relocation was lowered.  This is needed to
933e8d8bef9SDimitry Andric   // allow later gc.relocates to mirror the lowering chosen.
934e8d8bef9SDimitry Andric   const Instruction *StatepointInstr = SI.StatepointInstr;
935e8d8bef9SDimitry Andric   auto &RelocationMap = FuncInfo.StatepointRelocationMaps[StatepointInstr];
936e8d8bef9SDimitry Andric   for (const GCRelocateInst *Relocate : SI.GCRelocates) {
937e8d8bef9SDimitry Andric     const Value *V = Relocate->getDerivedPtr();
938e8d8bef9SDimitry Andric     SDValue SDV = getValue(V);
939e8d8bef9SDimitry Andric     SDValue Loc = StatepointLowering.getLocation(SDV);
940e8d8bef9SDimitry Andric 
94181ad6265SDimitry Andric     bool IsLocal = (Relocate->getParent() == StatepointInstr->getParent());
94281ad6265SDimitry Andric 
943e8d8bef9SDimitry Andric     RecordType Record;
94481ad6265SDimitry Andric     if (IsLocal && LowerAsVReg.count(SDV)) {
94581ad6265SDimitry Andric       // Result is already stored in StatepointLowering
94681ad6265SDimitry Andric       Record.type = RecordType::SDValueNode;
94781ad6265SDimitry Andric     } else if (LowerAsVReg.count(SDV)) {
948e8d8bef9SDimitry Andric       Record.type = RecordType::VReg;
949e8d8bef9SDimitry Andric       assert(VirtRegs.count(SDV));
950e8d8bef9SDimitry Andric       Record.payload.Reg = VirtRegs[SDV];
951e8d8bef9SDimitry Andric     } else if (Loc.getNode()) {
952e8d8bef9SDimitry Andric       Record.type = RecordType::Spill;
953e8d8bef9SDimitry Andric       Record.payload.FI = cast<FrameIndexSDNode>(Loc)->getIndex();
954e8d8bef9SDimitry Andric     } else {
955e8d8bef9SDimitry Andric       Record.type = RecordType::NoRelocate;
956e8d8bef9SDimitry Andric       // If we didn't relocate a value, we'll essentialy end up inserting an
957e8d8bef9SDimitry Andric       // additional use of the original value when lowering the gc.relocate.
958e8d8bef9SDimitry Andric       // We need to make sure the value is available at the new use, which
959e8d8bef9SDimitry Andric       // might be in another block.
960e8d8bef9SDimitry Andric       if (Relocate->getParent() != StatepointInstr->getParent())
961e8d8bef9SDimitry Andric         ExportFromCurrentBlock(V);
962e8d8bef9SDimitry Andric     }
96381ad6265SDimitry Andric     RelocationMap[Relocate] = Record;
964e8d8bef9SDimitry Andric   }
965e8d8bef9SDimitry Andric 
966e8d8bef9SDimitry Andric 
967e8d8bef9SDimitry Andric 
9680b57cec5SDimitry Andric   SDNode *SinkNode = StatepointMCNode;
9690b57cec5SDimitry Andric 
9700b57cec5SDimitry Andric   // Build the GC_TRANSITION_END node if necessary.
9710b57cec5SDimitry Andric   //
9720b57cec5SDimitry Andric   // See the comment above regarding GC_TRANSITION_START for the layout of
9730b57cec5SDimitry Andric   // the operands to the GC_TRANSITION_END node.
9740b57cec5SDimitry Andric   if (IsGCTransition) {
9750b57cec5SDimitry Andric     SmallVector<SDValue, 8> TEOps;
9760b57cec5SDimitry Andric 
9770b57cec5SDimitry Andric     // Add chain
978e8d8bef9SDimitry Andric     TEOps.push_back(SDValue(StatepointMCNode, NumResults - 2));
9790b57cec5SDimitry Andric 
9800b57cec5SDimitry Andric     // Add GC transition arguments
9810b57cec5SDimitry Andric     for (const Value *V : SI.GCTransitionArgs) {
9820b57cec5SDimitry Andric       TEOps.push_back(getValue(V));
9830b57cec5SDimitry Andric       if (V->getType()->isPointerTy())
9840b57cec5SDimitry Andric         TEOps.push_back(DAG.getSrcValue(V));
9850b57cec5SDimitry Andric     }
9860b57cec5SDimitry Andric 
9870b57cec5SDimitry Andric     // Add glue
988e8d8bef9SDimitry Andric     TEOps.push_back(SDValue(StatepointMCNode, NumResults - 1));
9890b57cec5SDimitry Andric 
9900b57cec5SDimitry Andric     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
9910b57cec5SDimitry Andric 
9920b57cec5SDimitry Andric     SDValue GCTransitionStart =
9930b57cec5SDimitry Andric         DAG.getNode(ISD::GC_TRANSITION_END, getCurSDLoc(), NodeTys, TEOps);
9940b57cec5SDimitry Andric 
9950b57cec5SDimitry Andric     SinkNode = GCTransitionStart.getNode();
9960b57cec5SDimitry Andric   }
9970b57cec5SDimitry Andric 
9980b57cec5SDimitry Andric   // Replace original call
999e8d8bef9SDimitry Andric   // Call: ch,glue = CALL ...
1000e8d8bef9SDimitry Andric   // Statepoint: [gc relocates],ch,glue = STATEPOINT ...
1001e8d8bef9SDimitry Andric   unsigned NumSinkValues = SinkNode->getNumValues();
1002e8d8bef9SDimitry Andric   SDValue StatepointValues[2] = {SDValue(SinkNode, NumSinkValues - 2),
1003e8d8bef9SDimitry Andric                                  SDValue(SinkNode, NumSinkValues - 1)};
1004e8d8bef9SDimitry Andric   DAG.ReplaceAllUsesWith(CallNode, StatepointValues);
10050b57cec5SDimitry Andric   // Remove original call node
10060b57cec5SDimitry Andric   DAG.DeleteNode(CallNode);
10070b57cec5SDimitry Andric 
1008e8d8bef9SDimitry Andric   // Since we always emit CopyToRegs (even for local relocates), we must
1009e8d8bef9SDimitry Andric   // update root, so that they are emitted before any local uses.
1010e8d8bef9SDimitry Andric   (void)getControlRoot();
10110b57cec5SDimitry Andric 
10120b57cec5SDimitry Andric   // TODO: A better future implementation would be to emit a single variable
10130b57cec5SDimitry Andric   // argument, variable return value STATEPOINT node here and then hookup the
10140b57cec5SDimitry Andric   // return value of each gc.relocate to the respective output of the
10150b57cec5SDimitry Andric   // previously emitted STATEPOINT value.  Unfortunately, this doesn't appear
10160b57cec5SDimitry Andric   // to actually be possible today.
10170b57cec5SDimitry Andric 
10180b57cec5SDimitry Andric   return ReturnVal;
10190b57cec5SDimitry Andric }
10200b57cec5SDimitry Andric 
10211fd87a68SDimitry Andric /// Return two gc.results if present.  First result is a block local
10221fd87a68SDimitry Andric /// gc.result, second result is a non-block local gc.result.  Corresponding
10231fd87a68SDimitry Andric /// entry will be nullptr if not present.
10241fd87a68SDimitry Andric static std::pair<const GCResultInst*, const GCResultInst*>
10251fd87a68SDimitry Andric getGCResultLocality(const GCStatepointInst &S) {
10261fd87a68SDimitry Andric   std::pair<const GCResultInst *, const GCResultInst*> Res(nullptr, nullptr);
1027*fcaf7f86SDimitry Andric   for (const auto *U : S.users()) {
10281fd87a68SDimitry Andric     auto *GRI = dyn_cast<GCResultInst>(U);
10291fd87a68SDimitry Andric     if (!GRI)
10301fd87a68SDimitry Andric       continue;
10311fd87a68SDimitry Andric     if (GRI->getParent() == S.getParent())
10321fd87a68SDimitry Andric       Res.first = GRI;
10331fd87a68SDimitry Andric     else
10341fd87a68SDimitry Andric       Res.second = GRI;
10351fd87a68SDimitry Andric   }
10361fd87a68SDimitry Andric   return Res;
10371fd87a68SDimitry Andric }
10381fd87a68SDimitry Andric 
10390b57cec5SDimitry Andric void
10405ffd83dbSDimitry Andric SelectionDAGBuilder::LowerStatepoint(const GCStatepointInst &I,
10410b57cec5SDimitry Andric                                      const BasicBlock *EHPadBB /*= nullptr*/) {
10425ffd83dbSDimitry Andric   assert(I.getCallingConv() != CallingConv::AnyReg &&
10430b57cec5SDimitry Andric          "anyregcc is not supported on statepoints!");
10440b57cec5SDimitry Andric 
10450b57cec5SDimitry Andric #ifndef NDEBUG
10460b57cec5SDimitry Andric   // Check that the associated GCStrategy expects to encounter statepoints.
10470b57cec5SDimitry Andric   assert(GFI->getStrategy().useStatepoints() &&
10480b57cec5SDimitry Andric          "GCStrategy does not expect to encounter statepoints");
10490b57cec5SDimitry Andric #endif
10500b57cec5SDimitry Andric 
10510b57cec5SDimitry Andric   SDValue ActualCallee;
10525ffd83dbSDimitry Andric   SDValue Callee = getValue(I.getActualCalledOperand());
10530b57cec5SDimitry Andric 
10545ffd83dbSDimitry Andric   if (I.getNumPatchBytes() > 0) {
10550b57cec5SDimitry Andric     // If we've been asked to emit a nop sequence instead of a call instruction
10560b57cec5SDimitry Andric     // for this statepoint then don't lower the call target, but use a constant
10575ffd83dbSDimitry Andric     // `undef` instead.  Not lowering the call target lets statepoint clients
10585ffd83dbSDimitry Andric     // get away without providing a physical address for the symbolic call
10595ffd83dbSDimitry Andric     // target at link time.
10605ffd83dbSDimitry Andric     ActualCallee = DAG.getUNDEF(Callee.getValueType());
10610b57cec5SDimitry Andric   } else {
10625ffd83dbSDimitry Andric     ActualCallee = Callee;
10630b57cec5SDimitry Andric   }
10640b57cec5SDimitry Andric 
10650b57cec5SDimitry Andric   StatepointLoweringInfo SI(DAG);
10665ffd83dbSDimitry Andric   populateCallLoweringInfo(SI.CLI, &I, GCStatepointInst::CallArgsBeginPos,
10675ffd83dbSDimitry Andric                            I.getNumCallArgs(), ActualCallee,
10685ffd83dbSDimitry Andric                            I.getActualReturnType(), false /* IsPatchPoint */);
10690b57cec5SDimitry Andric 
10705ffd83dbSDimitry Andric   // There may be duplication in the gc.relocate list; such as two copies of
10715ffd83dbSDimitry Andric   // each relocation on normal and exceptional path for an invoke.  We only
10725ffd83dbSDimitry Andric   // need to spill once and record one copy in the stackmap, but we need to
10735ffd83dbSDimitry Andric   // reload once per gc.relocate.  (Dedupping gc.relocates is trickier and best
10745ffd83dbSDimitry Andric   // handled as a CSE problem elsewhere.)
10755ffd83dbSDimitry Andric   // TODO: There a couple of major stackmap size optimizations we could do
10765ffd83dbSDimitry Andric   // here if we wished.
10775ffd83dbSDimitry Andric   // 1) If we've encountered a derived pair {B, D}, we don't need to actually
10785ffd83dbSDimitry Andric   // record {B,B} if it's seen later.
10795ffd83dbSDimitry Andric   // 2) Due to rematerialization, actual derived pointers are somewhat rare;
10805ffd83dbSDimitry Andric   // given that, we could change the format to record base pointer relocations
10815ffd83dbSDimitry Andric   // separately with half the space. This would require a format rev and a
10825ffd83dbSDimitry Andric   // fairly major rework of the STATEPOINT node though.
10835ffd83dbSDimitry Andric   SmallSet<SDValue, 8> Seen;
10845ffd83dbSDimitry Andric   for (const GCRelocateInst *Relocate : I.getGCRelocates()) {
10850b57cec5SDimitry Andric     SI.GCRelocates.push_back(Relocate);
10865ffd83dbSDimitry Andric 
10875ffd83dbSDimitry Andric     SDValue DerivedSD = getValue(Relocate->getDerivedPtr());
10885ffd83dbSDimitry Andric     if (Seen.insert(DerivedSD).second) {
10890b57cec5SDimitry Andric       SI.Bases.push_back(Relocate->getBasePtr());
10900b57cec5SDimitry Andric       SI.Ptrs.push_back(Relocate->getDerivedPtr());
10910b57cec5SDimitry Andric     }
10925ffd83dbSDimitry Andric   }
10930b57cec5SDimitry Andric 
1094fe6060f1SDimitry Andric   // If we find a deopt value which isn't explicitly added, we need to
1095fe6060f1SDimitry Andric   // ensure it gets lowered such that gc cycles occurring before the
1096fe6060f1SDimitry Andric   // deoptimization event during the lifetime of the call don't invalidate
1097fe6060f1SDimitry Andric   // the pointer we're deopting with.  Note that we assume that all
1098fe6060f1SDimitry Andric   // pointers passed to deopt are base pointers; relaxing that assumption
1099fe6060f1SDimitry Andric   // would require relatively large changes to how we represent relocations.
1100fe6060f1SDimitry Andric   for (Value *V : I.deopt_operands()) {
1101fe6060f1SDimitry Andric     if (!isGCValue(V, *this))
1102fe6060f1SDimitry Andric       continue;
1103fe6060f1SDimitry Andric     if (Seen.insert(getValue(V)).second) {
1104fe6060f1SDimitry Andric       SI.Bases.push_back(V);
1105fe6060f1SDimitry Andric       SI.Ptrs.push_back(V);
1106fe6060f1SDimitry Andric     }
1107fe6060f1SDimitry Andric   }
1108fe6060f1SDimitry Andric 
11095ffd83dbSDimitry Andric   SI.GCArgs = ArrayRef<const Use>(I.gc_args_begin(), I.gc_args_end());
11105ffd83dbSDimitry Andric   SI.StatepointInstr = &I;
11115ffd83dbSDimitry Andric   SI.ID = I.getID();
11125ffd83dbSDimitry Andric 
11135ffd83dbSDimitry Andric   SI.DeoptState = ArrayRef<const Use>(I.deopt_begin(), I.deopt_end());
11145ffd83dbSDimitry Andric   SI.GCTransitionArgs = ArrayRef<const Use>(I.gc_transition_args_begin(),
11155ffd83dbSDimitry Andric                                             I.gc_transition_args_end());
11165ffd83dbSDimitry Andric 
11175ffd83dbSDimitry Andric   SI.StatepointFlags = I.getFlags();
11185ffd83dbSDimitry Andric   SI.NumPatchBytes = I.getNumPatchBytes();
11190b57cec5SDimitry Andric   SI.EHPadBB = EHPadBB;
11200b57cec5SDimitry Andric 
11210b57cec5SDimitry Andric   SDValue ReturnValue = LowerAsSTATEPOINT(SI);
11220b57cec5SDimitry Andric 
11230b57cec5SDimitry Andric   // Export the result value if needed
11241fd87a68SDimitry Andric   const auto GCResultLocality = getGCResultLocality(I);
11255ffd83dbSDimitry Andric 
11261fd87a68SDimitry Andric   if (!GCResultLocality.first && !GCResultLocality.second) {
11275ffd83dbSDimitry Andric     // The return value is not needed, just generate a poison value.
11281fd87a68SDimitry Andric     // Note: This covers the void return case.
11295ffd83dbSDimitry Andric     setValue(&I, DAG.getIntPtrConstant(-1, getCurSDLoc()));
11305ffd83dbSDimitry Andric     return;
11315ffd83dbSDimitry Andric   }
11325ffd83dbSDimitry Andric 
1133fe6060f1SDimitry Andric   if (GCResultLocality.first) {
11345ffd83dbSDimitry Andric     // Result value will be used in a same basic block. Don't export it or
11355ffd83dbSDimitry Andric     // perform any explicit register copies. The gc_result will simply grab
11365ffd83dbSDimitry Andric     // this value.
11375ffd83dbSDimitry Andric     setValue(&I, ReturnValue);
11385ffd83dbSDimitry Andric   }
11395ffd83dbSDimitry Andric 
1140fe6060f1SDimitry Andric   if (!GCResultLocality.second)
1141fe6060f1SDimitry Andric     return;
11425ffd83dbSDimitry Andric   // Result value will be used in a different basic block so we need to export
11435ffd83dbSDimitry Andric   // it now.  Default exporting mechanism will not work here because statepoint
11445ffd83dbSDimitry Andric   // call has a different type than the actual call. It means that by default
11455ffd83dbSDimitry Andric   // llvm will create export register of the wrong type (always i32 in our
11465ffd83dbSDimitry Andric   // case). So instead we need to create export register with correct type
11475ffd83dbSDimitry Andric   // manually.
11480b57cec5SDimitry Andric   // TODO: To eliminate this problem we can remove gc.result intrinsics
11490b57cec5SDimitry Andric   //       completely and make statepoint call to return a tuple.
11501fd87a68SDimitry Andric   Type *RetTy = GCResultLocality.second->getType();
11510b57cec5SDimitry Andric   unsigned Reg = FuncInfo.CreateRegs(RetTy);
11520b57cec5SDimitry Andric   RegsForValue RFV(*DAG.getContext(), DAG.getTargetLoweringInfo(),
11530b57cec5SDimitry Andric                    DAG.getDataLayout(), Reg, RetTy,
11545ffd83dbSDimitry Andric                    I.getCallingConv());
11550b57cec5SDimitry Andric   SDValue Chain = DAG.getEntryNode();
11560b57cec5SDimitry Andric 
11570b57cec5SDimitry Andric   RFV.getCopyToRegs(ReturnValue, DAG, getCurSDLoc(), Chain, nullptr);
11580b57cec5SDimitry Andric   PendingExports.push_back(Chain);
11595ffd83dbSDimitry Andric   FuncInfo.ValueMap[&I] = Reg;
11600b57cec5SDimitry Andric }
11610b57cec5SDimitry Andric 
11620b57cec5SDimitry Andric void SelectionDAGBuilder::LowerCallSiteWithDeoptBundleImpl(
11630b57cec5SDimitry Andric     const CallBase *Call, SDValue Callee, const BasicBlock *EHPadBB,
11640b57cec5SDimitry Andric     bool VarArgDisallowed, bool ForceVoidReturnTy) {
11650b57cec5SDimitry Andric   StatepointLoweringInfo SI(DAG);
11660b57cec5SDimitry Andric   unsigned ArgBeginIndex = Call->arg_begin() - Call->op_begin();
11670b57cec5SDimitry Andric   populateCallLoweringInfo(
1168349cc55cSDimitry Andric       SI.CLI, Call, ArgBeginIndex, Call->arg_size(), Callee,
11690b57cec5SDimitry Andric       ForceVoidReturnTy ? Type::getVoidTy(*DAG.getContext()) : Call->getType(),
11700b57cec5SDimitry Andric       false);
11710b57cec5SDimitry Andric   if (!VarArgDisallowed)
11720b57cec5SDimitry Andric     SI.CLI.IsVarArg = Call->getFunctionType()->isVarArg();
11730b57cec5SDimitry Andric 
11740b57cec5SDimitry Andric   auto DeoptBundle = *Call->getOperandBundle(LLVMContext::OB_deopt);
11750b57cec5SDimitry Andric 
11760b57cec5SDimitry Andric   unsigned DefaultID = StatepointDirectives::DeoptBundleStatepointID;
11770b57cec5SDimitry Andric 
11780b57cec5SDimitry Andric   auto SD = parseStatepointDirectivesFromAttrs(Call->getAttributes());
117981ad6265SDimitry Andric   SI.ID = SD.StatepointID.value_or(DefaultID);
118081ad6265SDimitry Andric   SI.NumPatchBytes = SD.NumPatchBytes.value_or(0);
11810b57cec5SDimitry Andric 
11820b57cec5SDimitry Andric   SI.DeoptState =
11830b57cec5SDimitry Andric       ArrayRef<const Use>(DeoptBundle.Inputs.begin(), DeoptBundle.Inputs.end());
11840b57cec5SDimitry Andric   SI.StatepointFlags = static_cast<uint64_t>(StatepointFlags::None);
11850b57cec5SDimitry Andric   SI.EHPadBB = EHPadBB;
11860b57cec5SDimitry Andric 
11870b57cec5SDimitry Andric   // NB! The GC arguments are deliberately left empty.
11880b57cec5SDimitry Andric 
11890b57cec5SDimitry Andric   if (SDValue ReturnVal = LowerAsSTATEPOINT(SI)) {
11900b57cec5SDimitry Andric     ReturnVal = lowerRangeToAssertZExt(DAG, *Call, ReturnVal);
11910b57cec5SDimitry Andric     setValue(Call, ReturnVal);
11920b57cec5SDimitry Andric   }
11930b57cec5SDimitry Andric }
11940b57cec5SDimitry Andric 
11950b57cec5SDimitry Andric void SelectionDAGBuilder::LowerCallSiteWithDeoptBundle(
11960b57cec5SDimitry Andric     const CallBase *Call, SDValue Callee, const BasicBlock *EHPadBB) {
11970b57cec5SDimitry Andric   LowerCallSiteWithDeoptBundleImpl(Call, Callee, EHPadBB,
11980b57cec5SDimitry Andric                                    /* VarArgDisallowed = */ false,
11990b57cec5SDimitry Andric                                    /* ForceVoidReturnTy  = */ false);
12000b57cec5SDimitry Andric }
12010b57cec5SDimitry Andric 
12020b57cec5SDimitry Andric void SelectionDAGBuilder::visitGCResult(const GCResultInst &CI) {
12030b57cec5SDimitry Andric   // The result value of the gc_result is simply the result of the actual
12040b57cec5SDimitry Andric   // call.  We've already emitted this, so just grab the value.
1205*fcaf7f86SDimitry Andric   const Value *SI = CI.getStatepoint();
1206*fcaf7f86SDimitry Andric   assert((isa<GCStatepointInst>(SI) || isa<UndefValue>(SI)) &&
1207*fcaf7f86SDimitry Andric          "GetStatepoint must return one of two types");
1208*fcaf7f86SDimitry Andric   if (isa<UndefValue>(SI))
1209*fcaf7f86SDimitry Andric     return;
12100b57cec5SDimitry Andric 
1211*fcaf7f86SDimitry Andric   if (cast<GCStatepointInst>(SI)->getParent() == CI.getParent()) {
12125ffd83dbSDimitry Andric     setValue(&CI, getValue(SI));
12135ffd83dbSDimitry Andric     return;
12145ffd83dbSDimitry Andric   }
12150b57cec5SDimitry Andric   // Statepoint is in different basic block so we should have stored call
12160b57cec5SDimitry Andric   // result in a virtual register.
12170b57cec5SDimitry Andric   // We can not use default getValue() functionality to copy value from this
12180b57cec5SDimitry Andric   // register because statepoint and actual call return types can be
12190b57cec5SDimitry Andric   // different, and getValue() will use CopyFromReg of the wrong type,
12200b57cec5SDimitry Andric   // which is always i32 in our case.
12211fd87a68SDimitry Andric   Type *RetTy = CI.getType();
12225ffd83dbSDimitry Andric   SDValue CopyFromReg = getCopyFromRegs(SI, RetTy);
12230b57cec5SDimitry Andric 
12240b57cec5SDimitry Andric   assert(CopyFromReg.getNode());
12250b57cec5SDimitry Andric   setValue(&CI, CopyFromReg);
12260b57cec5SDimitry Andric }
12270b57cec5SDimitry Andric 
12280b57cec5SDimitry Andric void SelectionDAGBuilder::visitGCRelocate(const GCRelocateInst &Relocate) {
1229*fcaf7f86SDimitry Andric   const Value *Statepoint = Relocate.getStatepoint();
12300b57cec5SDimitry Andric #ifndef NDEBUG
12310b57cec5SDimitry Andric   // Consistency check
12320b57cec5SDimitry Andric   // We skip this check for relocates not in the same basic block as their
12330b57cec5SDimitry Andric   // statepoint. It would be too expensive to preserve validation info through
12340b57cec5SDimitry Andric   // different basic blocks.
1235*fcaf7f86SDimitry Andric   assert((isa<GCStatepointInst>(Statepoint) || isa<UndefValue>(Statepoint)) &&
1236*fcaf7f86SDimitry Andric          "GetStatepoint must return one of two types");
1237*fcaf7f86SDimitry Andric   if (isa<UndefValue>(Statepoint))
1238*fcaf7f86SDimitry Andric     return;
1239*fcaf7f86SDimitry Andric 
1240*fcaf7f86SDimitry Andric   if (cast<GCStatepointInst>(Statepoint)->getParent() == Relocate.getParent())
12410b57cec5SDimitry Andric     StatepointLowering.relocCallVisited(Relocate);
12420b57cec5SDimitry Andric 
12430b57cec5SDimitry Andric   auto *Ty = Relocate.getType()->getScalarType();
12440b57cec5SDimitry Andric   if (auto IsManaged = GFI->getStrategy().isGCManagedPointer(Ty))
12450b57cec5SDimitry Andric     assert(*IsManaged && "Non gc managed pointer relocated!");
12460b57cec5SDimitry Andric #endif
12470b57cec5SDimitry Andric 
12480b57cec5SDimitry Andric   const Value *DerivedPtr = Relocate.getDerivedPtr();
1249e8d8bef9SDimitry Andric   auto &RelocationMap =
1250*fcaf7f86SDimitry Andric       FuncInfo.StatepointRelocationMaps[cast<GCStatepointInst>(Statepoint)];
125181ad6265SDimitry Andric   auto SlotIt = RelocationMap.find(&Relocate);
1252e8d8bef9SDimitry Andric   assert(SlotIt != RelocationMap.end() && "Relocating not lowered gc value");
1253e8d8bef9SDimitry Andric   const RecordType &Record = SlotIt->second;
1254e8d8bef9SDimitry Andric 
1255e8d8bef9SDimitry Andric   // If relocation was done via virtual register..
125681ad6265SDimitry Andric   if (Record.type == RecordType::SDValueNode) {
1257*fcaf7f86SDimitry Andric     assert(cast<GCStatepointInst>(Statepoint)->getParent() ==
1258*fcaf7f86SDimitry Andric                Relocate.getParent() &&
125981ad6265SDimitry Andric            "Nonlocal gc.relocate mapped via SDValue");
126081ad6265SDimitry Andric     SDValue SDV = StatepointLowering.getLocation(getValue(DerivedPtr));
126181ad6265SDimitry Andric     assert(SDV.getNode() && "empty SDValue");
126281ad6265SDimitry Andric     setValue(&Relocate, SDV);
126381ad6265SDimitry Andric     return;
126481ad6265SDimitry Andric   }
1265e8d8bef9SDimitry Andric   if (Record.type == RecordType::VReg) {
1266e8d8bef9SDimitry Andric     Register InReg = Record.payload.Reg;
1267e8d8bef9SDimitry Andric     RegsForValue RFV(*DAG.getContext(), DAG.getTargetLoweringInfo(),
1268e8d8bef9SDimitry Andric                      DAG.getDataLayout(), InReg, Relocate.getType(),
1269e8d8bef9SDimitry Andric                      None); // This is not an ABI copy.
1270e8d8bef9SDimitry Andric     // We generate copy to/from regs even for local uses, hence we must
1271e8d8bef9SDimitry Andric     // chain with current root to ensure proper ordering of copies w.r.t.
1272e8d8bef9SDimitry Andric     // statepoint.
1273e8d8bef9SDimitry Andric     SDValue Chain = DAG.getRoot();
1274e8d8bef9SDimitry Andric     SDValue Relocation = RFV.getCopyFromRegs(DAG, FuncInfo, getCurSDLoc(),
1275e8d8bef9SDimitry Andric                                              Chain, nullptr, nullptr);
1276e8d8bef9SDimitry Andric     setValue(&Relocate, Relocation);
1277e8d8bef9SDimitry Andric     return;
1278e8d8bef9SDimitry Andric   }
1279e8d8bef9SDimitry Andric 
1280fe6060f1SDimitry Andric   if (Record.type == RecordType::Spill) {
1281fe6060f1SDimitry Andric     unsigned Index = Record.payload.FI;
12828bcb0991SDimitry Andric     SDValue SpillSlot = DAG.getTargetFrameIndex(Index, getFrameIndexTy());
12830b57cec5SDimitry Andric 
12845ffd83dbSDimitry Andric     // All the reloads are independent and are reading memory only modified by
12855ffd83dbSDimitry Andric     // statepoints (i.e. no other aliasing stores); informing SelectionDAG of
1286fe6060f1SDimitry Andric     // this this let's CSE kick in for free and allows reordering of
1287fe6060f1SDimitry Andric     // instructions if possible.  The lowering for statepoint sets the root,
1288fe6060f1SDimitry Andric     // so this is ordering all reloads with the either
1289fe6060f1SDimitry Andric     // a) the statepoint node itself, or
1290fe6060f1SDimitry Andric     // b) the entry of the current block for an invoke statepoint.
12915ffd83dbSDimitry Andric     const SDValue Chain = DAG.getRoot(); // != Builder.getRoot()
12920b57cec5SDimitry Andric 
12938bcb0991SDimitry Andric     auto &MF = DAG.getMachineFunction();
12948bcb0991SDimitry Andric     auto &MFI = MF.getFrameInfo();
12958bcb0991SDimitry Andric     auto PtrInfo = MachinePointerInfo::getFixedStack(MF, Index);
12965ffd83dbSDimitry Andric     auto *LoadMMO = MF.getMachineMemOperand(PtrInfo, MachineMemOperand::MOLoad,
12978bcb0991SDimitry Andric                                             MFI.getObjectSize(Index),
12985ffd83dbSDimitry Andric                                             MFI.getObjectAlign(Index));
12998bcb0991SDimitry Andric 
13008bcb0991SDimitry Andric     auto LoadVT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
13018bcb0991SDimitry Andric                                                            Relocate.getType());
13028bcb0991SDimitry Andric 
1303fe6060f1SDimitry Andric     SDValue SpillLoad =
1304fe6060f1SDimitry Andric         DAG.getLoad(LoadVT, getCurSDLoc(), Chain, SpillSlot, LoadMMO);
13055ffd83dbSDimitry Andric     PendingLoads.push_back(SpillLoad.getValue(1));
13060b57cec5SDimitry Andric 
13070b57cec5SDimitry Andric     assert(SpillLoad.getNode());
13080b57cec5SDimitry Andric     setValue(&Relocate, SpillLoad);
1309fe6060f1SDimitry Andric     return;
1310fe6060f1SDimitry Andric   }
1311fe6060f1SDimitry Andric 
1312fe6060f1SDimitry Andric   assert(Record.type == RecordType::NoRelocate);
1313fe6060f1SDimitry Andric   SDValue SD = getValue(DerivedPtr);
1314fe6060f1SDimitry Andric 
1315fe6060f1SDimitry Andric   if (SD.isUndef() && SD.getValueType().getSizeInBits() <= 64) {
1316fe6060f1SDimitry Andric     // Lowering relocate(undef) as arbitrary constant. Current constant value
1317fe6060f1SDimitry Andric     // is chosen such that it's unlikely to be a valid pointer.
1318fe6060f1SDimitry Andric     setValue(&Relocate, DAG.getTargetConstant(0xFEFEFEFE, SDLoc(SD), MVT::i64));
1319fe6060f1SDimitry Andric     return;
1320fe6060f1SDimitry Andric   }
1321fe6060f1SDimitry Andric 
1322fe6060f1SDimitry Andric   // We didn't need to spill these special cases (constants and allocas).
1323fe6060f1SDimitry Andric   // See the handling in spillIncomingValueForStatepoint for detail.
1324fe6060f1SDimitry Andric   setValue(&Relocate, SD);
13250b57cec5SDimitry Andric }
13260b57cec5SDimitry Andric 
13270b57cec5SDimitry Andric void SelectionDAGBuilder::LowerDeoptimizeCall(const CallInst *CI) {
13280b57cec5SDimitry Andric   const auto &TLI = DAG.getTargetLoweringInfo();
13290b57cec5SDimitry Andric   SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(RTLIB::DEOPTIMIZE),
13300b57cec5SDimitry Andric                                          TLI.getPointerTy(DAG.getDataLayout()));
13310b57cec5SDimitry Andric 
13320b57cec5SDimitry Andric   // We don't lower calls to __llvm_deoptimize as varargs, but as a regular
13330b57cec5SDimitry Andric   // call.  We also do not lower the return value to any virtual register, and
13340b57cec5SDimitry Andric   // change the immediately following return to a trap instruction.
13350b57cec5SDimitry Andric   LowerCallSiteWithDeoptBundleImpl(CI, Callee, /* EHPadBB = */ nullptr,
13360b57cec5SDimitry Andric                                    /* VarArgDisallowed = */ true,
13370b57cec5SDimitry Andric                                    /* ForceVoidReturnTy = */ true);
13380b57cec5SDimitry Andric }
13390b57cec5SDimitry Andric 
13400b57cec5SDimitry Andric void SelectionDAGBuilder::LowerDeoptimizingReturn() {
13410b57cec5SDimitry Andric   // We do not lower the return value from llvm.deoptimize to any virtual
13420b57cec5SDimitry Andric   // register, and change the immediately following return to a trap
13430b57cec5SDimitry Andric   // instruction.
13440b57cec5SDimitry Andric   if (DAG.getTarget().Options.TrapUnreachable)
13450b57cec5SDimitry Andric     DAG.setRoot(
13460b57cec5SDimitry Andric         DAG.getNode(ISD::TRAP, getCurSDLoc(), MVT::Other, DAG.getRoot()));
13470b57cec5SDimitry Andric }
1348