HomeSort by: relevance | last modified time | path
    Searched refs:CaseValue (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
PredicateInfo.h 160 Value *CaseValue;
164 Value *CaseValue, SwitchInst *SI)
167 CaseValue(CaseValue), Switch(SI) {}
  /src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
DifferenceEngine.cpp 341 ConstantInt *CaseValue = Case.getCaseValue();
342 BasicBlock *LCase = LCases[CaseValue];
346 LCases.erase(CaseValue);
349 Engine.logf("right switch has extra case %r") << CaseValue;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Nodes.cpp 49 case syntax::NodeRole::CaseValue:
50 return OS << "CaseValue";
238 findChild(syntax::NodeRole::CaseValue));
BuildTree.cpp 1441 Builder.markExprChild(S->getLHS(), syntax::NodeRole::CaseValue);
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Nodes.h 91 CaseValue,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
PredicateInfo.cpp 809 return {{CmpInst::ICMP_EQ, cast<PredicateSwitch>(this)->CaseValue}};
875 OS << "; switch predicate info { CaseValue: " << *PS->CaseValue
SCCPSolver.cpp 602 const APInt &CaseValue = Case.getCaseValue()->getValue();
603 if (Range.contains(CaseValue))
SimplifyCFG.cpp 5083 /// block and see if the incoming value is equal to CaseValue. If so, return
5085 static PHINode *FindPHIForConditionForwarding(ConstantInt *CaseValue,
5103 if (InValue != CaseValue)
5123 ConstantInt *CaseValue = Case.getCaseValue();
5144 if (Phi.getIncomingValue(SwitchBBIdx) == CaseValue &&
5153 if (auto *Phi = FindPHIForConditionForwarding(CaseValue, CaseDest, &PhiIdx))
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LazyValueInfo.cpp 1362 APInt CaseValue = Case.getCaseValue()->getValue();
1363 ConstantRange EdgeVal(CaseValue);
1368 constantFoldUser(Usr, Condition, CaseValue, DL);
1376 // We know Condition != CaseValue in BBTo. In some cases we can use
1377 // this to infer Val == f(Condition) is != f(CaseValue). For now, we

Completed in 68 milliseconds