Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsPtrShaped (0.1 sec)

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

    // the pre-rewrite input to the ArraySelect is a struct, not a pointer.
    (StructSelect [0] x) && x.Type.IsPtrShaped()  => x
    (ArraySelect [0] x) && x.Type.IsPtrShaped()  => x
    
    // These, too.  Bits is bits.
    (ArrayMake1 x) && x.Type.IsPtrShaped() => x
    (StructMake1 x) && x.Type.IsPtrShaped() => x
    
    (Store dst (StructMake1 <t> f0) mem) =>
      (Store {t.FieldType(0)} (OffPtr <t.FieldType(0).PtrTo()> [0] dst) f0 mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top