blob: 95dd397042498e19cb4114737b47d2deecda44c5 [file] [log] [blame]
Elliott Hughesfc861622011-10-17 17:57:47 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "monitor.h"
18#include "object.h"
19#include "thread.h"
20
21#include <fcntl.h>
22#include <sys/stat.h>
23#include <sys/types.h>
24
25#include "cutils/log.h"
26
27#define EVENT_LOG_TAG_dvm_lock_sample 20003
28
29namespace art {
30
31static void Set4LE(uint8_t* buf, uint32_t val) {
32 *buf++ = (uint8_t)(val);
33 *buf++ = (uint8_t)(val >> 8);
34 *buf++ = (uint8_t)(val >> 16);
35 *buf = (uint8_t)(val >> 24);
36}
37
38static char* EventLogWriteInt(char* dst, int value) {
39 *dst++ = EVENT_TYPE_INT;
40 Set4LE((uint8_t*) dst, value);
41 return dst + 4;
42}
43
44static char* EventLogWriteString(char* dst, const char* value, size_t len) {
45 *dst++ = EVENT_TYPE_STRING;
46 len = len < 32 ? len : 32;
47 Set4LE((uint8_t*) dst, len);
48 dst += 4;
49 memcpy(dst, value, len);
50 return dst + len;
51}
52
53void Monitor::LogContentionEvent(Thread* self, uint32_t wait_ms, uint32_t sample_percent, const char* owner_filename, uint32_t owner_line_number) {
54 // Emit the event list length, 1 byte.
55 char eventBuffer[174];
56 char* cp = eventBuffer;
57 *cp++ = 9;
58
59 // Emit the process name, <= 37 bytes.
60 int fd = open("/proc/self/cmdline", O_RDONLY);
61 char procName[33];
62 memset(procName, 0, sizeof(procName));
63 read(fd, procName, sizeof(procName) - 1);
64 close(fd);
65 size_t len = strlen(procName);
66 cp = EventLogWriteString(cp, procName, len);
67
68 // Emit the sensitive thread ("main thread") status, 5 bytes.
69 cp = EventLogWriteInt(cp, Monitor::IsSensitiveThread());
70
71 // Emit self thread name string, <= 37 bytes.
72 std::string thread_name(self->GetName()->ToModifiedUtf8());
73 cp = EventLogWriteString(cp, thread_name.c_str(), thread_name.size());
74
75 // Emit the wait time, 5 bytes.
76 cp = EventLogWriteInt(cp, wait_ms);
77
78 // Emit the source code file name, <= 37 bytes.
79 const char* filename;
80 uint32_t line_number;
81 self->GetCurrentLocation(filename, line_number);
82 cp = EventLogWriteString(cp, filename, strlen(filename));
83
84 // Emit the source code line number, 5 bytes.
85 cp = EventLogWriteInt(cp, line_number);
86
87 // Emit the lock owner source code file name, <= 37 bytes.
88 if (owner_filename == NULL) {
89 owner_filename = "";
90 } else if (strcmp(filename, owner_filename) == 0) {
91 // Common case, so save on log space.
92 owner_filename = "-";
93 }
94 cp = EventLogWriteString(cp, owner_filename, strlen(owner_filename));
95
96 // Emit the source code line number, 5 bytes.
97 cp = EventLogWriteInt(cp, owner_line_number);
98
99 // Emit the sample percentage, 5 bytes.
100 cp = EventLogWriteInt(cp, sample_percent);
101
102 CHECK_LE((size_t)(cp - eventBuffer), sizeof(eventBuffer));
103 android_btWriteLog(EVENT_LOG_TAG_dvm_lock_sample, EVENT_TYPE_LIST, eventBuffer, (size_t)(cp - eventBuffer));
104}
105
106} // namespace art