HomeSort by relevance Sort by last modified time
    Searched defs:CLHS (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/Analysis/
InlineCost.cpp 553 if (Constant *CLHS = dyn_cast<Constant>(LHS)) {
555 if (Constant *C = ConstantExpr::getCompare(I.getPredicate(), CLHS, CRHS)) {
574 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
576 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
620 Constant *CLHS = ConstantInt::get(LHS->getContext(), LHSOffset);
622 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
    [all...]
InstructionSimplify.cpp 96 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
97 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
99 return CPred == CmpInst::getSwappedPredicate(Pred) && CLHS == RHS &&
531 if (Constant *CLHS = dyn_cast<Constant>(Op0)) {
533 Constant *Ops[] = { CLHS, CRHS };
534 return ConstantFoldInstOperands(Instruction::Add, CLHS->getType(), Ops,
663 if (Constant *CLHS = dyn_cast<Constant>(Op0))
665 Constant *Ops[] = { CLHS, CRHS };
666 return ConstantFoldInstOperands(Instruction::Sub, CLHS->getType(),
790 if (Constant *CLHS = dyn_cast<Constant>(Op0))
    [all...]
ValueTracking.cpp 234 if (ConstantInt *CLHS = dyn_cast<ConstantInt>(Op0)) {
238 if (!CLHS->getValue().isNegative()) {
240 unsigned NLZ = (CLHS->getValue()+1).countLeadingZeros();
249 unsigned NLZ2 = CLHS->getValue().countLeadingZeros();
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.cpp     [all...]

Completed in 349 milliseconds