Searched refs:CBO (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUCodeGenPrepare.cpp | 727 Constant *CBO = dyn_cast<Constant>(BO.getOperand(SelOpNo ^ 1)); in foldBinOpIntoSelect() local 728 if (!CBO || !CT || !CF) in foldBinOpIntoSelect() 741 ConstantFoldBinaryOpOperands(BO.getOpcode(), CBO, CT, *DL) : in foldBinOpIntoSelect() 742 ConstantFoldBinaryOpOperands(BO.getOpcode(), CT, CBO, *DL); in foldBinOpIntoSelect() 747 ConstantFoldBinaryOpOperands(BO.getOpcode(), CBO, CF, *DL) : in foldBinOpIntoSelect() 748 ConstantFoldBinaryOpOperands(BO.getOpcode(), CF, CBO, *DL); in foldBinOpIntoSelect()
|
/freebsd/crypto/openssl/test/recipes/04-test_pem_reading_data/ |
H A D | cert-threecolumn.pem | 45 CBO
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 2485 SDValue CBO = BO->getOperand(SelOpNo ^ 1); in foldBinOpIntoSelect() local 2487 !isConstantOrConstantVector(CBO, true) && in foldBinOpIntoSelect() 2488 !DAG.isConstantFPBuildVectorOrConstantFP(CBO)) in foldBinOpIntoSelect() 2500 NewCT = CBO; in foldBinOpIntoSelect() 2506 NewCF = CBO; in foldBinOpIntoSelect() 2512 NewCT = SelOpNo ? DAG.FoldConstantArithmetic(BinOpcode, DL, VT, {CBO, CT}) in foldBinOpIntoSelect() 2513 : DAG.FoldConstantArithmetic(BinOpcode, DL, VT, {CT, CBO}); in foldBinOpIntoSelect() 2517 NewCF = SelOpNo ? DAG.FoldConstantArithmetic(BinOpcode, DL, VT, {CBO, CF}) in foldBinOpIntoSelect() 2518 : DAG.FoldConstantArithmetic(BinOpcode, DL, VT, {CF, CBO}); in foldBinOpIntoSelect()
|