/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | SSAUpdater.cpp | 407 Value *StoredValue = nullptr; in run() local 415 if (StoredValue) { in run() 416 replaceLoadWithValue(L, StoredValue); in run() 417 L->replaceAllUsesWith(StoredValue); in run() 418 ReplacedLoads[L] = StoredValue; in run() 431 StoredValue = SI->getOperand(0); in run() 436 assert(StoredValue && "Already checked that there is a store in block"); in run() 437 SSA.AddAvailableValue(BB, StoredValue); in run()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | SSAUpdater.cpp | 412 Value *StoredValue = nullptr; in run() local 420 if (StoredValue) { in run() 421 replaceLoadWithValue(L, StoredValue); in run() 422 L->replaceAllUsesWith(StoredValue); in run() 423 ReplacedLoads[L] = StoredValue; in run() 436 StoredValue = SI->getOperand(0); in run() 441 assert(StoredValue && "Already checked that there is a store in block"); in run() 442 SSA.AddAvailableValue(BB, StoredValue); in run()
|
/external/llvm/lib/Transforms/Utils/ |
D | SSAUpdater.cpp | 403 Value *StoredValue = nullptr; in run() local 411 if (StoredValue) { in run() 412 replaceLoadWithValue(L, StoredValue); in run() 413 L->replaceAllUsesWith(StoredValue); in run() 414 ReplacedLoads[L] = StoredValue; in run() 427 StoredValue = SI->getOperand(0); in run() 432 assert(StoredValue && "Already checked that there is a store in block"); in run() 433 SSA.AddAvailableValue(BB, StoredValue); in run()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 538 Value *StoredValue = cast<StoreInst>(I)->getValueOperand(); in instrumentLoadOrStore() local 542 if (isa<VectorType>(StoredValue->getType())) in instrumentLoadOrStore() 543 StoredValue = IRB.CreateExtractElement( in instrumentLoadOrStore() 544 StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0)); in instrumentLoadOrStore() 545 if (StoredValue->getType()->isIntegerTy()) in instrumentLoadOrStore() 546 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy()); in instrumentLoadOrStore() 550 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())}); in instrumentLoadOrStore()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 470 Value *StoredValue = cast<StoreInst>(I)->getValueOperand(); in instrumentLoadOrStore() local 474 if (isa<VectorType>(StoredValue->getType())) in instrumentLoadOrStore() 475 StoredValue = IRB.CreateExtractElement( in instrumentLoadOrStore() 476 StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0)); in instrumentLoadOrStore() 477 if (StoredValue->getType()->isIntegerTy()) in instrumentLoadOrStore() 478 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy()); in instrumentLoadOrStore() 482 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())}); in instrumentLoadOrStore()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/ |
D | GVNExpression.h | 375 Value *StoredValue; variable 378 StoreExpression(unsigned NumOperands, StoreInst *S, Value *StoredValue, in StoreExpression() argument 381 StoredValue(StoredValue) {} in StoreExpression() 392 Value *getStoredValue() const { return StoredValue; } in getStoredValue() 408 StoredValue->printAsOperand(OS); in printInternal()
|
/external/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
D | GVNExpression.h | 368 Value *StoredValue; variable 371 StoreExpression(unsigned NumOperands, StoreInst *S, Value *StoredValue, in StoreExpression() argument 374 StoredValue(StoredValue) {} in StoreExpression() 385 Value *getStoredValue() const { return StoredValue; } in getStoredValue() 401 StoredValue->printAsOperand(OS); in printInternal()
|
/external/llvm-project/llvm/lib/Transforms/Instrumentation/ |
D | ThreadSanitizer.cpp | 629 Value *StoredValue = cast<StoreInst>(II.Inst)->getValueOperand(); in instrumentLoadOrStore() local 633 if (isa<VectorType>(StoredValue->getType())) in instrumentLoadOrStore() 634 StoredValue = IRB.CreateExtractElement( in instrumentLoadOrStore() 635 StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0)); in instrumentLoadOrStore() 636 if (StoredValue->getType()->isIntegerTy()) in instrumentLoadOrStore() 637 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy()); in instrumentLoadOrStore() 641 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())}); in instrumentLoadOrStore()
|
/external/llvm-project/llvm/lib/Target/AArch64/ |
D | AArch64StackTagging.cpp | 183 Value *StoredValue) { in applyStore() argument 184 StoredValue = flatten(IRB, StoredValue); in applyStore() 186 Value *V = sliceValue(IRB, StoredValue, Offset - Start); in applyStore()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64StackTagging.cpp | 170 Value *StoredValue) { in applyStore() argument 171 StoredValue = flatten(IRB, StoredValue); in applyStore() 173 Value *V = sliceValue(IRB, StoredValue, Offset - Start); in applyStore()
|
/external/llvm-project/llvm/lib/Transforms/Vectorize/ |
D | VPlan.h | 1289 VPValue *StoredValue, VPValue *Mask) in VPWidenMemoryInstructionRecipe() argument 1292 VPUser({Addr, StoredValue}) { in VPWidenMemoryInstructionRecipe()
|
D | LoopVectorize.cpp | 582 VPValue *StoredValue, VPValue *BlockInMask); 2701 VPValue *StoredValue, VPValue *BlockInMask) { in vectorizeMemoryInstruction() argument 2707 assert((!SI || StoredValue) && "No stored value provided for widened store"); in vectorizeMemoryInstruction() 2708 assert((!LI || !StoredValue) && "Stored value provided for widened load"); in vectorizeMemoryInstruction() 2781 Value *StoredVal = State.get(StoredValue, Part); in vectorizeMemoryInstruction() 7995 VPValue *StoredValue = Plan->getOrAddVPValue(Store->getValueOperand()); in tryToWidenMemory() local 7996 return new VPWidenMemoryInstructionRecipe(*Store, Addr, StoredValue, Mask); in tryToWidenMemory() 8826 VPValue *StoredValue = isa<StoreInst>(Instr) ? getStoredValue() : nullptr; in execute() local 8828 StoredValue ? nullptr : this, getAddr(), in execute() 8829 StoredValue, getMask()); in execute()
|