2011-04-07 14:42:37 +00:00
|
|
|
// Copyright 2011 the V8 project authors. All rights reserved.
|
2010-09-01 13:13:31 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2009-02-25 16:00:21 +00:00
|
|
|
//
|
|
|
|
// Tests of profiler-related functions from log.h
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "v8.h"
|
|
|
|
|
2011-02-22 16:31:24 +00:00
|
|
|
#include "api.h"
|
2009-02-25 16:00:21 +00:00
|
|
|
#include "cctest.h"
|
2013-07-03 15:39:18 +00:00
|
|
|
#include "codegen.h"
|
2009-05-07 09:24:43 +00:00
|
|
|
#include "disassembler.h"
|
2013-07-03 15:39:18 +00:00
|
|
|
#include "isolate.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "sampler.h"
|
2010-12-07 11:31:57 +00:00
|
|
|
#include "vm-state-inl.h"
|
2009-02-25 16:00:21 +00:00
|
|
|
|
|
|
|
using v8::Function;
|
|
|
|
using v8::Local;
|
|
|
|
using v8::Object;
|
|
|
|
using v8::Script;
|
|
|
|
using v8::String;
|
|
|
|
using v8::Value;
|
|
|
|
|
|
|
|
using v8::internal::byte;
|
2009-05-07 09:24:43 +00:00
|
|
|
using v8::internal::Address;
|
2009-02-25 16:00:21 +00:00
|
|
|
using v8::internal::Handle;
|
2011-03-18 20:35:07 +00:00
|
|
|
using v8::internal::Isolate;
|
2009-02-25 16:00:21 +00:00
|
|
|
using v8::internal::JSFunction;
|
2013-07-03 16:20:59 +00:00
|
|
|
using v8::internal::RegisterState;
|
2009-02-25 16:00:21 +00:00
|
|
|
using v8::internal::TickSample;
|
|
|
|
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
TickSample* sample;
|
2009-06-02 09:33:17 +00:00
|
|
|
} trace_env = { NULL };
|
2009-02-25 16:00:21 +00:00
|
|
|
|
|
|
|
|
2009-06-02 09:33:17 +00:00
|
|
|
static void InitTraceEnv(TickSample* sample) {
|
2009-02-25 16:00:21 +00:00
|
|
|
trace_env.sample = sample;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-05-07 09:24:43 +00:00
|
|
|
static void DoTrace(Address fp) {
|
2013-07-03 16:20:59 +00:00
|
|
|
RegisterState regs;
|
|
|
|
regs.fp = fp;
|
2009-03-20 14:49:12 +00:00
|
|
|
// sp is only used to define stack high bound
|
2013-07-03 16:20:59 +00:00
|
|
|
regs.sp =
|
Fix issue 553: function frame is skipped in profile when compare stub is called.
The problem appeared due to a fact that stubs doesn't create a stack
frame, reusing the stack frame of the caller function. When building
stack traces, the current function is retrieved from PC, and its
callees are retrieved by traversing the stack backwards. Thus, for
stubs, the stub itself was discovered via PC, and then stub's caller's
caller was retrieved from stack.
To fix this problem, a pointer to JSFunction object is now captured
from the topmost stack frame, and is saved into stack trace log
record. Then a simple heuristics is applied whether a referred
function should be added to decoded stack, or not, to avoid reporting
the same function twice (from PC and from the pointer.)
BUG=553
TEST=added to mjsunit/tools/tickprocessor
Review URL: http://codereview.chromium.org/546089
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3673 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2010-01-21 16:42:41 +00:00
|
|
|
reinterpret_cast<Address>(trace_env.sample) - 10240;
|
2013-09-19 09:17:13 +00:00
|
|
|
trace_env.sample->Init(CcTest::i_isolate(), regs);
|
2009-02-25 16:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-20 14:49:12 +00:00
|
|
|
// Hide c_entry_fp to emulate situation when sampling is done while
|
|
|
|
// pure JS code is being executed
|
2009-05-07 09:24:43 +00:00
|
|
|
static void DoTraceHideCEntryFPAddress(Address fp) {
|
2011-03-18 20:35:07 +00:00
|
|
|
v8::internal::Address saved_c_frame_fp =
|
2013-09-19 09:17:13 +00:00
|
|
|
*(CcTest::i_isolate()->c_entry_fp_address());
|
2009-03-20 14:49:12 +00:00
|
|
|
CHECK(saved_c_frame_fp);
|
2013-09-19 09:17:13 +00:00
|
|
|
*(CcTest::i_isolate()->c_entry_fp_address()) = 0;
|
2009-02-25 16:00:21 +00:00
|
|
|
DoTrace(fp);
|
2013-09-19 09:17:13 +00:00
|
|
|
*(CcTest::i_isolate()->c_entry_fp_address()) = saved_c_frame_fp;
|
2009-02-25 16:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// --- T r a c e E x t e n s i o n ---
|
|
|
|
|
|
|
|
class TraceExtension : public v8::Extension {
|
|
|
|
public:
|
|
|
|
TraceExtension() : v8::Extension("v8/trace", kSource) { }
|
|
|
|
virtual v8::Handle<v8::FunctionTemplate> GetNativeFunction(
|
2009-03-20 14:49:12 +00:00
|
|
|
v8::Handle<String> name);
|
2013-06-20 12:28:27 +00:00
|
|
|
static void Trace(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
static void JSTrace(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
static void JSEntrySP(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|
|
static void JSEntrySPLevel2(const v8::FunctionCallbackInfo<v8::Value>& args);
|
2009-02-25 16:00:21 +00:00
|
|
|
private:
|
2013-06-20 12:28:27 +00:00
|
|
|
static Address GetFP(const v8::FunctionCallbackInfo<v8::Value>& args);
|
2009-02-25 16:00:21 +00:00
|
|
|
static const char* kSource;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-03-20 14:49:12 +00:00
|
|
|
const char* TraceExtension::kSource =
|
|
|
|
"native function trace();"
|
2009-06-02 09:33:17 +00:00
|
|
|
"native function js_trace();"
|
|
|
|
"native function js_entry_sp();"
|
|
|
|
"native function js_entry_sp_level2();";
|
2009-02-25 16:00:21 +00:00
|
|
|
|
|
|
|
v8::Handle<v8::FunctionTemplate> TraceExtension::GetNativeFunction(
|
2009-03-20 14:49:12 +00:00
|
|
|
v8::Handle<String> name) {
|
|
|
|
if (name->Equals(String::New("trace"))) {
|
|
|
|
return v8::FunctionTemplate::New(TraceExtension::Trace);
|
|
|
|
} else if (name->Equals(String::New("js_trace"))) {
|
|
|
|
return v8::FunctionTemplate::New(TraceExtension::JSTrace);
|
2009-06-02 09:33:17 +00:00
|
|
|
} else if (name->Equals(String::New("js_entry_sp"))) {
|
|
|
|
return v8::FunctionTemplate::New(TraceExtension::JSEntrySP);
|
|
|
|
} else if (name->Equals(String::New("js_entry_sp_level2"))) {
|
|
|
|
return v8::FunctionTemplate::New(TraceExtension::JSEntrySPLevel2);
|
2009-03-20 14:49:12 +00:00
|
|
|
} else {
|
|
|
|
CHECK(false);
|
|
|
|
return v8::Handle<v8::FunctionTemplate>();
|
|
|
|
}
|
2009-02-25 16:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 12:28:27 +00:00
|
|
|
Address TraceExtension::GetFP(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2010-09-01 13:13:31 +00:00
|
|
|
// Convert frame pointer from encoding as smis in the arguments to a pointer.
|
|
|
|
CHECK_EQ(2, args.Length()); // Ignore second argument on 32-bit platform.
|
|
|
|
#if defined(V8_HOST_ARCH_32_BIT)
|
2009-07-31 11:07:05 +00:00
|
|
|
Address fp = *reinterpret_cast<Address*>(*args[0]);
|
2010-09-01 13:13:31 +00:00
|
|
|
#elif defined(V8_HOST_ARCH_64_BIT)
|
|
|
|
int64_t low_bits = *reinterpret_cast<uint64_t*>(*args[0]) >> 32;
|
|
|
|
int64_t high_bits = *reinterpret_cast<uint64_t*>(*args[1]);
|
|
|
|
Address fp = reinterpret_cast<Address>(high_bits | low_bits);
|
|
|
|
#else
|
|
|
|
#error Host architecture is neither 32-bit nor 64-bit.
|
|
|
|
#endif
|
2009-05-07 09:24:43 +00:00
|
|
|
printf("Trace: %p\n", fp);
|
2009-03-20 14:49:12 +00:00
|
|
|
return fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 12:28:27 +00:00
|
|
|
void TraceExtension::Trace(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2009-03-20 14:49:12 +00:00
|
|
|
DoTrace(GetFP(args));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 12:28:27 +00:00
|
|
|
void TraceExtension::JSTrace(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2009-03-20 14:49:12 +00:00
|
|
|
DoTraceHideCEntryFPAddress(GetFP(args));
|
2009-02-25 16:00:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-02 09:33:17 +00:00
|
|
|
static Address GetJsEntrySp() {
|
2013-09-19 09:17:13 +00:00
|
|
|
CHECK_NE(NULL, CcTest::i_isolate()->thread_local_top());
|
|
|
|
return CcTest::i_isolate()->js_entry_sp();
|
2009-06-02 09:33:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 12:28:27 +00:00
|
|
|
void TraceExtension::JSEntrySP(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2009-06-02 09:33:17 +00:00
|
|
|
CHECK_NE(0, GetJsEntrySp());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 12:28:27 +00:00
|
|
|
void TraceExtension::JSEntrySPLevel2(
|
|
|
|
const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2013-03-15 12:06:53 +00:00
|
|
|
v8::HandleScope scope(args.GetIsolate());
|
2009-06-02 09:33:17 +00:00
|
|
|
const Address js_entry_sp = GetJsEntrySp();
|
|
|
|
CHECK_NE(0, js_entry_sp);
|
|
|
|
CompileRun("js_entry_sp();");
|
|
|
|
CHECK_EQ(js_entry_sp, GetJsEntrySp());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-25 16:00:21 +00:00
|
|
|
static TraceExtension kTraceExtension;
|
|
|
|
v8::DeclareExtension kTraceExtensionDeclaration(&kTraceExtension);
|
|
|
|
|
|
|
|
|
2011-02-22 16:31:24 +00:00
|
|
|
static bool IsAddressWithinFuncCode(JSFunction* function, Address addr) {
|
|
|
|
i::Code* code = function->code();
|
|
|
|
return code->contains(addr);
|
|
|
|
}
|
|
|
|
|
2013-07-05 09:52:11 +00:00
|
|
|
|
2013-09-19 13:30:47 +00:00
|
|
|
static bool IsAddressWithinFuncCode(v8::Local<v8::Context> context,
|
|
|
|
const char* func_name,
|
|
|
|
Address addr) {
|
|
|
|
v8::Local<v8::Value> func = context->Global()->Get(v8_str(func_name));
|
2011-02-22 16:31:24 +00:00
|
|
|
CHECK(func->IsFunction());
|
|
|
|
JSFunction* js_func = JSFunction::cast(*v8::Utils::OpenHandle(*func));
|
|
|
|
return IsAddressWithinFuncCode(js_func, addr);
|
2009-05-07 09:24:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-01 13:13:31 +00:00
|
|
|
// This C++ function is called as a constructor, to grab the frame pointer
|
|
|
|
// from the calling function. When this function runs, the stack contains
|
|
|
|
// a C_Entry frame and a Construct frame above the calling function's frame.
|
2013-06-20 12:28:27 +00:00
|
|
|
static void construct_call(const v8::FunctionCallbackInfo<v8::Value>& args) {
|
2013-02-15 09:27:10 +00:00
|
|
|
i::Isolate* isolate = reinterpret_cast<i::Isolate*>(args.GetIsolate());
|
|
|
|
i::StackFrameIterator frame_iterator(isolate);
|
2010-09-01 13:13:31 +00:00
|
|
|
CHECK(frame_iterator.frame()->is_exit());
|
|
|
|
frame_iterator.Advance();
|
|
|
|
CHECK(frame_iterator.frame()->is_construct());
|
|
|
|
frame_iterator.Advance();
|
|
|
|
i::StackFrame* calling_frame = frame_iterator.frame();
|
|
|
|
CHECK(calling_frame->is_java_script());
|
|
|
|
|
|
|
|
#if defined(V8_HOST_ARCH_32_BIT)
|
2010-09-22 13:57:00 +00:00
|
|
|
int32_t low_bits = reinterpret_cast<int32_t>(calling_frame->fp());
|
2010-09-01 13:13:31 +00:00
|
|
|
args.This()->Set(v8_str("low_bits"), v8_num(low_bits >> 1));
|
|
|
|
#elif defined(V8_HOST_ARCH_64_BIT)
|
2010-09-22 13:57:00 +00:00
|
|
|
uint64_t fp = reinterpret_cast<uint64_t>(calling_frame->fp());
|
2010-09-30 07:22:53 +00:00
|
|
|
int32_t low_bits = static_cast<int32_t>(fp & 0xffffffff);
|
|
|
|
int32_t high_bits = static_cast<int32_t>(fp >> 32);
|
2010-09-01 13:13:31 +00:00
|
|
|
args.This()->Set(v8_str("low_bits"), v8_num(low_bits));
|
|
|
|
args.This()->Set(v8_str("high_bits"), v8_num(high_bits));
|
|
|
|
#else
|
|
|
|
#error Host architecture is neither 32-bit nor 64-bit.
|
|
|
|
#endif
|
2013-06-20 12:28:27 +00:00
|
|
|
args.GetReturnValue().Set(args.This());
|
2010-09-01 13:13:31 +00:00
|
|
|
}
|
2009-05-07 09:24:43 +00:00
|
|
|
|
|
|
|
|
2010-09-01 13:13:31 +00:00
|
|
|
// Use the API to create a JSFunction object that calls the above C++ function.
|
2013-09-19 13:30:47 +00:00
|
|
|
void CreateFramePointerGrabberConstructor(v8::Local<v8::Context> context,
|
|
|
|
const char* constructor_name) {
|
2010-09-01 13:13:31 +00:00
|
|
|
Local<v8::FunctionTemplate> constructor_template =
|
|
|
|
v8::FunctionTemplate::New(construct_call);
|
|
|
|
constructor_template->SetClassName(v8_str("FPGrabber"));
|
|
|
|
Local<Function> fun = constructor_template->GetFunction();
|
2013-09-19 13:30:47 +00:00
|
|
|
context->Global()->Set(v8_str(constructor_name), fun);
|
2010-09-01 13:13:31 +00:00
|
|
|
}
|
2009-05-07 09:24:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Creates a global function named 'func_name' that calls the tracing
|
|
|
|
// function 'trace_func_name' with an actual EBP register value,
|
2010-09-01 13:13:31 +00:00
|
|
|
// encoded as one or two Smis.
|
2013-09-19 13:30:47 +00:00
|
|
|
static void CreateTraceCallerFunction(v8::Local<v8::Context> context,
|
|
|
|
const char* func_name,
|
2009-05-07 09:24:43 +00:00
|
|
|
const char* trace_func_name) {
|
|
|
|
i::EmbeddedVector<char, 256> trace_call_buf;
|
2010-09-01 13:13:31 +00:00
|
|
|
i::OS::SNPrintF(trace_call_buf,
|
2010-10-21 14:19:07 +00:00
|
|
|
"function %s() {"
|
|
|
|
" fp = new FPGrabber();"
|
|
|
|
" %s(fp.low_bits, fp.high_bits);"
|
|
|
|
"}",
|
|
|
|
func_name, trace_func_name);
|
2010-09-01 13:13:31 +00:00
|
|
|
|
|
|
|
// Create the FPGrabber function, which grabs the caller's frame pointer
|
|
|
|
// when called as a constructor.
|
2013-09-19 13:30:47 +00:00
|
|
|
CreateFramePointerGrabberConstructor(context, "FPGrabber");
|
2009-05-07 09:24:43 +00:00
|
|
|
|
|
|
|
// Compile the script.
|
2010-10-21 14:19:07 +00:00
|
|
|
CompileRun(trace_call_buf.start());
|
2009-05-07 09:24:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-24 08:46:17 +00:00
|
|
|
// This test verifies that stack tracing works when called during
|
|
|
|
// execution of a native function called from JS code. In this case,
|
2013-04-17 07:53:12 +00:00
|
|
|
// TickSample::Trace uses Isolate::c_entry_fp as a starting point for stack
|
2010-03-24 08:46:17 +00:00
|
|
|
// walking.
|
2009-05-07 09:24:43 +00:00
|
|
|
TEST(CFromJSStackTrace) {
|
2011-04-04 15:03:34 +00:00
|
|
|
// BUG(1303) Inlining of JSFuncDoTrace() in JSTrace below breaks this test.
|
|
|
|
i::FLAG_use_inlining = false;
|
2012-03-21 09:23:09 +00:00
|
|
|
|
2009-05-07 09:24:43 +00:00
|
|
|
TickSample sample;
|
2009-06-02 09:33:17 +00:00
|
|
|
InitTraceEnv(&sample);
|
2009-05-07 09:24:43 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2013-09-19 13:30:47 +00:00
|
|
|
v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
|
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
|
2010-03-24 08:46:17 +00:00
|
|
|
// Create global function JSFuncDoTrace which calls
|
|
|
|
// extension function trace() with the current frame pointer value.
|
2013-09-19 13:30:47 +00:00
|
|
|
CreateTraceCallerFunction(context, "JSFuncDoTrace", "trace");
|
2010-03-23 12:42:47 +00:00
|
|
|
Local<Value> result = CompileRun(
|
2009-05-07 09:24:43 +00:00
|
|
|
"function JSTrace() {"
|
|
|
|
" JSFuncDoTrace();"
|
|
|
|
"};\n"
|
2010-03-23 12:42:47 +00:00
|
|
|
"JSTrace();\n"
|
|
|
|
"true;");
|
|
|
|
CHECK(!result.IsEmpty());
|
2010-03-24 08:46:17 +00:00
|
|
|
// When stack tracer is invoked, the stack should look as follows:
|
|
|
|
// script [JS]
|
|
|
|
// JSTrace() [JS]
|
|
|
|
// JSFuncDoTrace() [JS] [captures EBP value and encodes it as Smi]
|
2010-09-16 08:23:34 +00:00
|
|
|
// trace(EBP) [native (extension)]
|
2010-03-24 08:46:17 +00:00
|
|
|
// DoTrace(EBP) [native]
|
2013-04-17 07:53:12 +00:00
|
|
|
// TickSample::Trace
|
2010-12-07 11:31:57 +00:00
|
|
|
|
2013-04-19 11:55:01 +00:00
|
|
|
CHECK(sample.has_external_callback);
|
2011-03-21 18:13:27 +00:00
|
|
|
CHECK_EQ(FUNCTION_ADDR(TraceExtension::Trace), sample.external_callback);
|
2010-12-07 11:31:57 +00:00
|
|
|
|
2010-03-24 08:46:17 +00:00
|
|
|
// Stack tracing will start from the first JS function, i.e. "JSFuncDoTrace"
|
2011-03-21 18:13:27 +00:00
|
|
|
int base = 0;
|
2010-12-07 11:31:57 +00:00
|
|
|
CHECK_GT(sample.frames_count, base + 1);
|
2012-03-19 15:54:37 +00:00
|
|
|
|
2013-09-19 13:30:47 +00:00
|
|
|
CHECK(IsAddressWithinFuncCode(
|
|
|
|
context, "JSFuncDoTrace", sample.stack[base + 0]));
|
|
|
|
CHECK(IsAddressWithinFuncCode(context, "JSTrace", sample.stack[base + 1]));
|
2009-05-07 09:24:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-24 08:46:17 +00:00
|
|
|
// This test verifies that stack tracing works when called during
|
2013-04-17 07:53:12 +00:00
|
|
|
// execution of JS code. However, as calling TickSample::Trace requires
|
2010-03-24 08:46:17 +00:00
|
|
|
// entering native code, we can only emulate pure JS by erasing
|
2013-04-17 07:53:12 +00:00
|
|
|
// Isolate::c_entry_fp value. In this case, TickSample::Trace uses passed frame
|
2010-03-24 08:46:17 +00:00
|
|
|
// pointer value as a starting point for stack walking.
|
2009-05-07 09:24:43 +00:00
|
|
|
TEST(PureJSStackTrace) {
|
2010-12-07 11:31:57 +00:00
|
|
|
// This test does not pass with inlining enabled since inlined functions
|
|
|
|
// don't appear in the stack trace.
|
|
|
|
i::FLAG_use_inlining = false;
|
|
|
|
|
2009-05-07 09:24:43 +00:00
|
|
|
TickSample sample;
|
2009-06-02 09:33:17 +00:00
|
|
|
InitTraceEnv(&sample);
|
2009-05-07 09:24:43 +00:00
|
|
|
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2013-09-19 13:30:47 +00:00
|
|
|
v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
|
|
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
|
2010-03-24 08:46:17 +00:00
|
|
|
// Create global function JSFuncDoTrace which calls
|
|
|
|
// extension function js_trace() with the current frame pointer value.
|
2013-09-19 13:30:47 +00:00
|
|
|
CreateTraceCallerFunction(context, "JSFuncDoTrace", "js_trace");
|
2010-03-23 12:42:47 +00:00
|
|
|
Local<Value> result = CompileRun(
|
2009-05-07 09:24:43 +00:00
|
|
|
"function JSTrace() {"
|
|
|
|
" JSFuncDoTrace();"
|
|
|
|
"};\n"
|
|
|
|
"function OuterJSTrace() {"
|
|
|
|
" JSTrace();"
|
|
|
|
"};\n"
|
2010-03-23 12:42:47 +00:00
|
|
|
"OuterJSTrace();\n"
|
|
|
|
"true;");
|
|
|
|
CHECK(!result.IsEmpty());
|
2010-03-24 08:46:17 +00:00
|
|
|
// When stack tracer is invoked, the stack should look as follows:
|
|
|
|
// script [JS]
|
|
|
|
// OuterJSTrace() [JS]
|
|
|
|
// JSTrace() [JS]
|
2010-09-16 08:23:34 +00:00
|
|
|
// JSFuncDoTrace() [JS]
|
|
|
|
// js_trace(EBP) [native (extension)]
|
2010-03-24 08:46:17 +00:00
|
|
|
// DoTraceHideCEntryFPAddress(EBP) [native]
|
2013-04-17 07:53:12 +00:00
|
|
|
// TickSample::Trace
|
2010-03-24 08:46:17 +00:00
|
|
|
//
|
2010-12-07 11:31:57 +00:00
|
|
|
|
2013-04-19 11:55:01 +00:00
|
|
|
CHECK(sample.has_external_callback);
|
2011-03-21 18:13:27 +00:00
|
|
|
CHECK_EQ(FUNCTION_ADDR(TraceExtension::JSTrace), sample.external_callback);
|
2010-12-07 11:31:57 +00:00
|
|
|
|
2009-05-07 09:24:43 +00:00
|
|
|
// Stack sampling will start from the caller of JSFuncDoTrace, i.e. "JSTrace"
|
2011-03-21 18:13:27 +00:00
|
|
|
int base = 0;
|
2010-12-07 11:31:57 +00:00
|
|
|
CHECK_GT(sample.frames_count, base + 1);
|
2013-09-19 13:30:47 +00:00
|
|
|
CHECK(IsAddressWithinFuncCode(context, "JSTrace", sample.stack[base + 0]));
|
|
|
|
CHECK(IsAddressWithinFuncCode(
|
|
|
|
context, "OuterJSTrace", sample.stack[base + 1]));
|
2009-05-07 09:24:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-27 08:50:24 +00:00
|
|
|
static void CFuncDoTrace(byte dummy_parameter) {
|
2009-05-07 09:24:43 +00:00
|
|
|
Address fp;
|
2009-03-20 14:49:12 +00:00
|
|
|
#ifdef __GNUC__
|
2009-05-07 09:24:43 +00:00
|
|
|
fp = reinterpret_cast<Address>(__builtin_frame_address(0));
|
2009-10-27 08:50:24 +00:00
|
|
|
#elif defined _MSC_VER
|
|
|
|
// Approximate a frame pointer address. We compile without base pointers,
|
|
|
|
// so we can't trust ebp/rbp.
|
2009-10-27 13:26:22 +00:00
|
|
|
fp = &dummy_parameter - 2 * sizeof(void*); // NOLINT
|
2009-10-27 08:50:24 +00:00
|
|
|
#else
|
|
|
|
#error Unexpected platform.
|
2009-03-20 14:49:12 +00:00
|
|
|
#endif
|
|
|
|
DoTrace(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int CFunc(int depth) {
|
|
|
|
if (depth <= 0) {
|
2009-10-27 08:50:24 +00:00
|
|
|
CFuncDoTrace(0);
|
2009-03-20 14:49:12 +00:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return CFunc(depth - 1) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-24 08:46:17 +00:00
|
|
|
// This test verifies that stack tracing doesn't crash when called on
|
2013-04-17 07:53:12 +00:00
|
|
|
// pure native code. TickSample::Trace only unrolls JS code, so we can't
|
2010-03-24 08:46:17 +00:00
|
|
|
// get any meaningful info here.
|
2009-03-20 14:49:12 +00:00
|
|
|
TEST(PureCStackTrace) {
|
|
|
|
TickSample sample;
|
2009-06-02 09:33:17 +00:00
|
|
|
InitTraceEnv(&sample);
|
2013-09-19 13:30:47 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
|
|
|
v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
|
|
|
|
v8::Context::Scope context_scope(context);
|
2009-03-20 14:49:12 +00:00
|
|
|
// Check that sampler doesn't crash
|
|
|
|
CHECK_EQ(10, CFunc(10));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-02 09:33:17 +00:00
|
|
|
TEST(JsEntrySp) {
|
2013-04-10 08:29:39 +00:00
|
|
|
v8::HandleScope scope(CcTest::isolate());
|
2013-09-19 13:30:47 +00:00
|
|
|
v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
|
|
|
|
v8::Context::Scope context_scope(context);
|
2009-06-02 09:33:17 +00:00
|
|
|
CHECK_EQ(0, GetJsEntrySp());
|
|
|
|
CompileRun("a = 1; b = a + 1;");
|
|
|
|
CHECK_EQ(0, GetJsEntrySp());
|
|
|
|
CompileRun("js_entry_sp();");
|
|
|
|
CHECK_EQ(0, GetJsEntrySp());
|
|
|
|
CompileRun("js_entry_sp_level2();");
|
|
|
|
CHECK_EQ(0, GetJsEntrySp());
|
|
|
|
}
|