Reviewers: Erik Corry,

Description:
Fix Solaris build

Please review this at http://codereview.chromium.org/5968004/

Affected files:
  M src/platform-solaris.cc
  M src/utils.h
  M src/v8utils.h


Index: src/platform-solaris.cc
diff --git a/src/platform-solaris.cc b/src/platform-solaris.cc
index f84e80d1f5bbb29a9870111fbab98b3b8611d4c0..b302c596cf6a4e0eb2c6ed3730d695bd82f3b5c4 100644
--- a/src/platform-solaris.cc
+++ b/src/platform-solaris.cc
@@ -45,6 +45,7 @@
 #include <errno.h>
 #include <ieeefp.h>  // finite()
 #include <signal.h>  // sigemptyset(), etc
+#include <sys/kdi_regs.h>


 #undef MAP_TYPE
@@ -481,6 +482,16 @@ class SolarisMutex : public Mutex {

   int Unlock() { return pthread_mutex_unlock(&mutex_); }

+  virtual bool TryLock() {
+    int result = pthread_mutex_trylock(&mutex_);
+    // Return false if the lock is busy and locking failed.
+    if (result == EBUSY) {
+      return false;
+    }
+    ASSERT(result == 0);  // Verify no other errors.
+    return true;
+  }
+
  private:
   pthread_mutex_t mutex_;
 };
@@ -572,21 +583,37 @@ Semaphore* OS::CreateSemaphore(int count) {
 #ifdef ENABLE_LOGGING_AND_PROFILING

 static Sampler* active_sampler_ = NULL;
+static pthread_t vm_tid_ = 0;
+

static void ProfilerSignalHandler(int signal, siginfo_t* info, void* context) {
   USE(info);
   if (signal != SIGPROF) return;
-  if (active_sampler_ == NULL) return;
-
-  TickSample sample;
-  sample.pc = 0;
-  sample.sp = 0;
-  sample.fp = 0;
-
-  // We always sample the VM state.
-  sample.state = VMState::current_state();
-
-  active_sampler_->Tick(&sample);
+  if (active_sampler_ == NULL || !active_sampler_->IsActive()) return;
+  if (vm_tid_ != pthread_self()) return;
+
+  TickSample sample_obj;
+  TickSample* sample = CpuProfiler::TickSampleEvent();
+  if (sample == NULL) sample = &sample_obj;
+
+  // Extracting the sample from the context is extremely machine dependent.
+  ucontext_t* ucontext = reinterpret_cast<ucontext_t*>(context);
+  mcontext_t& mcontext = ucontext->uc_mcontext;
+  sample->state = Top::current_vm_state();
+
+#if V8_HOST_ARCH_IA32
+  sample->pc = reinterpret_cast<Address>(mcontext.gregs[KDIREG_EIP]);
+  sample->sp = reinterpret_cast<Address>(mcontext.gregs[KDIREG_ESP]);
+  sample->fp = reinterpret_cast<Address>(mcontext.gregs[KDIREG_EBP]);
+#elif V8_HOST_ARCH_X64
+  sample->pc = reinterpret_cast<Address>(mcontext.gregs[KDIREG_RIP]);
+  sample->sp = reinterpret_cast<Address>(mcontext.gregs[KDIREG_RSP]);
+  sample->fp = reinterpret_cast<Address>(mcontext.gregs[KDIREG_RBP]);
+#else
+  UNIMPLEMENTED();
+#endif
+  active_sampler_->SampleStack(sample);
+  active_sampler_->Tick(sample);
 }


Index: src/utils.h
diff --git a/src/utils.h b/src/utils.h
index 62b8726b802ae30f8d0c64f9343d7849d3f98e9e..5e65a4b9dd91f3360e40cc65e99bc5a4203a470e 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -754,7 +754,7 @@ inline Dest BitCast(const Source& source) {
 }

 template <class Dest, class Source>
-inline Dest BitCast(Source* source) {
+inline Dest BitCast(Source*& source) {
   return BitCast<Dest>(reinterpret_cast<uintptr_t>(source));
 }

Index: src/v8utils.h
diff --git a/src/v8utils.h b/src/v8utils.h
index cfeb570adb5e1b9c1971678cbacc5bc97ec2fc5b..b000d1440999c1dcf7bd1ba6a6f8ea6b00adc376 100644
--- a/src/v8utils.h
+++ b/src/v8utils.h
@@ -29,6 +29,7 @@
 #define V8_V8UTILS_H_

 #include "utils.h"
+#include <stdarg.h>

 namespace v8 {
 namespace internal {


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to