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

Side by Side Diff: src/d8-debug.h

Issue 3112010: [Isolates] Rebase and get d8 to compile.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: '' Created 10 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « src/d8.cc ('k') | src/d8-debug.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 void RunRemoteDebugger(int port); 46 void RunRemoteDebugger(int port);
47 47
48 // Forward declerations. 48 // Forward declerations.
49 class RemoteDebuggerEvent; 49 class RemoteDebuggerEvent;
50 class ReceiverThread; 50 class ReceiverThread;
51 51
52 52
53 // Remote debugging class. 53 // Remote debugging class.
54 class RemoteDebugger { 54 class RemoteDebugger {
55 public: 55 public:
56 explicit RemoteDebugger(int port) 56 RemoteDebugger(i::Isolate* isolate, int port)
57 : port_(port), 57 : port_(port),
58 event_access_(i::OS::CreateMutex()), 58 event_access_(i::OS::CreateMutex()),
59 event_available_(i::OS::CreateSemaphore(0)), 59 event_available_(i::OS::CreateSemaphore(0)),
60 head_(NULL), tail_(NULL) {} 60 head_(NULL), tail_(NULL), isolate_(isolate) {}
61 void Run(); 61 void Run();
62 62
63 // Handle events from the subordinate threads. 63 // Handle events from the subordinate threads.
64 void MessageReceived(i::SmartPointer<char> message); 64 void MessageReceived(i::SmartPointer<char> message);
65 void KeyboardCommand(i::SmartPointer<char> command); 65 void KeyboardCommand(i::SmartPointer<char> command);
66 void ConnectionClosed(); 66 void ConnectionClosed();
67 67
68 private: 68 private:
69 // Add new debugger event to the list. 69 // Add new debugger event to the list.
70 void AddEvent(RemoteDebuggerEvent* event); 70 void AddEvent(RemoteDebuggerEvent* event);
(...skipping 11 matching lines...) Expand all
82 int port_; // Port used to connect to debugger V8. 82 int port_; // Port used to connect to debugger V8.
83 i::Socket* conn_; // Connection to debugger agent in debugged V8. 83 i::Socket* conn_; // Connection to debugger agent in debugged V8.
84 84
85 // Linked list of events from debugged V8 and from keyboard input. Access to 85 // Linked list of events from debugged V8 and from keyboard input. Access to
86 // the list is guarded by a mutex and a semaphore signals new items in the 86 // the list is guarded by a mutex and a semaphore signals new items in the
87 // list. 87 // list.
88 i::Mutex* event_access_; 88 i::Mutex* event_access_;
89 i::Semaphore* event_available_; 89 i::Semaphore* event_available_;
90 RemoteDebuggerEvent* head_; 90 RemoteDebuggerEvent* head_;
91 RemoteDebuggerEvent* tail_; 91 RemoteDebuggerEvent* tail_;
92 i::Isolate* isolate_;
92 93
93 friend class ReceiverThread; 94 friend class ReceiverThread;
94 }; 95 };
95 96
96 97
97 // Thread reading from debugged V8 instance. 98 // Thread reading from debugged V8 instance.
98 class ReceiverThread: public i::Thread { 99 class ReceiverThread: public i::Thread {
99 public: 100 public:
100 explicit ReceiverThread(RemoteDebugger* remote_debugger) 101 ReceiverThread(i::Isolate* isolate, RemoteDebugger* remote_debugger)
101 : remote_debugger_(remote_debugger) {} 102 : i::Thread(isolate), remote_debugger_(remote_debugger) {}
102 ~ReceiverThread() {} 103 ~ReceiverThread() {}
103 104
104 void Run(); 105 void Run();
105 106
106 private: 107 private:
107 RemoteDebugger* remote_debugger_; 108 RemoteDebugger* remote_debugger_;
108 }; 109 };
109 110
110 111
111 // Thread reading keyboard input. 112 // Thread reading keyboard input.
112 class KeyboardThread: public i::Thread { 113 class KeyboardThread: public i::Thread {
113 public: 114 public:
114 explicit KeyboardThread(RemoteDebugger* remote_debugger) 115 explicit KeyboardThread(i::Isolate* isolate, RemoteDebugger* remote_debugger)
115 : remote_debugger_(remote_debugger) {} 116 : i::Thread(isolate), remote_debugger_(remote_debugger) {}
116 ~KeyboardThread() {} 117 ~KeyboardThread() {}
117 118
118 void Run(); 119 void Run();
119 120
120 private: 121 private:
121 RemoteDebugger* remote_debugger_; 122 RemoteDebugger* remote_debugger_;
122 }; 123 };
123 124
124 125
125 // Events processed by the main deubgger thread. 126 // Events processed by the main deubgger thread.
(...skipping 20 matching lines...) Expand all
146 RemoteDebuggerEvent* next_; 147 RemoteDebuggerEvent* next_;
147 148
148 friend class RemoteDebugger; 149 friend class RemoteDebugger;
149 }; 150 };
150 151
151 152
152 } // namespace v8 153 } // namespace v8
153 154
154 155
155 #endif // V8_D8_DEBUG_H_ 156 #endif // V8_D8_DEBUG_H_
OLDNEW
« no previous file with comments | « src/d8.cc ('k') | src/d8-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698