Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stringName (0.88 sec)

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

        imag
        (Store {typ.Float64} dst real mem))
    
    // string ops
    (StringPtr (StringMake ptr _)) => ptr
    (StringLen (StringMake _ len)) => len
    
    (Load <t> ptr mem) && t.IsString() =>
      (StringMake
        (Load <typ.BytePtr> ptr mem)
        (Load <typ.Int>
          (OffPtr <typ.IntPtr> [config.PtrSize] ptr)
          mem))
    (Store dst (StringMake ptr len) mem) =>
      (Store {typ.Int}
        (OffPtr <typ.IntPtr> [config.PtrSize] dst)
        len
    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