Lines Matching refs:AtEntry
403 IRBuilder<> AtEntry(IP->getParent(), IP); in runOnFunction() local
406 AtEntry.CreateAlloca(ConcreteStackEntryTy, nullptr, "gc_frame"); in runOnFunction()
410 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
413 Instruction *CurrentHead = AtEntry.CreateLoad(Head, "gc_currhead"); in runOnFunction()
414 Instruction *EntryMapPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
416 AtEntry.CreateStore(FrameMap, EntryMapPtr); in runOnFunction()
421 Value *SlotPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
436 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
439 Instruction *EntryNextPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
441 Instruction *NewHeadVal = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
443 AtEntry.CreateStore(CurrentHead, EntryNextPtr); in runOnFunction()
444 AtEntry.CreateStore(NewHeadVal, Head); in runOnFunction()