Lines Matching refs:AtEntry
319 IRBuilder<> AtEntry(IP->getParent(), IP); in runOnFunction() local
322 AtEntry.CreateAlloca(ConcreteStackEntryTy, nullptr, "gc_frame"); in runOnFunction()
326 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
330 AtEntry.CreateLoad(StackEntryTy->getPointerTo(), Head, "gc_currhead"); in runOnFunction()
331 Instruction *EntryMapPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
333 AtEntry.CreateStore(FrameMap, EntryMapPtr); in runOnFunction()
338 Value *SlotPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
353 AtEntry.SetInsertPoint(IP->getParent(), IP); in runOnFunction()
356 Instruction *EntryNextPtr = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
358 Instruction *NewHeadVal = CreateGEP(Context, AtEntry, ConcreteStackEntryTy, in runOnFunction()
360 AtEntry.CreateStore(CurrentHead, EntryNextPtr); in runOnFunction()
361 AtEntry.CreateStore(NewHeadVal, Head); in runOnFunction()