@@ -1820,7 +1820,7 @@ JL_USED_FUNC static void dumpColorAssignments(const State &S, const ArrayRef<int
1820
1820
}
1821
1821
}
1822
1822
1823
- SmallVector<int , 0 > LateLowerGCFrame::ColorRoots (const State &S) {
1823
+ std::pair< SmallVector<int , 0 >, int > LateLowerGCFrame::ColorRoots (const State &S) {
1824
1824
SmallVector<int , 0 > Colors;
1825
1825
Colors.resize (S.MaxPtrNumber + 1 , -1 );
1826
1826
PEOIterator Ordering (S.Neighbors );
@@ -1862,7 +1862,7 @@ SmallVector<int, 0> LateLowerGCFrame::ColorRoots(const State &S) {
1862
1862
NewColor += PreAssignedColors;
1863
1863
Colors[ActiveElement] = NewColor;
1864
1864
}
1865
- return Colors;
1865
+ return { Colors, PreAssignedColors} ;
1866
1866
}
1867
1867
1868
1868
// Size of T is assumed to be `sizeof(void*)`
@@ -2292,8 +2292,21 @@ void LateLowerGCFrame::PlaceGCFrameStore(State &S, unsigned R, unsigned MinColor
2292
2292
new StoreInst (Val, slotAddress, InsertBefore);
2293
2293
}
2294
2294
2295
+ void LateLowerGCFrame::PlaceGCFrameReset (State &S, unsigned R, unsigned MinColorRoot,
2296
+ ArrayRef<int > Colors, Value *GCFrame,
2297
+ Instruction *InsertBefore) {
2298
+ // Get the slot address.
2299
+ auto slotAddress = CallInst::Create (
2300
+ getOrDeclare (jl_intrinsics::getGCFrameSlot),
2301
+ {GCFrame, ConstantInt::get (Type::getInt32Ty (InsertBefore->getContext ()), Colors[R] + MinColorRoot)},
2302
+ " gc_slot_addr_" + StringRef (std::to_string (Colors[R] + MinColorRoot)), InsertBefore);
2303
+ // Reset the slot to NULL.
2304
+ Value *Val = ConstantPointerNull::get (T_prjlvalue);
2305
+ new StoreInst (Val, slotAddress, InsertBefore);
2306
+ }
2307
+
2295
2308
void LateLowerGCFrame::PlaceGCFrameStores (State &S, unsigned MinColorRoot,
2296
- ArrayRef<int > Colors, Value *GCFrame)
2309
+ ArrayRef<int > Colors, int PreAssignedColors, Value *GCFrame)
2297
2310
{
2298
2311
for (auto &BB : *S.F ) {
2299
2312
const BBState &BBS = S.BBStates [&BB];
@@ -2306,6 +2319,15 @@ void LateLowerGCFrame::PlaceGCFrameStores(State &S, unsigned MinColorRoot,
2306
2319
for (auto rit = BBS.Safepoints .rbegin ();
2307
2320
rit != BBS.Safepoints .rend (); ++rit ) {
2308
2321
const LargeSparseBitVector &NowLive = S.LiveSets [*rit];
2322
+ // reset slots which are no longer alive
2323
+ for (int Idx : *LastLive) {
2324
+ if (Idx >= PreAssignedColors && !HasBitSet (NowLive, Idx)) {
2325
+ PlaceGCFrameReset (S, Idx, MinColorRoot, Colors, GCFrame,
2326
+ S.ReverseSafepointNumbering [*rit]);
2327
+ }
2328
+ }
2329
+ // store values which are alive in this safepoint but
2330
+ // haven't been stored in the GC frame before
2309
2331
for (int Idx : NowLive) {
2310
2332
if (!HasBitSet (*LastLive, Idx)) {
2311
2333
PlaceGCFrameStore (S, Idx, MinColorRoot, Colors, GCFrame,
@@ -2317,7 +2339,7 @@ void LateLowerGCFrame::PlaceGCFrameStores(State &S, unsigned MinColorRoot,
2317
2339
}
2318
2340
}
2319
2341
2320
- void LateLowerGCFrame::PlaceRootsAndUpdateCalls (SmallVectorImpl <int > & Colors, State &S,
2342
+ void LateLowerGCFrame::PlaceRootsAndUpdateCalls (ArrayRef <int > Colors, int PreAssignedColors , State &S,
2321
2343
std::map<Value *, std::pair<int , int >>) {
2322
2344
auto F = S.F ;
2323
2345
auto T_int32 = Type::getInt32Ty (F->getContext ());
@@ -2439,7 +2461,7 @@ void LateLowerGCFrame::PlaceRootsAndUpdateCalls(SmallVectorImpl<int> &Colors, St
2439
2461
pushGcframe->setArgOperand (1 , NRoots);
2440
2462
2441
2463
// Insert GC frame stores
2442
- PlaceGCFrameStores (S, AllocaSlot - 2 , Colors, gcframe);
2464
+ PlaceGCFrameStores (S, AllocaSlot - 2 , Colors, PreAssignedColors, gcframe);
2443
2465
// Insert GCFrame pops
2444
2466
for (auto &BB : *F) {
2445
2467
if (isa<ReturnInst>(BB.getTerminator ())) {
@@ -2464,9 +2486,9 @@ bool LateLowerGCFrame::runOnFunction(Function &F, bool *CFGModified) {
2464
2486
2465
2487
State S = LocalScan (F);
2466
2488
ComputeLiveness (S);
2467
- SmallVector< int , 0 > Colors = ColorRoots (S);
2489
+ auto Colors = ColorRoots (S);
2468
2490
std::map<Value *, std::pair<int , int >> CallFrames; // = OptimizeCallFrames(S, Ordering);
2469
- PlaceRootsAndUpdateCalls (Colors, S, CallFrames);
2491
+ PlaceRootsAndUpdateCalls (Colors. first , Colors. second , S, CallFrames);
2470
2492
CleanupIR (F, &S, CFGModified);
2471
2493
return true ;
2472
2494
}
0 commit comments