Nico Rainhart
Nico Rainhart
- Adds SIMD bytecodes for loading, storing and adding vector registers (`float64` and `float32`) - Adds SIMD bytecode for subtracting vector registers (`float64`) - Adds SIMD primitive to add `Float64Array`s....
From `Integer>>#bitOr:`: ``` | anInteger ^self bitOr: anInteger ``` However, when translating it to C code, `Integer>>#bitOr:` is translated to `|` (bitwise or), while `Integer>>#|` is translated to `||` (logical...
Bytecodes declared in `StackToRegisterMappingCogit#genMappedInlinePrimitive:` can specify metadata that will be part of the bytecode descriptor. In particular, `isMapped` is used to indicate that the bytecode may end up calling a...
While working on bytecode operations (see `initializeBytecodeTableForSistaV1`), I used `register` as a temp variable name in one of the bytecode handlers. At the moment of building the VM, I got...
### Expected behavior When inspecting objects inside a collection, if I explicitly select a tab in the inspector I expect it to remain selected when switching the inspected object. ###...