Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MOVWUD (0.19 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "MOVWD", argLength: 1, reg: gpfp, asm: "MOVWD"},  // int32 -> float64
    		{name: "MOVWUF", argLength: 1, reg: gpfp, asm: "MOVWF"}, // uint32 -> float32, set U bit in the instruction
    		{name: "MOVWUD", argLength: 1, reg: gpfp, asm: "MOVWD"}, // uint32 -> float64, set U bit in the instruction
    		{name: "MOVFW", argLength: 1, reg: fpgp, asm: "MOVFW"},  // float32 -> int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Slicemask <t> x) => (SRAconst (RSBconst <t> [0] x) [31])
    
    // float <-> int conversion
    (Cvt32to32F ...) => (MOVWF ...)
    (Cvt32to64F ...) => (MOVWD ...)
    (Cvt32Uto32F ...) => (MOVWUF ...)
    (Cvt32Uto64F ...) => (MOVWUD ...)
    (Cvt32Fto32 ...) => (MOVFW ...)
    (Cvt64Fto32 ...) => (MOVDW ...)
    (Cvt32Fto32U ...) => (MOVFWU ...)
    (Cvt64Fto32U ...) => (MOVDWU ...)
    (Cvt32Fto64F ...) => (MOVFD ...)
    (Cvt64Fto32F ...) => (MOVDF ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    			},
    			clobbers: 2147483648, // F15
    			outputs: []outputInfo{
    				{0, 4294901760}, // F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15
    			},
    		},
    	},
    	{
    		name:   "MOVWUD",
    		argLen: 1,
    		asm:    arm.AMOVWD,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    			clobbers: 2147483648, // F15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top