Lines Matching refs:AtEntry
318 IRBuilder<> AtEntry(IP->getParent(), IP); in runOnFunction() local
321 AtEntry.CreateAlloca(ConcreteStackEntryTy, nullptr, "gc_frame"); in runOnFunction()
325 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
329 AtEntry.CreateLoad(StackEntryTy->getPointerTo(), Head, "gc_currhead"); in runOnFunction()
330 Instruction *EntryMapPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
332 AtEntry.CreateStore(FrameMap, EntryMapPtr); in runOnFunction()
337 Value *SlotPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
352 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
355 Instruction *EntryNextPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
357 Instruction *NewHeadVal = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
359 AtEntry.CreateStore(CurrentHead, EntryNextPtr); in runOnFunction()
360 AtEntry.CreateStore(NewHeadVal, Head); in runOnFunction()