Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for cmpw (0.05 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	CMPU R3, $0, CR1                // CMPU R3,CR1,$0       // 28a30000
    	CMPW R3, $0, CR2                // CMPW R3,CR2,$0       // 2d030000
    	CMPW R3, $-32768, CR2           // CMPW R3,CR2,$-32768  // 2d038000
    	CMPWU R3, $0, CR3               // CMPWU R3,CR3,$0      // 29830000
    	CMPWU R3, $0x8008, CR3          // CMPWU R3,CR3,$32776  // 29838008
    
    	CMPEQB R3,R4,CR6                // 7f0321c0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (CMPU x (MOVDconst [c])) && isU16Bit(c) => (CMPUconst x [c])
    (CMPU (MOVDconst [c]) y) && isU16Bit(c) => (InvertFlags (CMPUconst y [c]))
    (CMPWU x (MOVDconst [c])) && isU16Bit(c) => (CMPWUconst x [int32(c)])
    (CMPWU (MOVDconst [c]) y) && isU16Bit(c) => (InvertFlags (CMPWUconst y [int32(c)]))
    
    // Canonicalize the order of arguments to comparisons - helps with CSE.
    ((CMP|CMPW|CMPU|CMPWU) x y) && canonLessThan(x,y) => (InvertFlags ((CMP|CMPW|CMPU|CMPWU) y x))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

      && int32(x) != 0
      => (BRC {d} cmp yes no)
    
    // Canonicalize BRC condition code mask by removing impossible conditions.
    // Integer comparisons cannot generate the unordered condition.
    (BRC {c} x:((CMP|CMPW|CMPU|CMPWU)    _ _) yes no) && c&s390x.Unordered != 0 => (BRC {c&^s390x.Unordered} x yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/arm64.s

    	CMP	$3, R2
    	CMP	R1, R2
    	CMP	R1->11, R2
    	CMP	R1>>22, R2
    	CMP	R1<<33, R2
    	CMP	R22.SXTX, RSP                    // ffe336eb
    	CMP	$0x22220000, RSP                 // CMP $572653568, RSP   // 5b44a4d2ff633beb
    	CMPW	$0x22220000, RSP                 // CMPW $572653568, RSP  // 5b44a452ff433b6b
    	CCMN	MI, ZR, R1, $4	                 // e44341ba
    	// MADD Rn,Rm,Ra,Rd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Comparisons.
    		{name: "CMP", argLength: 2, reg: gp2flags, asm: "CMP", typ: "Flags"},   // arg0 compare to arg1
    		{name: "CMPW", argLength: 2, reg: gp2flags, asm: "CMPW", typ: "Flags"}, // arg0 compare to arg1
    
    		{name: "CMPU", argLength: 2, reg: gp2flags, asm: "CMPU", typ: "Flags"},   // arg0 compare to arg1
    		{name: "CMPWU", argLength: 2, reg: gp2flags, asm: "CMPWU", typ: "Flags"}, // arg0 compare to arg1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// comparisons
    		{name: "CMP", argLength: 2, reg: gp2flags, asm: "CMP", typ: "Flags"},                      // arg0 compare to arg1
    		{name: "CMPconst", argLength: 1, reg: gp1flags, asm: "CMP", aux: "Int64", typ: "Flags"},   // arg0 compare to auxInt
    		{name: "CMPW", argLength: 2, reg: gp2flags, asm: "CMPW", typ: "Flags"},                    // arg0 compare to arg1, 32 bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_s390x.s

    	VSEL X2H, X1H, SEL1, X1H
    	VSEL Y2L, Y1L, SEL1, Y1L
    	VSEL Y2H, Y1H, SEL1, Y1H
    	VSEL Z2L, Z1L, SEL1, Z1L
    	VSEL Z2H, Z1H, SEL1, Z1H
    
    	VAB  SEL2, ONE, SEL2
    	ADDW $1, COUNT
    	ADD  $96, P1ptr
    	CMPW COUNT, $17
    	BLT  loop_select
    
    	VST X1H, 0(P3ptr)
    	VST X1L, 16(P3ptr)
    	VST Y1H, 32(P3ptr)
    	VST Y1L, 48(P3ptr)
    	VST Z1H, 64(P3ptr)
    	VST Z1L, 80(P3ptr)
    	RET
    
    #undef P3ptr
    #undef P1ptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Fold boolean tests into blocks
    (NE (TESTB (SETL  cmp) (SETL  cmp)) yes no) => (LT  cmp yes no)
    (NE (TESTB (SETLE cmp) (SETLE cmp)) yes no) => (LE  cmp yes no)
    (NE (TESTB (SETG  cmp) (SETG  cmp)) yes no) => (GT  cmp yes no)
    (NE (TESTB (SETGE cmp) (SETGE cmp)) yes no) => (GE  cmp yes no)
    (NE (TESTB (SETEQ cmp) (SETEQ cmp)) yes no) => (EQ  cmp yes no)
    (NE (TESTB (SETNE cmp) (SETNE cmp)) yes no) => (NE  cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  9. src/runtime/asm_amd64.s

    	MOVQ	SP, (g_stack+stack_hi)(DI)
    
    	// find out information about the processor we're on
    	MOVL	$0, AX
    	CPUID
    	CMPL	AX, $0
    	JE	nocpuinfo
    
    	CMPL	BX, $0x756E6547  // "Genu"
    	JNE	notintel
    	CMPL	DX, $0x49656E69  // "ineI"
    	JNE	notintel
    	CMPL	CX, $0x6C65746E  // "ntel"
    	JNE	notintel
    	MOVB	$1, runtime·isIntel(SB)
    
    notintel:
    	// Load EAX=1 cpuid flags
    	MOVL	$1, AX
    	CPUID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

                '\n{} = tfr.equal {}, {} -> i1'.format(ret, lhs, rhs), node)
          else:
            if lhs_ty == TFRTypes.I64:
              code = 'arith.cmpi'
            elif lhs_ty == TFRTypes.F32:
              code = 'arith.cmpf'
            elif lhs_ty == TFRTypes.INDEX:
              code = 'arith.cmpi'
              # TODO(fengliuai): the reverse type inference should solve the issue.
              rhs, _ = self._i64_to_index(rhs, rhs_ty)
            else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top