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

Side by Side Diff: src/log.h

Issue 151163005: A64: Synchronize with r16356. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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/liveedit.cc ('k') | src/log.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 Code* code, Name* name); 241 Code* code, Name* name);
242 void CodeCreateEvent(LogEventsAndTags tag, 242 void CodeCreateEvent(LogEventsAndTags tag,
243 Code* code, 243 Code* code,
244 SharedFunctionInfo* shared, 244 SharedFunctionInfo* shared,
245 CompilationInfo* info, 245 CompilationInfo* info,
246 Name* name); 246 Name* name);
247 void CodeCreateEvent(LogEventsAndTags tag, 247 void CodeCreateEvent(LogEventsAndTags tag,
248 Code* code, 248 Code* code,
249 SharedFunctionInfo* shared, 249 SharedFunctionInfo* shared,
250 CompilationInfo* info, 250 CompilationInfo* info,
251 Name* source, int line); 251 Name* source, int line, int column);
252 void CodeCreateEvent(LogEventsAndTags tag, Code* code, int args_count); 252 void CodeCreateEvent(LogEventsAndTags tag, Code* code, int args_count);
253 void CodeMovingGCEvent(); 253 void CodeMovingGCEvent();
254 // Emits a code create event for a RegExp. 254 // Emits a code create event for a RegExp.
255 void RegExpCodeCreateEvent(Code* code, String* source); 255 void RegExpCodeCreateEvent(Code* code, String* source);
256 // Emits a code move event. 256 // Emits a code move event.
257 void CodeMoveEvent(Address from, Address to); 257 void CodeMoveEvent(Address from, Address to);
258 // Emits a code delete event. 258 // Emits a code delete event.
259 void CodeDeleteEvent(Address from); 259 void CodeDeleteEvent(Address from);
260 // Emits a code line info add event with Postion type. 260 // Emits a code line info add event with Postion type.
261 void CodeLinePosInfoAddPositionEvent(void* jit_handler_data, 261 void CodeLinePosInfoAddPositionEvent(void* jit_handler_data,
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 if (FLAG_log_internal_timer_events) LogTimerEvent(START); 314 if (FLAG_log_internal_timer_events) LogTimerEvent(START);
315 } 315 }
316 316
317 ~TimerEventScope() { 317 ~TimerEventScope() {
318 if (FLAG_log_internal_timer_events) LogTimerEvent(END); 318 if (FLAG_log_internal_timer_events) LogTimerEvent(END);
319 } 319 }
320 320
321 void LogTimerEvent(StartEnd se); 321 void LogTimerEvent(StartEnd se);
322 322
323 static const char* v8_recompile_synchronous; 323 static const char* v8_recompile_synchronous;
324 static const char* v8_recompile_parallel; 324 static const char* v8_recompile_concurrent;
325 static const char* v8_compile_full_code; 325 static const char* v8_compile_full_code;
326 static const char* v8_execute; 326 static const char* v8_execute;
327 static const char* v8_external; 327 static const char* v8_external;
328 328
329 private: 329 private:
330 Isolate* isolate_; 330 Isolate* isolate_;
331 const char* name_; 331 const char* name_;
332 }; 332 };
333 333
334 // ==== Events logged by --log-regexp ==== 334 // ==== Events logged by --log-regexp ====
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 int length) = 0; 533 int length) = 0;
534 534
535 NameBuffer* name_buffer_; 535 NameBuffer* name_buffer_;
536 }; 536 };
537 537
538 538
539 } } // namespace v8::internal 539 } } // namespace v8::internal
540 540
541 541
542 #endif // V8_LOG_H_ 542 #endif // V8_LOG_H_
OLDNEW
« no previous file with comments | « src/liveedit.cc ('k') | src/log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698