SIMD 支持

  1. function add(a::m128, b::m128)
  2. (VecElement(a[1].value+b[1].value),
  3. VecElement(a[3].value+b[3].value),
  4. end
  5. triple(c::m128) = add(add(c,c),c)
  6. code_native(triple,(m128,))