Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: src/isolate.cc

Issue 2069823003: [wasm] Enable wasm frame inspection for debugging (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@split-wasm-debug
Patch Set: rebase & address andreas' comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/isolate.h" 5 #include "src/isolate.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 8
9 #include <fstream> // NOLINT(readability/streams) 9 #include <fstream> // NOLINT(readability/streams)
10 #include <sstream> 10 #include <sstream>
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 if (!column_key_.is_null()) { 621 if (!column_key_.is_null()) {
622 Code* code = frame->LookupCode(); 622 Code* code = frame->LookupCode();
623 int offset = static_cast<int>(frame->pc() - code->instruction_start()); 623 int offset = static_cast<int>(frame->pc() - code->instruction_start());
624 int position = code->SourcePosition(offset); 624 int position = code->SourcePosition(offset);
625 // Make position 1-based. 625 // Make position 1-based.
626 if (position >= 0) ++position; 626 if (position >= 0) ++position;
627 JSObject::AddProperty(stack_frame, column_key_, 627 JSObject::AddProperty(stack_frame, column_key_,
628 isolate_->factory()->NewNumberFromInt(position), 628 isolate_->factory()->NewNumberFromInt(position),
629 NONE); 629 NONE);
630 } 630 }
631 if (!script_id_key_.is_null()) {
632 int script_id = frame->script()->id();
633 JSObject::AddProperty(stack_frame, script_id_key_,
634 handle(Smi::FromInt(script_id), isolate_), NONE);
635 }
631 636
632 return stack_frame; 637 return stack_frame;
633 } 638 }
634 639
635 private: 640 private:
636 inline Factory* factory() { return isolate_->factory(); } 641 inline Factory* factory() { return isolate_->factory(); }
637 642
638 Isolate* isolate_; 643 Isolate* isolate_;
639 Handle<String> column_key_; 644 Handle<String> column_key_;
640 Handle<String> line_key_; 645 Handle<String> line_key_;
(...skipping 2424 matching lines...) Expand 10 before | Expand all | Expand 10 after
3065 // Then check whether this scope intercepts. 3070 // Then check whether this scope intercepts.
3066 if ((flag & intercept_mask_)) { 3071 if ((flag & intercept_mask_)) {
3067 intercepted_flags_ |= flag; 3072 intercepted_flags_ |= flag;
3068 return true; 3073 return true;
3069 } 3074 }
3070 return false; 3075 return false;
3071 } 3076 }
3072 3077
3073 } // namespace internal 3078 } // namespace internal
3074 } // namespace v8 3079 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698