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

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeDumpVisitor.cpp 247 uint16_t Props = static_cast<uint16_t>(Class.getOptions());
249 W->printFlags("Properties", Props, makeArrayRef(ClassOptionNames));
255 if (Props & uint16_t(ClassOptions::HasUniqueName))
261 uint16_t Props = static_cast<uint16_t>(Union.getOptions());
263 W->printFlags("Properties", Props, makeArrayRef(ClassOptionNames));
267 if (Props & uint16_t(ClassOptions::HasUniqueName))
273 uint16_t Props = static_cast<uint16_t>(Enum.getOptions());
280 if (Props & uint16_t(ClassOptions::HasUniqueName))
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 296 LoopProperties &Props = PropsIt->second;
316 Props.SizeEstimation = Metrics.NumInsts;
317 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation);
318 Props.WasUnswitchedCount = 0;
319 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount;
330 CurrentLoopProperties = &Props;
331 CurLoopInstructions = &Props.UnswitchedVals;
341 LoopProperties &Props = LIt->second
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonConstPropagation.cpp 372 bool evaluateCMPpi(uint32_t Cmp, uint32_t Props, const APInt &A2,
435 uint32_t Props = (NonZero | Finite);
437 return Props | NegOrZero;
438 return Props | PosOrZero;
443 uint32_t Props = CF->isNegative() ? (NegOrZero|NonZero)
446 return (Props & ~NumericProperties) | (Zero|Finite);
447 Props = (Props & ~NumericProperties) | NonZero;
449 return (Props & ~NumericProperties) | NaN;
452 return (Props & ~NumericProperties) | Infinity
    [all...]

Completed in 16 milliseconds