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/threading/platform_thread.h"
9 #include "base/trace_event/trace_event.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::trace_event::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 static_assert(sizeof(unsigned long long) == sizeof(uint64_t),
43 "unexpected data type sizes");
45 base::trace_event::TraceLog::GetInstance()->AddTraceEvent(
47 static_cast<const unsigned char*>(category_enabled
),
53 // This cast is necessary for LP64 systems, where uint64_t is defined as
54 // an unsigned long int, but trace_event internals are hermetic and
55 // accepts an |unsigned long long*|. The pointer types are compatible but
56 // the compiler throws an error without an explicit cast.
57 reinterpret_cast<const unsigned long long*>(arg_values
),
63 void TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp(
65 const void* category_enabled
,
71 const char* arg_names
[],
72 const uint8_t arg_types
[],
73 const uint64_t arg_values
[],
75 base::trace_event::TraceLog::GetInstance()
76 ->AddTraceEventWithThreadIdAndTimestamp(
78 static_cast<const unsigned char*>(category_enabled
),
82 base::TraceTicks::FromInternalValue(timestamp
),
86 // This cast is necessary for LP64 systems, where uint64_t is defined as
87 // an unsigned long int, but trace_event internals are hermetic and
88 // accepts an |unsigned long long*|. The pointer types are compatible but
89 // the compiler throws an error without an explicit cast.
90 reinterpret_cast<const unsigned long long*>(arg_values
),
96 int64_t TraceEventImpl::Now() {
97 return base::TraceTicks::Now().ToInternalValue();
101 void TraceEventImpl::SetThreadName(const char* thread_name
) {
102 base::PlatformThread::SetName(thread_name
);
107 const PPB_Trace_Event_Dev_0_1 g_ppb_trace_event_thunk_0_1
= {
108 &TraceEventImpl::GetCategoryEnabled
, &TraceEventImpl::AddTraceEvent
,
109 &TraceEventImpl::SetThreadName
, };
111 const PPB_Trace_Event_Dev_0_2 g_ppb_trace_event_thunk_0_2
= {
112 &TraceEventImpl::GetCategoryEnabled
,
113 &TraceEventImpl::AddTraceEvent
,
114 &TraceEventImpl::AddTraceEventWithThreadIdAndTimestamp
,
115 &TraceEventImpl::Now
,
116 &TraceEventImpl::SetThreadName
, };
125 const PPB_Trace_Event_Dev_0_1
* GetPPB_Trace_Event_Dev_0_1_Thunk() {
126 return &g_ppb_trace_event_thunk_0_1
;
129 const PPB_Trace_Event_Dev_0_2
* GetPPB_Trace_Event_Dev_0_2_Thunk() {
130 return &g_ppb_trace_event_thunk_0_2
;