Changes between Version 23 and Version 24 of SIMD
- Timestamp:
- 11/14/11 01:10:51 (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SIMD
v23 v24 124 124 type Multiplicty = Int 125 125 }}} 126 We keep vector types separate from scalars, rather than representing scalars as having multiplicty 1. This is to limit dis truption to existing code paths and also because it is expected that vectors will often need to be treated differently from scalars. Again we distinguish float from integral types as these may use different classes of registers. There is no need to support vectors of GC pointers.126 We keep vector types separate from scalars, rather than representing scalars as having multiplicty 1. This is to limit disruption to existing code paths and also because it is expected that vectors will often need to be treated differently from scalars. Again we distinguish float from integral types as these may use different classes of registers. There is no need to support vectors of GC pointers. 127 127 128 128 Vector operations on these machine vector types will be added to the Cmm `MachOp` type, e.g.
