| OLD | NEW |
| 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 Loading... |
| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ |
| OLD | NEW |