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.

dmd.timetrace.timeTraceBeginEvent - multiple declarations

Function timeTraceBeginEvent

Start a new time trace event (C++ interface using upfront C-strings instead of lazy delegates)

extern(C++) void timeTraceBeginEvent(
  scope const(char)* name_ptr,
  scope const(char)* detail_ptr,
  Loc loc
);

Parameters

NameDescription
name_ptr event name, visible in high level profile view
detail_ptr further details, visible when this event is selected
loc source location corresponding to this event

Function timeTraceBeginEvent

Start a new time trace event

extern(C++) void timeTraceBeginEvent(
  TimeTraceEventType eventType
);

Details of the event will be passed as delegates to timeTraceEndEvent so they're only generated when the event is actually written.

Parameters

NameDescription
eventType what compilation stage the event belongs to (redundant with the eventType of timeTraceEndEvent but used by GDC)

Authors

Johan Engelen, Max Haughton, Dennis Korpel

License

Boost License 1.0