Lines Matching refs:AtEntry
354 IRBuilder<> AtEntry(IP->getParent(), IP); in runOnFunction() local
357 AtEntry.CreateAlloca(ConcreteStackEntryTy, nullptr, "gc_frame"); in runOnFunction()
359 AtEntry.SetInsertPointPastAllocas(&F); in runOnFunction()
360 IP = AtEntry.GetInsertPoint(); in runOnFunction()
364 AtEntry.CreateLoad(AtEntry.getPtrTy(), Head, "gc_currhead"); in runOnFunction()
365 Instruction *EntryMapPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
367 AtEntry.CreateStore(FrameMap, EntryMapPtr); in runOnFunction()
372 Value *SlotPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
387 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
390 Instruction *EntryNextPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
392 Instruction *NewHeadVal = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
394 AtEntry.CreateStore(CurrentHead, EntryNextPtr); in runOnFunction()
395 AtEntry.CreateStore(NewHeadVal, Head); in runOnFunction()