Searched refs:StoredValue (Results 1 – 7 of 7) sorted by relevance
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| D | SSAUpdater.cpp | 396 Value *StoredValue = nullptr; in run() local 404 if (StoredValue) { in run() 405 replaceLoadWithValue(L, StoredValue); in run() 406 L->replaceAllUsesWith(StoredValue); in run() 407 ReplacedLoads[L] = StoredValue; in run() 420 StoredValue = SI->getOperand(0); in run() 425 assert(StoredValue && "Already checked that there is a store in block"); in run() 426 SSA.AddAvailableValue(BB, StoredValue); in run()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Transforms/Scalar/ |
| D | GVNExpression.h | 373 Value *StoredValue; variable 376 StoreExpression(unsigned NumOperands, StoreInst *S, Value *StoredValue, in StoreExpression() argument 379 StoredValue(StoredValue) {} in StoreExpression() 390 Value *getStoredValue() const { return StoredValue; } in getStoredValue() 406 StoredValue->printAsOperand(OS); in printInternal()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
| D | ThreadSanitizer.cpp | 608 Value *StoredValue = cast<StoreInst>(II.Inst)->getValueOperand(); in instrumentLoadOrStore() local 612 if (isa<VectorType>(StoredValue->getType())) in instrumentLoadOrStore() 613 StoredValue = IRB.CreateExtractElement( in instrumentLoadOrStore() 614 StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0)); in instrumentLoadOrStore() 615 if (StoredValue->getType()->isIntegerTy()) in instrumentLoadOrStore() 616 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy()); in instrumentLoadOrStore() 620 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())}); in instrumentLoadOrStore()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/AArch64/ |
| D | AArch64StackTagging.cpp | 192 Value *StoredValue) { in applyStore() argument 193 StoredValue = flatten(IRB, StoredValue); in applyStore() 195 Value *V = sliceValue(IRB, StoredValue, Offset - Start); in applyStore()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/VE/ |
| D | VVPISelLowering.cpp | 277 SDValue StoredValue = getStoredValue(Op); in lowerVVP_GATHER_SCATTER() local 281 bool IsScatter = (bool)StoredValue; in lowerVVP_GATHER_SCATTER() 295 {Chain, StoredValue, AddressVec, Mask, AVL}); in lowerVVP_GATHER_SCATTER()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
| D | VPlan.h | 1666 VPValue *StoredValue, VPValue *Mask, in VPWidenMemoryInstructionRecipe() argument 1668 : VPRecipeBase(VPDef::VPWidenMemoryInstructionSC, {Addr, StoredValue}), in VPWidenMemoryInstructionRecipe()
|
| D | LoopVectorize.cpp | 9708 VPValue *StoredValue = isStore() ? getStoredValue() : nullptr; in execute() local 9715 assert((!SI || StoredValue) && "No stored value provided for widened store"); in execute() 9716 assert((!LI || !StoredValue) && "Stored value provided for widened load"); in execute() 9775 Value *StoredVal = State.get(StoredValue, Part); in execute()
|