| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 static void HeapSampleBeginEvent(const char* space, const char* kind); | 230 static void HeapSampleBeginEvent(const char* space, const char* kind); |
| 231 static void HeapSampleEndEvent(const char* space, const char* kind); | 231 static void HeapSampleEndEvent(const char* space, const char* kind); |
| 232 static void HeapSampleItemEvent(const char* type, int number, int bytes); | 232 static void HeapSampleItemEvent(const char* type, int number, int bytes); |
| 233 static void HeapSampleJSConstructorEvent(const char* constructor, | 233 static void HeapSampleJSConstructorEvent(const char* constructor, |
| 234 int number, int bytes); | 234 int number, int bytes); |
| 235 static void HeapSampleJSRetainersEvent(const char* constructor, | 235 static void HeapSampleJSRetainersEvent(const char* constructor, |
| 236 const char* event); | 236 const char* event); |
| 237 static void HeapSampleJSProducerEvent(const char* constructor, | 237 static void HeapSampleJSProducerEvent(const char* constructor, |
| 238 Address* stack); | 238 Address* stack); |
| 239 static void HeapSampleStats(const char* space, const char* kind, | 239 static void HeapSampleStats(const char* space, const char* kind, |
| 240 int capacity, int used); | 240 intptr_t capacity, intptr_t used); |
| 241 | 241 |
| 242 static void SharedLibraryEvent(const char* library_path, | 242 static void SharedLibraryEvent(const char* library_path, |
| 243 uintptr_t start, | 243 uintptr_t start, |
| 244 uintptr_t end); | 244 uintptr_t end); |
| 245 static void SharedLibraryEvent(const wchar_t* library_path, | 245 static void SharedLibraryEvent(const wchar_t* library_path, |
| 246 uintptr_t start, | 246 uintptr_t start, |
| 247 uintptr_t end); | 247 uintptr_t end); |
| 248 | 248 |
| 249 // ==== Events logged by --log-regexp ==== | 249 // ==== Events logged by --log-regexp ==== |
| 250 // Regexp compilation and execution events. | 250 // Regexp compilation and execution events. |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 // Class that extracts stack trace, used for profiling. | 377 // Class that extracts stack trace, used for profiling. |
| 378 class StackTracer : public AllStatic { | 378 class StackTracer : public AllStatic { |
| 379 public: | 379 public: |
| 380 static void Trace(TickSample* sample); | 380 static void Trace(TickSample* sample); |
| 381 }; | 381 }; |
| 382 | 382 |
| 383 } } // namespace v8::internal | 383 } } // namespace v8::internal |
| 384 | 384 |
| 385 | 385 |
| 386 #endif // V8_LOG_H_ | 386 #endif // V8_LOG_H_ |
| OLD | NEW |