1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ppapi/shared_impl/ppb_trace_event_impl.h"
7 #include "base/basictypes.h"
8 #include "base/debug/trace_event.h"
9 #include "base/threading/platform_thread.h"
10 #include "ppapi/thunk/thunk.h"
14 // PPB_Trace_Event_Dev is a shared implementation because Trace Events can be
15 // sent from either the plugin process or renderer process depending on whether
16 // the plugin is in- or out-of-process. Also, for NaCl plugins these functions
17 // will be executed from untrusted code and handled appropriately by tracing
18 // functionality in the IRT.
21 void* TraceEventImpl::GetCategoryEnabled(const char* category_name
) {
22 // This casting is here because all mem_t return types in Pepper are void* and
23 // non-const. All mem_t parameters are const void* so there is no way to
24 // return a pointer type to the caller without some const_cast. The pointer
25 // type the tracing system works with is normally unsigned char*.
26 return const_cast<void*>(static_cast<const void*>(
27 base::debug::TraceLog::GetInstance()->GetCategoryGroupEnabled(
32 void TraceEventImpl::AddTraceEvent(int8_t phase
,
33 const void* category_enabled
,
37 const char* arg_names
[],
38 const uint8_t arg_types
[],
39 const uint64_t arg_values
[],
42 COMPILE_ASSERT(sizeof(unsigned long long) == sizeof(uint64_t), msg
);
44 base::debug::TraceLog::GetInstance()->AddTraceEvent(
46 static_cast<const unsigned char*>(category_enabled
),
52 // This cast is necessary for LP64 systems, where uint64_t is defined as
53 // an unsigned long int, but trace_event internals are hermetic and
54 // accepts an |unsigned long long*|. The pointer types are compatible but
55 // the compiler throws an error without an explicit cast.
56 reinterpret_cast<const unsigned long long*>(arg_values
),
62 void TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp(
64 const void* category_enabled
,
70 const char* arg_names
[],
71 const uint8_t arg_types
[],
72 const uint64_t arg_values
[],
74 base::debug::TraceLog::GetInstance()->AddTraceEventWithThreadIdAndTimestamp(
76 static_cast<const unsigned char*>(category_enabled
),
80 base::TimeTicks::FromInternalValue(timestamp
),
84 // This cast is necessary for LP64 systems, where uint64_t is defined as
85 // an unsigned long int, but trace_event internals are hermetic and
86 // accepts an |unsigned long long*|. The pointer types are compatible but
87 // the compiler throws an error without an explicit cast.
88 reinterpret_cast<const unsigned long long*>(arg_values
),
94 int64_t TraceEventImpl::Now() {
95 return base::TimeTicks::NowFromSystemTraceTime().ToInternalValue();
99 void TraceEventImpl::SetThreadName(const char* thread_name
) {
100 base::PlatformThread::SetName(thread_name
);
105 const PPB_Trace_Event_Dev_0_1 g_ppb_trace_event_thunk_0_1
= {
106 &TraceEventImpl::GetCategoryEnabled
, &TraceEventImpl::AddTraceEvent
,
107 &TraceEventImpl::SetThreadName
, };
109 const PPB_Trace_Event_Dev_0_2 g_ppb_trace_event_thunk_0_2
= {
110 &TraceEventImpl::GetCategoryEnabled
,
111 &TraceEventImpl::AddTraceEvent
,
112 &TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp
,
113 &TraceEventImpl::Now
,
114 &TraceEventImpl::SetThreadName
, };
123 const PPB_Trace_Event_Dev_0_1
* GetPPB_Trace_Event_Dev_0_1_Thunk() {
124 return &g_ppb_trace_event_thunk_0_1
;
127 const PPB_Trace_Event_Dev_0_2
* GetPPB_Trace_Event_Dev_0_2_Thunk() {
128 return &g_ppb_trace_event_thunk_0_2
;