Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for AddPtr (0.71 sec)

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

    (Add64  (Const64 [c])  (Const64 [d]))  => (Const64 [c+d])
    (Add32F (Const32F [c]) (Const32F [d])) && c+d == c+d => (Const32F [c+d])
    (Add64F (Const64F [c]) (Const64F [d])) && c+d == c+d => (Const64F [c+d])
    (AddPtr <t> x (Const64 [c])) => (OffPtr <t> x [c])
    (AddPtr <t> x (Const32 [c])) => (OffPtr <t> x [int64(c)])
    
    (Sub8   (Const8 [c]) (Const8 [d]))     => (Const8 [c-d])
    (Sub16  (Const16 [c]) (Const16 [d]))   => (Const16 [c-d])
    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