Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for modud (0.08 sec)

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

    	REMDU R3, R4, R5                // 7fe41b927fff19d27cbf2050
    
    	MADDHD R3,R4,R5,R6              // 10c32170
    	MADDHDU R3,R4,R5,R6             // 10c32171
    
    	MODUD R3, R4, R5                // 7ca41a12
    	MODUW R3, R4, R5                // 7ca41a16
    	MODSD R3, R4, R5                // 7ca41e12
    	MODSW R3, R4, R5                // 7ca41e16
    
    	SLW $8, R3, R4                  // 5464402e
    	SLW R3, R4, R5                  // 7c851830
    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

    (Mod64 x y) && buildcfg.GOPPC64 >=9 => (MODSD x y)
    (Mod64 x y) && buildcfg.GOPPC64 <=8 => (SUB x (MULLD y (DIVD x y)))
    (Mod64u x y) && buildcfg.GOPPC64 >= 9 => (MODUD x y)
    (Mod64u x y) && buildcfg.GOPPC64 <= 8 => (SUB x (MULLD y (DIVDU x y)))
    (Mod32 x y) && buildcfg.GOPPC64 >= 9 => (MODSW x y)
    (Mod32 x y) && buildcfg.GOPPC64 <= 8 => (SUB x (MULLW y (DIVW x y)))
    (Mod32u x y) && buildcfg.GOPPC64 >= 9 => (MODUW x y)
    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

    (Hmul(64|64u) ...) => (MULH(D|DU) ...)
    (Hmul32  x y) => (SRDconst [32] (MULLD (MOVWreg x) (MOVWreg y)))
    (Hmul32u x y) => (SRDconst [32] (MULLD (MOVWZreg x) (MOVWZreg y)))
    
    (Mod64 x y) => (MODD x y)
    (Mod64u ...) => (MODDU ...)
    // MODW/MODWU has a 64-bit dividend and a 32-bit divisor,
    // so a sign/zero extension of the dividend is required.
    (Mod32  x y) => (MODW  (MOVWreg x) y)
    (Mod32u x y) => (MODWU (MOVWZreg x) y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top