Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Basic (0.16 sec)

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

    (Sub(64|32|16|8) x (Add(64|32|16|8) x y)) => (Neg(64|32|16|8) y)
    (Add(64|32|16|8) x (Sub(64|32|16|8) y x)) => y
    (Add(64|32|16|8) x (Add(64|32|16|8) y (Sub(64|32|16|8) z x))) => (Add(64|32|16|8) y z)
    
    // basic phi simplifications
    (Phi (Const8  [c]) (Const8  [c])) => (Const8  [c])
    (Phi (Const16 [c]) (Const16 [c])) => (Const16 [c])
    (Phi (Const32 [c]) (Const32 [c])) => (Const32 [c])
    (Phi (Const64 [c]) (Const64 [c])) => (Const64 [c])
    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