Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MULU (0.03 sec)

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

    	SUBV	$9531, R16	// 6210dac5
    	SUBV	$-9531, R13	// 61ad253b
    	SUBVU	$9531, R16	// 6610dac5
    
    //	LMUL rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MUL	R19, R8		// 01130018
    	MULU	R21, R13	// 01b50019
    	MULV	R19, R8		// 0113001c
    	MULVU	R21, R13	// 01b5001d
    
    //	LDIV rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	DIV	R18, R22	// 02d2001a
    	DIVU	R14, R9		// 012e001b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/armerror.s

    	MOVH.S	R1, R2             // ERROR "invalid .S suffix"
    	MOVHU.P	R1, R2             // ERROR "invalid .P suffix"
    	MOVHS.U	R1, R2             // ERROR "invalid .U suffix"
    	MUL.P	R0, R1, R2         // ERROR "invalid .P suffix"
    	MULU.W	R1, R2             // ERROR "invalid .W suffix"
    	DIVHW.S	R0, R1, R2         // ERROR "invalid .S suffix"
    	DIVHW.W	R1, R2             // ERROR "invalid .W suffix"
    	MULL.W	R2, R0, (R5, R8)   // ERROR "invalid .W suffix"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		{name: "MULT", argLength: 2, reg: gp2hilo, asm: "MUL", commutative: true, typ: "(Int32,Int32)"},                                                  // arg0 * arg1, signed, results hi,lo
    		{name: "MULTU", argLength: 2, reg: gp2hilo, asm: "MULU", commutative: true, typ: "(UInt32,UInt32)"},                                              // arg0 * arg1, unsigned, results hi,lo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  4. src/runtime/asm_arm.s

    	// magic multiply to avoid software divide without available m.
    	// see output of go tool compile -S for x/1000000.
    	MOVW	R0, R3
    	MOVW	$1125899907, R1
    	MULLU	R1, R0, (R0, R1)
    	MOVW	R0>>18, R0
    	MOVW	$1000000, R1
    	MULU	R0, R1
    	SUB	R1, R3, R1
    	RET
    
    // This is called from .init_array and follows the platform, not Go, ABI.
    TEXT runtime·addmoduledata(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
Back to top