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

  /src/external/apache2/llvm/dist/llvm/lib/Support/
DJB.cpp 41 // The case-folded output should always be a valid unicode character, so use
78 StringRef Folded = toUTF8(C, Storage);
79 H = djbHash(Folded, H);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUInstCombineIntrinsic.cpp 41 // A single NaN input is folded to minnum, so we rely on that folding for
375 Constant *Folded =
378 return IC.replaceInstUsesWith(II, Folded);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
CoverageMapping.h 306 bool Folded;
310 FalseExecutionCount(0), Folded(false) {}
315 FalseExecutionCount(FalseExecutionCount), Folded(false) {}
370 // constant-folded branch.
372 CountedBranchRegions.back().Folded = true;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 1123 // Recursively fold the ConstantExpr's operands. If we have already folded
1433 // FP environment can be folded even in strictfp functions.
1484 // Floating point operations cannot be folded in strictfp functions in
1485 // general case. They can be folded if FP environment is known to compiler.
1548 // environment, they can be folded in any case.
1556 // Constrained intrinsics can be folded if FP environment is known
2304 // are attempted to be folded in this function.
2961 Constant *Folded =
2963 if (!Folded)
2965 Result[I] = Folded;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 89 STATISTIC(NumFolds, "Number of terminators folded");
809 Constant *Folded = ConstantExpr::get(BO->getOpcode(), V, CI);
811 if (Constant *KC = getKnownConstant(Folded, WantInteger))
942 Constant *Folded = ConstantExpr::getCompare(Pred, V, CmpConst);
943 if (Constant *KC = getKnownConstant(Folded, WantInteger))
1074 // Keep track if we constant folded the condition in this invocation.
1911 // Collect all of the blocks that this can be folded into so that we can
2806 /// to be folded. This later enables threading from bb1 over bb2.
2866 /// select is not jump-threaded, it will be folded again in the later
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 12491 // If the RHS can be constant folded, and if it constant folds to something
16266 bool Folded =
16276 if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) {
16291 if (!Folded || !CanFold) {

Completed in 87 milliseconds