Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Cvt64Fto32U (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Cvt32Fto64 ...) => (I64TruncSatF32S ...)
    (Cvt64Fto32 ...) => (I64TruncSatF64S ...)
    (Cvt64Fto64 ...) => (I64TruncSatF64S ...)
    (Cvt32Fto32U ...) => (I64TruncSatF32U ...)
    (Cvt32Fto64U ...) => (I64TruncSatF32U ...)
    (Cvt64Fto32U ...) => (I64TruncSatF64U ...)
    (Cvt64Fto64U ...) => (I64TruncSatF64U ...)
    
    (Cvt32Fto64F ...) => (F64PromoteF32 ...)
    (Cvt64Fto32F ...) => (F32DemoteF64 ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Cvt32Uto64F", argLength: 1}, // uint32 -> float64, only used on 32-bit arch
    	{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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Cvt32Uto32F ...) => (CELFBR ...)
    (Cvt32Uto64F ...) => (CDLFBR ...)
    (Cvt64Uto32F ...) => (CELGBR ...)
    (Cvt64Uto64F ...) => (CDLGBR ...)
    
    (Cvt32Fto32U ...) => (CLFEBR ...)
    (Cvt32Fto64U ...) => (CLGEBR ...)
    (Cvt64Fto32U ...) => (CLFDBR ...)
    (Cvt64Fto64U ...) => (CLGDBR ...)
    
    // Lowering float32 <-> float64
    (Cvt32Fto64F ...) => (LDEBR ...)
    (Cvt64Fto32F ...) => (LEDBR ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Cvt32to64F ...) => (MOVWD ...)
    (Cvt32Uto32F ...) => (MOVWUF ...)
    (Cvt32Uto64F ...) => (MOVWUD ...)
    (Cvt32Fto32 ...) => (MOVFW ...)
    (Cvt64Fto32 ...) => (MOVDW ...)
    (Cvt32Fto32U ...) => (MOVFWU ...)
    (Cvt64Fto32U ...) => (MOVDWU ...)
    (Cvt32Fto64F ...) => (MOVFD ...)
    (Cvt64Fto32F ...) => (MOVDF ...)
    
    (Round(32|64)F ...) => (Copy ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    // fused-multiply-add
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Cvt64Uto64F ...) => (UCVTFD ...)
    (Cvt32Fto32  ...) => (FCVTZSSW ...)
    (Cvt64Fto32  ...) => (FCVTZSDW ...)
    (Cvt32Fto64  ...) => (FCVTZSS ...)
    (Cvt64Fto64  ...) => (FCVTZSD ...)
    (Cvt32Fto32U ...) => (FCVTZUSW ...)
    (Cvt64Fto32U ...) => (FCVTZUDW ...)
    (Cvt32Fto64U ...) => (FCVTZUS ...)
    (Cvt64Fto64U ...) => (FCVTZUD ...)
    (Cvt32Fto64F ...) => (FCVTSD ...)
    (Cvt64Fto32F ...) => (FCVTDS ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

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