Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LDEBR (0.02 sec)

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

    		{name: "CDLGBR", argLength: 1, reg: gpfp, asm: "CDLGBR", clobberFlags: true}, // convert uint64 to float64
    
    		{name: "LEDBR", argLength: 1, reg: fp11, asm: "LEDBR"}, // convert float64 to float32
    		{name: "LDEBR", argLength: 1, reg: fp11, asm: "LDEBR"}, // convert float32 to float64
    
    		{name: "MOVDaddr", argLength: 1, reg: addr, aux: "SymOff", rematerializeable: true, symEffect: "Addr"}, // arg0 + auxint + offset encoded in aux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (FNEG  (LNDFR x)) => (LPDFR x)
    (FNEGS (LPDFR x)) => (LNDFR x)
    (FNEGS (LNDFR x)) => (LPDFR x)
    
    // no need to convert float32 to float64 to set/clear sign bit
    (LEDBR (LPDFR (LDEBR x))) => (LPDFR x)
    (LEDBR (LNDFR (LDEBR x))) => (LNDFR x)
    
    // remove unnecessary FPR <-> GPR moves
    (LDGR (LGDR x)) => x
    (LGDR (LDGR x)) => x
    
    // Don't extend before storing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top