/freebsd/crypto/openssl/crypto/sha/asm/ |
H A D | keccak1600p8-ppc.pl | 36 $UCMP ="cmpld"; 46 $UCMP ="cmplw"; 477 $UCMP $len,$bsz ; len < bsz? 702 ${UCMP}i $len,8
|
H A D | sha1-ppc.pl | 37 $UCMP ="cmpld"; 44 $UCMP ="cmplw"; 240 $UCMP $num,$t1
|
H A D | sha512-ppc.pl | 53 $UCMP="cmpld"; 61 $UCMP="cmplw"; 271 $UCMP $num,$t1 441 $UCMP $inp,$num 715 $UCMP $inp,$num
|
H A D | keccak1600-ppc64.pl | 48 $UCMP ="cmpld"; 483 $UCMP r4,r5 ; len < bsz? 661 ${UCMP}i $len,8
|
/freebsd/crypto/openssl/crypto/bn/asm/ |
H A D | ppc.pl | 124 $UCMP= "cmplw"; # unsigned compare 148 $UCMP= "cmpld"; # unsigned compare 1656 $UCMP 0,r3,r5 #h>=d? 1677 $UCMP 0,r8,r9 # is (h>>BN_BITS4)==dh 1699 $UCMP cr1,r6,r7 # compare (tl <= r7) 1710 $UCMP cr1,r4,r11 # compare l and tl 1716 $UCMP cr1,r3,r12 #compare h and th
|
H A D | ppc-mont.pl | 64 $UCMP= "cmplw"; # unsigned compare 85 $UCMP= "cmpld"; # unsigned compare 301 $UCMP $i,$tj 391 $UCMP $ap,$bp 507 $UCMP $ap_end,$ap 569 $UCMP $ap_end,$ap # done yet? 730 $UCMP $ap_end,$ap # done yet? 777 $UCMP $bp,$t3 # done yet? 1230 $UCMP $ap_end,$ap # done yet? 1336 $UCMP $ap,$ap_end # done yet? [all …]
|
/freebsd/crypto/openssl/crypto/modes/asm/ |
H A D | ghashp8-ppc.pl | 46 $UCMP="cmpld"; 54 $UCMP="cmplw"; 287 ${UCMP}i $len,64 342 $UCMP r9,$inp 557 ${UCMP}i $len,2
|
/freebsd/crypto/openssl/crypto/chacha/asm/ |
H A D | chacha-ppc.pl | 58 $UCMP ="cmpld"; 65 $UCMP ="cmplw"; 163 ${UCMP}i $len,0 305 ${UCMP}i $len,0 # done already? 456 ${UCMP}i $len,256 849 ${UCMP}i $len,255 # done with 256-byte blocks yet? 858 ${UCMP}i $len,255 # done with 256-byte blocks yet? 863 ${UCMP}i $len,0 # done yet? 1125 ${UCMP}i $len,0x40 1157 ${UCMP}i $len,0x40 [all …]
|
/freebsd/crypto/openssl/crypto/aes/asm/ |
H A D | aesp8-ppc.pl | 57 $UCMP ="cmpld"; 65 $UCMP ="cmplw"; 122 ${UCMP}i $inp,0 124 ${UCMP}i $out,0 516 ${UCMP}i $len,16 588 ${UCMP}i $len,16 601 ${UCMP}i $len,128 635 ${UCMP}i $len,16 1276 ${UCMP}i $len,1 1308 ${UCMP}i $len,8 [all …]
|
H A D | vpaes-ppc.pl | 49 $UCMP ="cmpld"; 56 $UCMP ="cmplw"; 642 ${UCMP}i r5,16
|
/freebsd/crypto/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ppcfp.pl | 38 $UCMP ="cmpld"; 45 $UCMP ="cmplw"; 109 $UCMP $inp,r0
|
H A D | poly1305-ppc.pl | 63 $UCMP ="cmpld"; 70 $UCMP ="cmplw"; 115 $UCMP $inp,r0 387 $UCMP $inp,r0
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 705 UCMP, enumerator
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGDumper.cpp | 309 case ISD::UCMP: return "ucmp"; in getOperationName()
|
H A D | LegalizeIntegerTypes.cpp | 244 case ISD::UCMP: in PromoteIntegerResult() 1980 case ISD::UCMP: Res = PromoteIntOp_CMP(N); break; in PromoteIntegerOperand() 2297 SDValue LHS = N->getOpcode() == ISD::UCMP in PromoteIntOp_CMP() 2300 SDValue RHS = N->getOpcode() == ISD::UCMP in PromoteIntOp_CMP() 2873 case ISD::UCMP: ExpandIntRes_CMP(N, Lo, Hi); break; in ExpandIntegerResult() 5288 case ISD::UCMP: Res = ExpandIntOp_CMP(N); break; in ExpandIntegerOperand()
|
H A D | LegalizeVectorTypes.cpp | 188 case ISD::UCMP: in ScalarizeVectorResult() 816 case ISD::UCMP: in ScalarizeVectorOperand() 1293 case ISD::SCMP: case ISD::UCMP: in SplitVectorResult() 3213 case ISD::UCMP: in SplitVectorOperand() 4426 case ISD::UCMP: in WidenVectorResult() 6405 case ISD::UCMP: in WidenVectorOperand()
|
H A D | LegalizeVectorOps.cpp | 460 case ISD::UCMP: in LegalizeOp()
|
H A D | LegalizeDAG.cpp | 1157 case ISD::UCMP: in LegalizeOp() 3897 case ISD::UCMP: in ExpandNode()
|
H A D | TargetLowering.cpp | 10450 auto LTPredicate = (Opcode == ISD::UCMP ? ISD::SETULT : ISD::SETLT); in expandCMP() 10451 auto GTPredicate = (Opcode == ISD::UCMP ? ISD::SETUGT : ISD::SETGT); in expandCMP()
|
H A D | SelectionDAGBuilder.cpp | 7276 setValue(&I, DAG.getNode(ISD::UCMP, sdl, DestVT, Op1, Op2)); in visitIntrinsicCall()
|
H A D | SelectionDAG.cpp | 6994 case ISD::UCMP: in getNode()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TargetLoweringBase.cpp | 746 setOperationAction({ISD::UCMP, ISD::SCMP}, VT, Expand); in initActions()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/ |
H A D | TargetSelectionDAG.td | 449 def ucmp : SDNode<"ISD::UCMP" , SDTIntBinOp,
|