Lines Matching full:on
14 somewhere in memory and executes corresponding _operations_ on operation's arguments,
16 directly on the CPU) or _memory_ (some locations in computer's RAM). An important subset of memory
26 Here comes the bytecode. Simply said, it is an attempt to build an abstract CPU on top of real
27 ones. A program written for such abstract CPU can be run on any real hardware with the help of a
83 (depending on the benchmark).
133 Let's take a closer look at `adda arg1, arg2`. Assume that arguments map to virtual registers on
166 that most of operations inside a function happen on local and/or temporary variables, while
173 needed forms. Thus we save on opcode space without losing in encoding size (on average).
204 on the same platform with the same bytecode, we would have to handle both JavaScript-style addition
217 I.e. does it mean that if `adda reg1, reg2` operates only on 64-bit integers, registers `reg1`
220 which do not distinguish between integers and pointers on many platforms). The key constraint is
221 that once a value of a certain type is store into a virtual register, all operations on that value