Lines Matching defs:Loc
332 : Dtor(Dtor), NRVOFlag(NRVOFlag), Loc(addr) {}
336 llvm::Value *Loc;
353 /*ForVirtualBase=*/false, Loc);
651 static void emitStoresForInitAfterMemset(llvm::Constant *Init, llvm::Value *Loc,
663 Builder.CreateStore(Init, Loc, isVolatile);
675 emitStoresForInitAfterMemset(Elt, Builder.CreateConstGEP2_32(Loc, 0, i),
934 llvm::Value *Loc =
938 LValue lv = MakeAddrLValue(Loc, type, alignment.getQuantity());
957 if (Loc->getType() != BP)
958 Loc = Builder.CreateBitCast(Loc, BP, "tmp");
964 Builder.CreateMemSet(Loc, llvm::ConstantInt::get(Int8Ty, 0), SizeVal,
967 Loc = Builder.CreateBitCast(Loc, constant->getType()->getPointerTo());
968 emitStoresForInitAfterMemset(constant, Loc, isVolatile, Builder);
985 Builder.CreateMemCpy(Loc, SrcPtr, SizeVal, alignment.getQuantity(),
997 /// \param loc the address to initialize; its type is a pointer