Home | History | Annotate | Download | only in objects

Lines Matching refs:STACK

29 // at runtime (stack dumps, deoptimization, etc.).
52 // Return the total number of locals allocated on the stack and in the
56 // Return the number of stack slots for code. This number consists of two
58 // 1. One stack slot per stack allocated local.
59 // 2. One stack slot for the function name if it is stack allocated.
74 // Does this scope declare a "this" binding, and the "this" binding is stack-
111 // Return the name of the given stack local.
114 // Return the name of the given stack local.
134 // the stack slot index for a given slot name if the slot is
210 // 3. The number of non-parameter variables allocated on the stack.
247 // Index of a first stack slot for stack local. Stack locals belonging to
248 // this scope are located on a stack at slots starting from this index.
250 // Contains the names of local variables that are allocated on the stack,
251 // in increasing order of the stack slot index. First local variable has a
252 // stack slot index defined in StackLocalFirstSlot (point 2 above).
253 // One slot is used per stack local, so in total this part occupies
268 // context or stack slot index for the variable.
273 // b. The context or stack slot index for the variable.
306 enum VariableAllocationInfo { NONE, STACK, CONTEXT, UNUSED };