Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FCVTSD (0.18 sec)

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

    		{name: "FCVTZUS", argLength: 1, reg: fpgp, asm: "FCVTZUS"},   // float32 -> uint64
    		{name: "FCVTZUD", argLength: 1, reg: fpgp, asm: "FCVTZUD"},   // float64 -> uint64
    		{name: "FCVTSD", argLength: 1, reg: fp11, asm: "FCVTSD"},     // float32 -> float64
    		{name: "FCVTDS", argLength: 1, reg: fp11, asm: "FCVTDS"},     // float64 -> float32
    
    		// floating-point round to integral
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Cvt64Fto64  ...) => (FCVTZSD ...)
    (Cvt32Fto32U ...) => (FCVTZUSW ...)
    (Cvt64Fto32U ...) => (FCVTZUDW ...)
    (Cvt32Fto64U ...) => (FCVTZUS ...)
    (Cvt64Fto64U ...) => (FCVTZUD ...)
    (Cvt32Fto64F ...) => (FCVTSD ...)
    (Cvt64Fto32F ...) => (FCVTDS ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    (Round32F ...) => (LoweredRound32F ...)
    (Round64F ...) => (LoweredRound64F ...)
    
    // comparisons
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 670826495}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30
    			},
    		},
    	},
    	{
    		name:   "FCVTSD",
    		argLen: 1,
    		asm:    arm64.AFCVTSD,
    		reg: regInfo{
    			inputs: []inputInfo{
    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