Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for modsw (0.13 sec)

  1. src/cmd/compile/internal/ssa/rewriteARM64.go

    		v.AuxInt = int64ToAuxInt(c % d)
    		return true
    	}
    	return false
    }
    func rewriteValueARM64_OpARM64MODW(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (MODW (MOVDconst [c]) (MOVDconst [d]))
    	// cond: d != 0
    	// result: (MOVDconst [int64(uint32(int32(c)%int32(d)))])
    	for {
    		if v_0.Op != OpARM64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	LMSW R11                                // 410f01f3
    	LODSB                                   // ac
    	LODSL                                   // ad
    	LODSQ                                   // 48ad
    	LODSW                                   // 66ad
    	//TODO: LOOP .+$0x11                    // e211
    	//TODO: LOOPEQ .+$0x11                  // e111
    	//TODO: LOOPNE .+$0x11                  // e011
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  3. RELEASE.md

    *   `make_template()` takes an optional `custom_getter_ param`.
    *   Added comment about how existing directories are handled by
        `recursive_create_dir`.
    *   Added an op for QR factorizations.
    *   Divides and mods in Python API now use flooring (Python) semantics.
    *   Android: pre-built libs are now built nightly.
    *   Android: cmake/gradle build for TensorFlow Inference library under
        `contrib/android/cmake`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top