Home
last modified time | relevance | path

Searched refs:RHSConstant (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h2542 LLVMValueRef RHSConstant);
2544 LLVMValueRef RHSConstant);
2546 LLVMValueRef RHSConstant);
2548 LLVMValueRef RHSConstant);
2550 LLVMValueRef RHSConstant);
2552 LLVMValueRef RHSConstant);
2554 LLVMValueRef RHSConstant);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp1784 LLVMValueRef LLVMConstAdd(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) { in LLVMConstAdd() argument
1786 unwrap<Constant>(RHSConstant))); in LLVMConstAdd()
1790 LLVMValueRef RHSConstant) { in LLVMConstNSWAdd() argument
1792 unwrap<Constant>(RHSConstant))); in LLVMConstNSWAdd()
1796 LLVMValueRef RHSConstant) { in LLVMConstNUWAdd() argument
1798 unwrap<Constant>(RHSConstant))); in LLVMConstNUWAdd()
1801 LLVMValueRef LLVMConstSub(LLVMValueRef LHSConstant, LLVMValueRef RHSConstant) { in LLVMConstSub() argument
1803 unwrap<Constant>(RHSConstant))); in LLVMConstSub()
1807 LLVMValueRef RHSConstant) { in LLVMConstNSWSub() argument
1809 unwrap<Constant>(RHSConstant))); in LLVMConstNSWSub()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp1305 const Expr *RHSConstant = in checkIncorrectBitwiseOrOperator() local
1308 if ((LHSConstant && RHSConstant) || (!LHSConstant && !RHSConstant)) in checkIncorrectBitwiseOrOperator()
1311 const Expr *Constant = LHSConstant ? LHSConstant : RHSConstant; in checkIncorrectBitwiseOrOperator()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp11732 bool RHSConstant = isa<ConstantSDNode>(N1); in salvageDebugInfo() local
11734 if (RHSConstant) in salvageDebugInfo()
11738 if (!RHSConstant && DV->isIndirect()) in salvageDebugInfo()
11757 if (RHSConstant) { in salvageDebugInfo()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp4293 uint64_t RHSConstant = RHSConst->getZExtValue(); in simplifySetCCIntoEq() local
4294 if (isPowerOf2_64(RHSConstant)) { in simplifySetCCIntoEq()
4295 uint64_t NewMaskValue = LHSConstValue & ~(RHSConstant - 1); in simplifySetCCIntoEq()