OLD | NEW |
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 21 matching lines...) Expand all Loading... |
32 #include "src/messages.h" | 32 #include "src/messages.h" |
33 #include "src/profiler/cpu-profiler.h" | 33 #include "src/profiler/cpu-profiler.h" |
34 #include "src/prototype.h" | 34 #include "src/prototype.h" |
35 #include "src/regexp/regexp-stack.h" | 35 #include "src/regexp/regexp-stack.h" |
36 #include "src/runtime-profiler.h" | 36 #include "src/runtime-profiler.h" |
37 #include "src/simulator.h" | 37 #include "src/simulator.h" |
38 #include "src/snapshot/deserializer.h" | 38 #include "src/snapshot/deserializer.h" |
39 #include "src/v8.h" | 39 #include "src/v8.h" |
40 #include "src/version.h" | 40 #include "src/version.h" |
41 #include "src/vm-state-inl.h" | 41 #include "src/vm-state-inl.h" |
| 42 #include "src/wasm/wasm-debug.h" |
42 #include "src/wasm/wasm-module.h" | 43 #include "src/wasm/wasm-module.h" |
43 | 44 |
44 namespace v8 { | 45 namespace v8 { |
45 namespace internal { | 46 namespace internal { |
46 | 47 |
47 base::Atomic32 ThreadId::highest_thread_id_ = 0; | 48 base::Atomic32 ThreadId::highest_thread_id_ = 0; |
48 | 49 |
49 int ThreadId::AllocateThreadId() { | 50 int ThreadId::AllocateThreadId() { |
50 int new_id = base::NoBarrier_AtomicIncrement(&highest_thread_id_, 1); | 51 int new_id = base::NoBarrier_AtomicIncrement(&highest_thread_id_, 1); |
51 return new_id; | 52 return new_id; |
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
620 if (!column_key_.is_null()) { | 621 if (!column_key_.is_null()) { |
621 Code* code = frame->LookupCode(); | 622 Code* code = frame->LookupCode(); |
622 int offset = static_cast<int>(frame->pc() - code->instruction_start()); | 623 int offset = static_cast<int>(frame->pc() - code->instruction_start()); |
623 int position = code->SourcePosition(offset); | 624 int position = code->SourcePosition(offset); |
624 // Make position 1-based. | 625 // Make position 1-based. |
625 if (position >= 0) ++position; | 626 if (position >= 0) ++position; |
626 JSObject::AddProperty(stack_frame, column_key_, | 627 JSObject::AddProperty(stack_frame, column_key_, |
627 isolate_->factory()->NewNumberFromInt(position), | 628 isolate_->factory()->NewNumberFromInt(position), |
628 NONE); | 629 NONE); |
629 } | 630 } |
| 631 if (!script_id_key_.is_null()) { |
| 632 Object* wasm_obj = frame->wasm_obj(); |
| 633 int script_id = wasm_obj->IsUndefined(isolate_) |
| 634 ? -1 |
| 635 : wasm::GetDebugInfo(JSObject::cast(wasm_obj)) |
| 636 ->GetFunctionScript(frame->function_index()) |
| 637 ->id(); |
| 638 JSObject::AddProperty(stack_frame, script_id_key_, |
| 639 handle(Smi::FromInt(script_id), isolate_), NONE); |
| 640 } |
630 | 641 |
631 return stack_frame; | 642 return stack_frame; |
632 } | 643 } |
633 | 644 |
634 private: | 645 private: |
635 inline Factory* factory() { return isolate_->factory(); } | 646 inline Factory* factory() { return isolate_->factory(); } |
636 | 647 |
637 Isolate* isolate_; | 648 Isolate* isolate_; |
638 Handle<String> column_key_; | 649 Handle<String> column_key_; |
639 Handle<String> line_key_; | 650 Handle<String> line_key_; |
(...skipping 2424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3064 // Then check whether this scope intercepts. | 3075 // Then check whether this scope intercepts. |
3065 if ((flag & intercept_mask_)) { | 3076 if ((flag & intercept_mask_)) { |
3066 intercepted_flags_ |= flag; | 3077 intercepted_flags_ |= flag; |
3067 return true; | 3078 return true; |
3068 } | 3079 } |
3069 return false; | 3080 return false; |
3070 } | 3081 } |
3071 | 3082 |
3072 } // namespace internal | 3083 } // namespace internal |
3073 } // namespace v8 | 3084 } // namespace v8 |
OLD | NEW |