View source code
Display the source code in dmd/timetrace.d from which thispage was generated on github.
Report a bug
If you spot a problem with this page, click here to create aBugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.Requires a signed-in GitHub account. This works well for small changes.If you'd like to make larger changes you may want to consider usinglocal clone.
Function dmd.timetrace.timeTraceEndEvent
End a time tracing event, optionally updating the event name and details with a delegate. Delegates are used to prevent spending time on string generation when an event is too small to be generated anyway.
extern(C++) void timeTraceEndEvent(
TimeTraceEventType eventType
);
void timeTraceEndEvent(
TimeTraceEventType eventType,
Dsymbol sym,
scope const(char)[] delegate() detail = cast(const(char)[] delegate())null
);
extern(C++) void timeTraceEndEvent(
TimeTraceEventType eventType,
Expression e
);
Parameters
Name | Description |
---|---|
eventType | what compilation stage the event belongs to |
sym | Dsymbol which was analyzed, used to generate 'name' and 'detail' |
e | Expression which was analyzed, used to generate 'name' and 'detail' |
detail | custom lazy string for 'detail' of event |
Authors
Johan Engelen, Max Haughton, Dennis Korpel
License
Copyright © 1999-2025 by the D Language Foundation | Page generated by ddox.