[clang] [llvm] Added instant events and marking defered templated instantiation. (PR #103039)

via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 7 02:27:06 PDT 2024


================
@@ -83,6 +83,19 @@ namespace llvm {
 
 class raw_pwrite_stream;
 
+// Type of the time trace event.
+enum class TimeTraceEventType {
+  // Complete events have a duration (start and end time points) and are marked
+  // by the "X" phase type.
+  CompleteEvent,
----------------
ivanaivanovska wrote:

The event type was named Complete following the Trace Event Format [doc](https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/preview#heading=h.yr4qxyxotyw). Leaving it as is to comply with it.

https://github.com/llvm/llvm-project/pull/103039


More information about the llvm-commits mailing list