Lines Matching refs:code
6 // * Redistributions of source code must retain the above copyright
43 // Minimal logging (no API, code, or GC sample events), default is off.
47 // --log-api, --log-code, --log-gc, and --log-regexp.
52 // --log-code
53 // Log code (create, move, and delete) events to the logfile, default is off.
54 // --log-code implies --log.
69 // tick profiler requires code events, so --prof implies --log-code.
116 V(CODE_CREATION_EVENT, "code-creation", "cc") \
117 V(CODE_MOVE_EVENT, "code-move", "cm") \
118 V(CODE_DELETE_EVENT, "code-delete", "cd") \
206 // ==== Events logged by --log-code. ====
207 // Emits a code event for a callback function.
211 // Emits a code create event.
213 Code* code, const char* source);
214 static void CodeCreateEvent(LogEventsAndTags tag, Code* code, String* name);
215 static void CodeCreateEvent(LogEventsAndTags tag, Code* code, String* name,
217 static void CodeCreateEvent(LogEventsAndTags tag, Code* code, int args_count);
218 // Emits a code create event for a RegExp.
219 static void RegExpCodeCreateEvent(Code* code, String* source);
220 // Emits a code move event.
222 // Emits a code delete event.
259 // Log an event reported from generated code
319 // Emits the source code of a regexp. Used by regexp events.