Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for translate (0.4 sec)

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

    (BitRev64 ...) => (RBIT ...)
    (BitRev32 ...) => (RBITW ...)
    (BitRev16   x) => (SRLconst [48] (RBIT <typ.UInt64> x))
    (BitRev8    x) => (SRLconst [56] (RBIT <typ.UInt64> x))
    
    // In fact, UMOD will be translated into UREM instruction, and UREM is originally translated into
    // UDIV and MSUB instructions. But if there is already an identical UDIV instruction just before or
    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    // license that can be found in the LICENSE file.
    
    // Simplifications that apply to all backend architectures. As an example, this
    // Go source code
    //
    // y := 0 * x
    //
    // can be translated into y := 0 without losing any information, which saves a
    // pointless multiplication instruction. Other .rules files in this directory
    // (for example AMD64.rules) contain rules specific to the architecture in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top