Lines Matching full:an
10 Before discussing bytecode per se, let's take a look at an over-simplified picture of a real
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
38 to distinguish between an abstract system and the hardware.
45 One very important question is how an operation refers to its operands.
77 just a single register-based instruction. Since the interpreter has an extra work to do to read
111 be an accumulator register. Having an implicitly addressed accumulator register de facto borrows
112 some "stack-based'ness" into an otherwise register-based instruction set in attempt to make the
115 In an ideal case, accumulator register may safe us ~25% of size. But it needs to be used carefully:
165 How to make sure that we benefit from the shorter encoding most of the time? An observation shows
203 a number without an explicit type cast. This means that if we would like to run these two languages
205 and Python-style addition within a single instruction, which would eventually lead us to an