HomeSort by: relevance | last modified time | path
    Searched refs:isConvergent (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CodeMetrics.cpp 178 if (CI->isConvergent())
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenIntrinsics.h 142 bool isConvergent;
IntrinsicEmitter.cpp 605 if (L->isConvergent != R->isConvergent)
606 return R->isConvergent;
744 Intrinsic.isNoMerge || Intrinsic.isConvergent ||
764 if (Intrinsic.isConvergent)
CodeGenInstruction.h 276 bool isConvergent : 1;
InstrDocsEmitter.cpp 138 FLAG(isConvergent)
CodeGenTarget.cpp 660 isConvergent = false;
852 isConvergent = true;
CodeGenInstruction.cpp 399 isConvergent = R->getValueAsBit("isConvergent");
InstrInfoEmitter.cpp 983 if (Inst.isConvergent) OS << "|(1ULL<<MCID::Convergent)";
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCInstrDesc.h 406 bool isConvergent() const { return Flags & (1ULL << MCID::Convergent); }
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Sink.cpp 57 if (Call->isConvergent())
CallSiteSplitting.cpp 187 if (CB.isConvergent() || CB.cannotDuplicate())
LoopVersioningLICM.cpp 347 if (Call->isConvergent() || Call->cannotDuplicate()) {
SpeculateAroundPHIs.cpp 71 if (CS->isConvergent() || CS->cannotDuplicate()) {
GVNHoist.cpp 1208 if (Call->isConvergent())
LoopUnswitch.cpp 703 if (CB->isConvergent())
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineCSE.cpp 592 // LLVM's current definition of `isConvergent` does not necessarily prove
594 // of `isConvergent` to assume a convergent instruction is dependent not
597 // definition, so it's necessary to use `isConvergent` to prevent illegally
598 // CSE-ing the subset of `isConvergent` instructions which do fall into this
600 if (MI->isConvergent() && MI->getParent() != CSMI->getParent()) {
840 // The following check extends the definition of `isConvergent` to
844 // it's necessary to use `isConvergent` to prevent illegally PRE-ing the
845 // subset of `isConvergent` instructions which do fall into this
847 if (MI->isConvergent() && CMBB != MBB)
MachineSink.cpp 401 if (MI.isConvergent())
1302 if (MI.isConvergent())
TailDuplicator.cpp 615 if (MI.isConvergent())
MachineLICM.cpp 983 if (I.isConvergent())
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Function.h 624 bool isConvergent() const {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
InlineAsmLowering.cpp 58 if (CB.isConvergent())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 1245 return CB && CB->isConvergent() &&
1296 [](const Function &F) { return !F.isConvergent(); },
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineInstr.h 917 bool isConvergent(QueryType Type = AnyInBundle) const {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopSimplify.cpp 242 if (CI->isConvergent()) {
LoopUnroll.cpp 423 HasConvergent |= CB->isConvergent();

Completed in 86 milliseconds

1 2