Lines Matching refs:AtEntry
352 IRBuilder<> AtEntry(IP->getParent(), IP); in runOnFunction() local
355 AtEntry.CreateAlloca(ConcreteStackEntryTy, nullptr, "gc_frame"); in runOnFunction()
357 AtEntry.SetInsertPointPastAllocas(&F); in runOnFunction()
358 IP = AtEntry.GetInsertPoint(); in runOnFunction()
362 AtEntry.CreateLoad(AtEntry.getPtrTy(), Head, "gc_currhead"); in runOnFunction()
363 Instruction *EntryMapPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
365 AtEntry.CreateStore(FrameMap, EntryMapPtr); in runOnFunction()
370 Value *SlotPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
385 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
388 Instruction *EntryNextPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
390 Instruction *NewHeadVal = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
392 AtEntry.CreateStore(CurrentHead, EntryNextPtr); in runOnFunction()
393 AtEntry.CreateStore(NewHeadVal, Head); in runOnFunction()