Lines Matching full:we
7 Under the OSR, we mean the transition from interpreter code to optimized code. Opposite transition …
8 unoptimized - we call `Deoptimization`.
47 …d regular compilation use the same hotness counter. First time, when counter is overflowed we look
48 whether method is already compiled or not. If not, we start compilation in regular mode. Otherwise,…
51 Once compilation is triggered and OSR compiled code is already set, we begin On-Stack Replacement p…
61 To ensure all loops in the compiled code may be entered from the interpreter, we need to avoid loop…
76 On each OSR entry, we need to restore execution context.
77 To do this, we need to know all live virtual registers at this moment.
98 Since Panda Interpreter is written in the C++ language, we haven't access to its stack. Thus, we ca…
99 interpreter frame by cframe on the stack. When OSR is occurred we call OSR compiled code, and once …
100 we return `true` to the Interpreter. Interpreter, in turn, execute fake `return` instruction to exi…
152 New cframe is created in the current stack position. But before it we need to insert i2c bridge.