Lines Matching defs:context
986 Object CommonFrame::context() const {
1136 // These frame types have a context, but they are actually stored
1262 // If this frame has JavaScript ABI, visit the context (in stub and JS
1371 Object JavaScriptFrame::context() const {
1536 Object JavaScriptBuiltinContinuationFrame::context() const {
2120 Object WasmFrame::context() const { return wasm_instance().native_context(); }
2299 // parameters, stack local variables, context local variables, stack slots,
2300 // or context slots.
2349 // Try to get hold of the context of this frame.
2350 Context context;
2351 if (this->context().IsContext()) {
2352 context = Context::cast(this->context());
2353 while (context.IsWithContext()) {
2354 context = context.previous();
2355 DCHECK(!context.is_null());
2367 if (!context.is_null()) {
2369 if (slot_index < context.length()) {
2370 accumulator->Add("%o", context.get(slot_index));
2373 "// warning: missing context slot - inconsistent frame?");
2376 accumulator->Add("// warning: no context found - inconsistent frame?");