Home
last modified time | relevance | path

Searched refs:LHSSize (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DLineTable.h217 const auto LHSSize = Lines.size();
219 if (LHSSize == RHSSize)
221 return LHSSize < RHSSize;
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelEmitter.cpp99 int LHSSize = LHS->getPatternComplexity(CGP); in operator ()() local
101 if (LHSSize > RHSSize) return true; // LHS -> bigger -> less cost in operator ()()
102 if (LHSSize < RHSSize) return false; in operator ()()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMergeStringPool.cpp71 unsigned LHSSize = in operator ()() local
81 return LHSSize < RHSSize; in operator ()()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp4291 unsigned LHSSize = LHSTy.getSizeInBits(); in matchICmpToLHSKnownBits() local
4294 if (DstSize != LHSSize) in matchICmpToLHSKnownBits()
4295 Op = DstSize < LHSSize ? TargetOpcode::G_TRUNC : TargetOpcode::G_ZEXT; in matchICmpToLHSKnownBits()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp2773 uint64_t LHSSize, RHSSize; in computePointerICmp() local
2784 if (getObjectSize(LHS, LHSSize, DL, TLI, Opts) && in computePointerICmp()
2787 if (Dist.isNonNegative() ? Dist.ult(LHSSize) : (-Dist).ult(RHSSize)) in computePointerICmp()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp12727 uint64_t LHSSize = LHS.getBitWidth(); in VisitBuiltinCallExpr() local
12730 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize); in VisitBuiltinCallExpr()