Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for MOVWF (0.08 sec)

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

    		{name: "MOVVnop", argLength: 1, reg: regInfo{inputs: []regMask{gp}, outputs: []regMask{gp}}, resultInArg0: true}, // nop, return arg0 in same register
    
    		{name: "MOVWF", argLength: 1, reg: fp11, asm: "MOVWF"},     // int32 -> float32
    		{name: "MOVWD", argLength: 1, reg: fp11, asm: "MOVWD"},     // int32 -> float64
    		{name: "MOVVF", argLength: 1, reg: fp11, asm: "MOVVF"},     // int64 -> float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm/asm5.go

    		o1 |= (FREGTMP & 15) << 12
    		o2 = c.oprrr(p, -AMOVFW, int(p.Scond))
    		o2 |= (FREGTMP & 15) << 16
    		o2 |= (uint32(p.To.Reg) & 15) << 12
    
    		// macro for movw reg,FTMP; movwf FTMP,freg
    	case 87: /* movwf reg,freg - fix-to-float */
    		o1 = c.oprrr(p, -AMOVWF, int(p.Scond))
    
    		o1 |= (uint32(p.From.Reg) & 15) << 12
    		o1 |= (FREGTMP & 15) << 16
    		o2 = c.oprrr(p, p.As, int(p.Scond))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (SignExt16to32 ...) => (MOVHreg ...)
    (SignExt8to64 ...) => (MOVBreg ...)
    (SignExt16to64 ...) => (MOVHreg ...)
    (SignExt32to64 ...) => (MOVWreg ...)
    
    // float <=> int conversion
    (Cvt32to32F ...) => (MOVWF ...)
    (Cvt32to64F ...) => (MOVWD ...)
    (Cvt64to32F ...) => (MOVVF ...)
    (Cvt64to64F ...) => (MOVVD ...)
    (Cvt32Fto32 ...) => (TRUNCFW ...)
    (Cvt64Fto32 ...) => (TRUNCDW ...)
    (Cvt32Fto64 ...) => (TRUNCFV ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (SignExt16to32 ...) => (MOVHreg ...)
    (SignExt8to64 ...) => (MOVBreg ...)
    (SignExt16to64 ...) => (MOVHreg ...)
    (SignExt32to64 ...) => (MOVWreg ...)
    
    // float <=> int conversion
    (Cvt32to32F ...) => (MOVWF ...)
    (Cvt32to64F ...) => (MOVWD ...)
    (Cvt64to32F ...) => (MOVVF ...)
    (Cvt64to64F ...) => (MOVVD ...)
    (Cvt32Fto32 ...) => (TRUNCFW ...)
    (Cvt64Fto32 ...) => (TRUNCDW ...)
    (Cvt32Fto64 ...) => (TRUNCFV ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Zeromask x) => (SRAconst (RSBshiftRL <typ.Int32> x x [1]) [31]) // sign bit of uint32(x)>>1 - x
    (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 ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:   "MOVWF",
    		argLen: 1,
    		asm:    arm.AMOVWF,
    		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