blob: 7254ee084fb0ccf8f8b586ca0538e9f8f127f94f [file] [log] [blame]
Ben Murdoch8b112d22011-06-08 16:22:53 +01001// Copyright 2011 the V8 project authors. All rights reserved.
Iain Merrick9ac36c92010-09-13 15:29:50 +01002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Steve Blocka7e24c12009-10-30 11:49:00 +000027//
28// Tests of profiler-related functions from log.h
29
Steve Blocka7e24c12009-10-30 11:49:00 +000030#include <stdlib.h>
31
Ben Murdochb8a8cc12014-11-26 15:28:44 +000032#include "src/v8.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000033
Ben Murdochb8a8cc12014-11-26 15:28:44 +000034#include "src/api.h"
35#include "src/codegen.h"
36#include "src/disassembler.h"
37#include "src/isolate.h"
38#include "src/log.h"
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000039#include "src/profiler/sampler.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +000040#include "src/vm-state-inl.h"
41#include "test/cctest/cctest.h"
42#include "test/cctest/trace-extension.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000043
44using v8::Function;
45using v8::Local;
46using v8::Object;
47using v8::Script;
48using v8::String;
49using v8::Value;
50
51using v8::internal::byte;
52using v8::internal::Address;
53using v8::internal::Handle;
Steve Block44f0eee2011-05-26 01:26:41 +010054using v8::internal::Isolate;
Steve Blocka7e24c12009-10-30 11:49:00 +000055using v8::internal::JSFunction;
Steve Blocka7e24c12009-10-30 11:49:00 +000056using v8::internal::TickSample;
Steve Blocka7e24c12009-10-30 11:49:00 +000057
Steve Blocka7e24c12009-10-30 11:49:00 +000058
Ben Murdoche0cee9b2011-05-25 10:26:03 +010059static bool IsAddressWithinFuncCode(JSFunction* function, Address addr) {
60 i::Code* code = function->code();
61 return code->contains(addr);
62}
63
Ben Murdochb8a8cc12014-11-26 15:28:44 +000064
65static bool IsAddressWithinFuncCode(v8::Local<v8::Context> context,
66 const char* func_name,
67 Address addr) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000068 v8::Local<v8::Value> func =
69 context->Global()->Get(context, v8_str(func_name)).ToLocalChecked();
Ben Murdoche0cee9b2011-05-25 10:26:03 +010070 CHECK(func->IsFunction());
71 JSFunction* js_func = JSFunction::cast(*v8::Utils::OpenHandle(*func));
72 return IsAddressWithinFuncCode(js_func, addr);
Steve Blocka7e24c12009-10-30 11:49:00 +000073}
74
75
Iain Merrick9ac36c92010-09-13 15:29:50 +010076// This C++ function is called as a constructor, to grab the frame pointer
77// from the calling function. When this function runs, the stack contains
78// a C_Entry frame and a Construct frame above the calling function's frame.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000079static void construct_call(const v8::FunctionCallbackInfo<v8::Value>& args) {
80 i::Isolate* isolate = reinterpret_cast<i::Isolate*>(args.GetIsolate());
81 i::StackFrameIterator frame_iterator(isolate);
Iain Merrick9ac36c92010-09-13 15:29:50 +010082 CHECK(frame_iterator.frame()->is_exit());
83 frame_iterator.Advance();
84 CHECK(frame_iterator.frame()->is_construct());
85 frame_iterator.Advance();
86 i::StackFrame* calling_frame = frame_iterator.frame();
87 CHECK(calling_frame->is_java_script());
Steve Blocka7e24c12009-10-30 11:49:00 +000088
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000089 v8::Local<v8::Context> context = args.GetIsolate()->GetCurrentContext();
Iain Merrick9ac36c92010-09-13 15:29:50 +010090#if defined(V8_HOST_ARCH_32_BIT)
Kristian Monsen0d5e1162010-09-30 15:31:59 +010091 int32_t low_bits = reinterpret_cast<int32_t>(calling_frame->fp());
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000092 args.This()
93 ->Set(context, v8_str("low_bits"), v8_num(low_bits >> 1))
94 .FromJust();
Iain Merrick9ac36c92010-09-13 15:29:50 +010095#elif defined(V8_HOST_ARCH_64_BIT)
Kristian Monsen0d5e1162010-09-30 15:31:59 +010096 uint64_t fp = reinterpret_cast<uint64_t>(calling_frame->fp());
Ben Murdochf87a2032010-10-22 12:50:53 +010097 int32_t low_bits = static_cast<int32_t>(fp & 0xffffffff);
98 int32_t high_bits = static_cast<int32_t>(fp >> 32);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000099 args.This()->Set(context, v8_str("low_bits"), v8_num(low_bits)).FromJust();
100 args.This()->Set(context, v8_str("high_bits"), v8_num(high_bits)).FromJust();
Iain Merrick9ac36c92010-09-13 15:29:50 +0100101#else
102#error Host architecture is neither 32-bit nor 64-bit.
103#endif
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000104 args.GetReturnValue().Set(args.This());
Iain Merrick9ac36c92010-09-13 15:29:50 +0100105}
Steve Blocka7e24c12009-10-30 11:49:00 +0000106
Steve Blocka7e24c12009-10-30 11:49:00 +0000107
Iain Merrick9ac36c92010-09-13 15:29:50 +0100108// Use the API to create a JSFunction object that calls the above C++ function.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000109void CreateFramePointerGrabberConstructor(v8::Local<v8::Context> context,
110 const char* constructor_name) {
Iain Merrick9ac36c92010-09-13 15:29:50 +0100111 Local<v8::FunctionTemplate> constructor_template =
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000112 v8::FunctionTemplate::New(context->GetIsolate(), construct_call);
Iain Merrick9ac36c92010-09-13 15:29:50 +0100113 constructor_template->SetClassName(v8_str("FPGrabber"));
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000114 Local<Function> fun =
115 constructor_template->GetFunction(context).ToLocalChecked();
116 context->Global()->Set(context, v8_str(constructor_name), fun).FromJust();
Iain Merrick9ac36c92010-09-13 15:29:50 +0100117}
Steve Blocka7e24c12009-10-30 11:49:00 +0000118
119
120// Creates a global function named 'func_name' that calls the tracing
121// function 'trace_func_name' with an actual EBP register value,
Iain Merrick9ac36c92010-09-13 15:29:50 +0100122// encoded as one or two Smis.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000123static void CreateTraceCallerFunction(v8::Local<v8::Context> context,
124 const char* func_name,
Steve Blocka7e24c12009-10-30 11:49:00 +0000125 const char* trace_func_name) {
126 i::EmbeddedVector<char, 256> trace_call_buf;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000127 i::SNPrintF(trace_call_buf,
128 "function %s() {"
129 " fp = new FPGrabber();"
130 " %s(fp.low_bits, fp.high_bits);"
131 "}",
132 func_name, trace_func_name);
Iain Merrick9ac36c92010-09-13 15:29:50 +0100133
134 // Create the FPGrabber function, which grabs the caller's frame pointer
135 // when called as a constructor.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000136 CreateFramePointerGrabberConstructor(context, "FPGrabber");
Steve Blocka7e24c12009-10-30 11:49:00 +0000137
138 // Compile the script.
John Reck59135872010-11-02 12:39:01 -0700139 CompileRun(trace_call_buf.start());
Steve Blocka7e24c12009-10-30 11:49:00 +0000140}
141
142
Steve Block6ded16b2010-05-10 14:33:55 +0100143// This test verifies that stack tracing works when called during
144// execution of a native function called from JS code. In this case,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000145// TickSample::Trace uses Isolate::c_entry_fp as a starting point for stack
Steve Block6ded16b2010-05-10 14:33:55 +0100146// walking.
Steve Blocka7e24c12009-10-30 11:49:00 +0000147TEST(CFromJSStackTrace) {
Ben Murdoch8b112d22011-06-08 16:22:53 +0100148 // BUG(1303) Inlining of JSFuncDoTrace() in JSTrace below breaks this test.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000149 i::FLAG_turbo_inlining = false;
Ben Murdoch8b112d22011-06-08 16:22:53 +0100150 i::FLAG_use_inlining = false;
151
Steve Blocka7e24c12009-10-30 11:49:00 +0000152 TickSample sample;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000153 i::TraceExtension::InitTraceEnv(&sample);
Steve Blocka7e24c12009-10-30 11:49:00 +0000154
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000155 v8::HandleScope scope(CcTest::isolate());
156 v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
157 v8::Context::Scope context_scope(context);
158
Steve Block6ded16b2010-05-10 14:33:55 +0100159 // Create global function JSFuncDoTrace which calls
160 // extension function trace() with the current frame pointer value.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000161 CreateTraceCallerFunction(context, "JSFuncDoTrace", "trace");
Steve Block6ded16b2010-05-10 14:33:55 +0100162 Local<Value> result = CompileRun(
Steve Blocka7e24c12009-10-30 11:49:00 +0000163 "function JSTrace() {"
164 " JSFuncDoTrace();"
165 "};\n"
Steve Block6ded16b2010-05-10 14:33:55 +0100166 "JSTrace();\n"
167 "true;");
168 CHECK(!result.IsEmpty());
169 // When stack tracer is invoked, the stack should look as follows:
170 // script [JS]
171 // JSTrace() [JS]
172 // JSFuncDoTrace() [JS] [captures EBP value and encodes it as Smi]
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100173 // trace(EBP) [native (extension)]
Steve Block6ded16b2010-05-10 14:33:55 +0100174 // DoTrace(EBP) [native]
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000175 // TickSample::Trace
Ben Murdochb0fe1622011-05-05 13:52:32 +0100176
Steve Block44f0eee2011-05-26 01:26:41 +0100177 CHECK(sample.has_external_callback);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000178 CHECK_EQ(FUNCTION_ADDR(i::TraceExtension::Trace), sample.external_callback);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100179
Steve Block6ded16b2010-05-10 14:33:55 +0100180 // Stack tracing will start from the first JS function, i.e. "JSFuncDoTrace"
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000181 unsigned base = 0;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100182 CHECK_GT(sample.frames_count, base + 1);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100183
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000184 CHECK(IsAddressWithinFuncCode(
185 context, "JSFuncDoTrace", sample.stack[base + 0]));
186 CHECK(IsAddressWithinFuncCode(context, "JSTrace", sample.stack[base + 1]));
Steve Blocka7e24c12009-10-30 11:49:00 +0000187}
188
189
Steve Block6ded16b2010-05-10 14:33:55 +0100190// This test verifies that stack tracing works when called during
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000191// execution of JS code. However, as calling TickSample::Trace requires
Steve Block6ded16b2010-05-10 14:33:55 +0100192// entering native code, we can only emulate pure JS by erasing
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000193// Isolate::c_entry_fp value. In this case, TickSample::Trace uses passed frame
Steve Block6ded16b2010-05-10 14:33:55 +0100194// pointer value as a starting point for stack walking.
Steve Blocka7e24c12009-10-30 11:49:00 +0000195TEST(PureJSStackTrace) {
Ben Murdochb0fe1622011-05-05 13:52:32 +0100196 // This test does not pass with inlining enabled since inlined functions
197 // don't appear in the stack trace.
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000198 i::FLAG_turbo_inlining = false;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100199 i::FLAG_use_inlining = false;
200
Steve Blocka7e24c12009-10-30 11:49:00 +0000201 TickSample sample;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000202 i::TraceExtension::InitTraceEnv(&sample);
Steve Blocka7e24c12009-10-30 11:49:00 +0000203
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000204 v8::HandleScope scope(CcTest::isolate());
205 v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
206 v8::Context::Scope context_scope(context);
207
Steve Block6ded16b2010-05-10 14:33:55 +0100208 // Create global function JSFuncDoTrace which calls
209 // extension function js_trace() with the current frame pointer value.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000210 CreateTraceCallerFunction(context, "JSFuncDoTrace", "js_trace");
Steve Block6ded16b2010-05-10 14:33:55 +0100211 Local<Value> result = CompileRun(
Steve Blocka7e24c12009-10-30 11:49:00 +0000212 "function JSTrace() {"
213 " JSFuncDoTrace();"
214 "};\n"
215 "function OuterJSTrace() {"
216 " JSTrace();"
217 "};\n"
Steve Block6ded16b2010-05-10 14:33:55 +0100218 "OuterJSTrace();\n"
219 "true;");
220 CHECK(!result.IsEmpty());
221 // When stack tracer is invoked, the stack should look as follows:
222 // script [JS]
223 // OuterJSTrace() [JS]
224 // JSTrace() [JS]
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100225 // JSFuncDoTrace() [JS]
226 // js_trace(EBP) [native (extension)]
Steve Block6ded16b2010-05-10 14:33:55 +0100227 // DoTraceHideCEntryFPAddress(EBP) [native]
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000228 // TickSample::Trace
Steve Block6ded16b2010-05-10 14:33:55 +0100229 //
Ben Murdochb0fe1622011-05-05 13:52:32 +0100230
Steve Block44f0eee2011-05-26 01:26:41 +0100231 CHECK(sample.has_external_callback);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000232 CHECK_EQ(FUNCTION_ADDR(i::TraceExtension::JSTrace), sample.external_callback);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100233
Steve Blocka7e24c12009-10-30 11:49:00 +0000234 // Stack sampling will start from the caller of JSFuncDoTrace, i.e. "JSTrace"
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000235 unsigned base = 0;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100236 CHECK_GT(sample.frames_count, base + 1);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000237 CHECK(IsAddressWithinFuncCode(context, "JSTrace", sample.stack[base + 0]));
238 CHECK(IsAddressWithinFuncCode(
239 context, "OuterJSTrace", sample.stack[base + 1]));
Steve Blocka7e24c12009-10-30 11:49:00 +0000240}
241
242
Steve Blockd0582a62009-12-15 09:54:21 +0000243static void CFuncDoTrace(byte dummy_parameter) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000244 Address fp;
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400245#if V8_HAS_BUILTIN_FRAME_ADDRESS
Steve Blocka7e24c12009-10-30 11:49:00 +0000246 fp = reinterpret_cast<Address>(__builtin_frame_address(0));
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400247#elif V8_CC_MSVC
Steve Blockd0582a62009-12-15 09:54:21 +0000248 // Approximate a frame pointer address. We compile without base pointers,
249 // so we can't trust ebp/rbp.
250 fp = &dummy_parameter - 2 * sizeof(void*); // NOLINT
251#else
252#error Unexpected platform.
Steve Blocka7e24c12009-10-30 11:49:00 +0000253#endif
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000254 i::TraceExtension::DoTrace(fp);
Steve Blocka7e24c12009-10-30 11:49:00 +0000255}
256
257
258static int CFunc(int depth) {
259 if (depth <= 0) {
Steve Blockd0582a62009-12-15 09:54:21 +0000260 CFuncDoTrace(0);
Steve Blocka7e24c12009-10-30 11:49:00 +0000261 return 0;
262 } else {
263 return CFunc(depth - 1) + 1;
264 }
265}
266
267
Steve Block6ded16b2010-05-10 14:33:55 +0100268// This test verifies that stack tracing doesn't crash when called on
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000269// pure native code. TickSample::Trace only unrolls JS code, so we can't
Steve Block6ded16b2010-05-10 14:33:55 +0100270// get any meaningful info here.
Steve Blocka7e24c12009-10-30 11:49:00 +0000271TEST(PureCStackTrace) {
272 TickSample sample;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000273 i::TraceExtension::InitTraceEnv(&sample);
274 v8::HandleScope scope(CcTest::isolate());
275 v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
276 v8::Context::Scope context_scope(context);
Steve Blocka7e24c12009-10-30 11:49:00 +0000277 // Check that sampler doesn't crash
278 CHECK_EQ(10, CFunc(10));
279}
280
281
282TEST(JsEntrySp) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000283 v8::HandleScope scope(CcTest::isolate());
284 v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
285 v8::Context::Scope context_scope(context);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000286 CHECK(!i::TraceExtension::GetJsEntrySp());
Steve Blocka7e24c12009-10-30 11:49:00 +0000287 CompileRun("a = 1; b = a + 1;");
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000288 CHECK(!i::TraceExtension::GetJsEntrySp());
Steve Blocka7e24c12009-10-30 11:49:00 +0000289 CompileRun("js_entry_sp();");
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000290 CHECK(!i::TraceExtension::GetJsEntrySp());
Steve Blocka7e24c12009-10-30 11:49:00 +0000291 CompileRun("js_entry_sp_level2();");
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000292 CHECK(!i::TraceExtension::GetJsEntrySp());
Steve Blocka7e24c12009-10-30 11:49:00 +0000293}