trace-extension.cc 6.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// Copyright 2014 the V8 project authors. All rights reserved.
// 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.

28
#include "test/cctest/trace-extension.h"
29

30
#include "include/v8-profiler.h"
31
#include "src/objects/smi.h"
32
#include "src/vm-state-inl.h"
33
#include "test/cctest/cctest.h"
34 35 36 37 38 39 40 41 42 43 44

namespace v8 {
namespace internal {

const char* TraceExtension::kSource =
    "native function trace();"
    "native function js_trace();"
    "native function js_entry_sp();"
    "native function js_entry_sp_level2();";


45 46
v8::Local<v8::FunctionTemplate> TraceExtension::GetNativeFunctionTemplate(
    v8::Isolate* isolate, v8::Local<v8::String> name) {
47 48 49
  if (name->StrictEquals(
          v8::String::NewFromUtf8(isolate, "trace", v8::NewStringType::kNormal)
              .ToLocalChecked())) {
50
    return v8::FunctionTemplate::New(isolate, TraceExtension::Trace);
51 52 53 54
  } else if (name->StrictEquals(
                 v8::String::NewFromUtf8(isolate, "js_trace",
                                         v8::NewStringType::kNormal)
                     .ToLocalChecked())) {
55
    return v8::FunctionTemplate::New(isolate, TraceExtension::JSTrace);
56 57 58 59
  } else if (name->StrictEquals(
                 v8::String::NewFromUtf8(isolate, "js_entry_sp",
                                         v8::NewStringType::kNormal)
                     .ToLocalChecked())) {
60
    return v8::FunctionTemplate::New(isolate, TraceExtension::JSEntrySP);
61 62 63 64
  } else if (name->StrictEquals(
                 v8::String::NewFromUtf8(isolate, "js_entry_sp_level2",
                                         v8::NewStringType::kNormal)
                     .ToLocalChecked())) {
65 66
    return v8::FunctionTemplate::New(isolate, TraceExtension::JSEntrySPLevel2);
  }
67
  UNREACHABLE();
68 69 70 71 72 73 74 75 76
}


Address TraceExtension::GetFP(const v8::FunctionCallbackInfo<v8::Value>& args) {
  // 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)
  Address fp = *reinterpret_cast<Address*>(*args[0]);
#elif defined(V8_HOST_ARCH_64_BIT)
77 78 79
  uint64_t kSmiValueMask =
      (static_cast<uintptr_t>(1) << (kSmiValueSize - 1)) - 1;
  uint64_t low_bits =
80
      Smi(*reinterpret_cast<Address*>(*args[0]))->value() & kSmiValueMask;
81
  uint64_t high_bits =
82
      Smi(*reinterpret_cast<Address*>(*args[1]))->value() & kSmiValueMask;
83 84
  Address fp =
      static_cast<Address>((high_bits << (kSmiValueSize - 1)) | low_bits);
85 86 87
#else
#error Host architecture is neither 32-bit nor 64-bit.
#endif
88
  printf("Trace: %p\n", reinterpret_cast<void*>(fp));
89 90 91
  return fp;
}

92
static struct { v8::TickSample* sample; } trace_env = {nullptr};
93

94
void TraceExtension::InitTraceEnv(v8::TickSample* sample) {
95 96 97 98 99 100
  trace_env.sample = sample;
}


void TraceExtension::DoTrace(Address fp) {
  RegisterState regs;
101
  regs.fp = reinterpret_cast<void*>(fp);
102
  // sp is only used to define stack high bound
103 104
  regs.sp = reinterpret_cast<void*>(
      reinterpret_cast<Address>(trace_env.sample) - 10240);
105 106
  trace_env.sample->Init(CcTest::isolate(), regs,
                         v8::TickSample::kSkipCEntryFrame, true);
107 108 109 110
}


void TraceExtension::Trace(const v8::FunctionCallbackInfo<v8::Value>& args) {
111 112
  i::Isolate* isolate = reinterpret_cast<i::Isolate*>(args.GetIsolate());
  i::VMState<EXTERNAL> state(isolate);
113
  Address address = reinterpret_cast<Address>(&TraceExtension::Trace);
114
  i::ExternalCallbackScope call_scope(isolate, address);
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
  DoTrace(GetFP(args));
}


// Hide c_entry_fp to emulate situation when sampling is done while
// pure JS code is being executed
static void DoTraceHideCEntryFPAddress(Address fp) {
  v8::internal::Address saved_c_frame_fp =
      *(CcTest::i_isolate()->c_entry_fp_address());
  CHECK(saved_c_frame_fp);
  *(CcTest::i_isolate()->c_entry_fp_address()) = 0;
  i::TraceExtension::DoTrace(fp);
  *(CcTest::i_isolate()->c_entry_fp_address()) = saved_c_frame_fp;
}


void TraceExtension::JSTrace(const v8::FunctionCallbackInfo<v8::Value>& args) {
132 133
  i::Isolate* isolate = reinterpret_cast<i::Isolate*>(args.GetIsolate());
  i::VMState<EXTERNAL> state(isolate);
134
  Address address = reinterpret_cast<Address>(&TraceExtension::JSTrace);
135
  i::ExternalCallbackScope call_scope(isolate, address);
136 137 138 139 140
  DoTraceHideCEntryFPAddress(GetFP(args));
}


Address TraceExtension::GetJsEntrySp() {
141
  CHECK(CcTest::i_isolate()->thread_local_top());
142 143 144 145 146 147
  return CcTest::i_isolate()->js_entry_sp();
}


void TraceExtension::JSEntrySP(
    const v8::FunctionCallbackInfo<v8::Value>& args) {
148
  CHECK(GetJsEntrySp());
149 150 151 152 153 154 155
}


void TraceExtension::JSEntrySPLevel2(
    const v8::FunctionCallbackInfo<v8::Value>& args) {
  v8::HandleScope scope(args.GetIsolate());
  const Address js_entry_sp = GetJsEntrySp();
156
  CHECK(js_entry_sp);
157 158 159 160 161
  CompileRun("js_entry_sp();");
  CHECK_EQ(js_entry_sp, GetJsEntrySp());
}


162 163
}  // namespace internal
}  // namespace v8