( long off, TypeStruct t)
| 324 | |
| 325 | // Convert array size to array element count |
| 326 | private static int offToIdx( long off, TypeStruct t) { |
| 327 | off -= t.aryBase(); |
| 328 | int scale = t.aryScale(); |
| 329 | assert (off & ((1L << scale)-1)) == 0; |
| 330 | return (int)(off>>scale); |
| 331 | } |
| 332 | |
| 333 | // Builds and returns a pointer Object |
| 334 | private static Object alloc(NewNode alloc) { |