reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Analysis/TargetTransformInfoImpl.h
  229                     C1.ScaleCost, C1.ImmCost, C1.SetupCost) <
  231                     C2.ScaleCost, C2.ImmCost, C2.SetupCost);
lib/Target/X86/X86TargetTransformInfo.cpp
 3252                     C1.ScaleCost, C1.ImmCost, C1.SetupCost) <
 3255                     C2.ScaleCost, C2.ImmCost, C2.SetupCost);
lib/Transforms/Scalar/LoopStrengthReduce.cpp
 1032     C.ImmCost = 0;
 1045              | C.ImmCost | C.SetupCost | C.ScaleCost) != ~0u)
 1047            & C.ImmCost & C.SetupCost & C.ScaleCost) == ~0u);
 1368       C.ImmCost += 64; // Handle symbolic values conservatively.
 1371       C.ImmCost += APInt(64, Offset, true).getMinSignedBits();
 1430   C.ImmCost = std::numeric_limits<unsigned>::max();
 1458   if (C.ImmCost != 0)
 1459     OS << ", plus " << C.ImmCost << " imm cost";