Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Cvt64Uto32F (0.19 sec)

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

    	{name: "Cvt32Fto32U", argLength: 1}, // float32 -> uint32, only used on 32-bit arch
    	{name: "Cvt64Fto32U", argLength: 1}, // float64 -> uint32, only used on 32-bit arch
    	{name: "Cvt64Uto32F", argLength: 1}, // uint64 -> float32, only used on archs that has the instruction
    	{name: "Cvt64Uto64F", argLength: 1}, // uint64 -> float64, only used on archs that has the instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Cvt32Fto64 ...) => (CGEBRA ...)
    (Cvt64Fto32 ...) => (CFDBRA ...)
    (Cvt64Fto64 ...) => (CGDBRA ...)
    
    // Lowering float <-> uint
    (Cvt32Uto32F ...) => (CELFBR ...)
    (Cvt32Uto64F ...) => (CDLFBR ...)
    (Cvt64Uto32F ...) => (CELGBR ...)
    (Cvt64Uto64F ...) => (CDLGBR ...)
    
    (Cvt32Fto32U ...) => (CLFEBR ...)
    (Cvt32Fto64U ...) => (CLGEBR ...)
    (Cvt64Fto32U ...) => (CLFDBR ...)
    (Cvt64Fto64U ...) => (CLGDBR ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Cvt32to32F  ...) => (SCVTFWS ...)
    (Cvt32to64F  ...) => (SCVTFWD ...)
    (Cvt64to32F  ...) => (SCVTFS ...)
    (Cvt64to64F  ...) => (SCVTFD ...)
    (Cvt32Uto32F ...) => (UCVTFWS ...)
    (Cvt32Uto64F ...) => (UCVTFWD ...)
    (Cvt64Uto32F ...) => (UCVTFS ...)
    (Cvt64Uto64F ...) => (UCVTFD ...)
    (Cvt32Fto32  ...) => (FCVTZSSW ...)
    (Cvt64Fto32  ...) => (FCVTZSDW ...)
    (Cvt32Fto64  ...) => (FCVTZSS ...)
    (Cvt64Fto64  ...) => (FCVTZSD ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	{types.TUINT32, types.TFLOAT32}: {ssa.OpZeroExt32to64, ssa.OpCvt64to32F, types.TINT64}, // go wide to dodge unsigned
    	{types.TUINT64, types.TFLOAT32}: {ssa.OpCopy, ssa.OpInvalid, types.TUINT64},            // Cvt64Uto32F, branchy code expansion instead
    
    	{types.TUINT8, types.TFLOAT64}:  {ssa.OpZeroExt8to32, ssa.OpCvt32to64F, types.TINT32},
    	{types.TUINT16, types.TFLOAT64}: {ssa.OpZeroExt16to32, ssa.OpCvt32to64F, types.TINT32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:    "Cvt32Fto32U",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Cvt64Fto32U",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Cvt64Uto32F",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Cvt64Uto64F",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "Cvt32Fto64U",
    		argLen:  1,
    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