HomeSort by: relevance | last modified time | path
    Searched defs:ReplVal (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPURewriteOutArguments.cpp 306 Value *ReplVal = Store.second->getValueOperand();
321 ValVec.emplace_back(OutArg, ReplVal);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
PromoteMemoryToRegister.cpp 398 Value *ReplVal = OnlyStore->getOperand(0);
401 if (ReplVal == LI)
402 ReplVal = UndefValue::get(LI->getType());
408 !isKnownNonZero(ReplVal, DL, 0, AC, LI, &DT))
411 LI->replaceAllUsesWith(ReplVal);
503 Value *ReplVal = std::prev(I)->second->getOperand(0);
505 !isKnownNonZero(ReplVal, DL, 0, AC, LI, &DT))
510 if (ReplVal == LI)
511 ReplVal = UndefValue::get(LI->getType());
513 LI->replaceAllUsesWith(ReplVal);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
OpenMPOpt.cpp 1386 /// \p ReplVal if given.
1389 Value *ReplVal = nullptr) {
1391 if (!UV || UV->size() + (ReplVal != nullptr) < 2)
1396 << (ReplVal ? " with an existing value\n" : "\n") << "\n");
1398 assert((!ReplVal || (isa<Argument>(ReplVal) &&
1399 cast<Argument>(ReplVal)->getParent() == &F)) &&
1415 if (!ReplVal) {
1429 ReplVal = CI;
1432 if (!ReplVal)
    [all...]

Completed in 17 milliseconds