2010-03-19 09:46:53 +00:00
|
|
|
// Copyright 2010 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.
|
|
|
|
|
|
|
|
#ifndef V8_CPU_PROFILER_INL_H_
|
|
|
|
#define V8_CPU_PROFILER_INL_H_
|
|
|
|
|
2010-04-06 10:36:38 +00:00
|
|
|
#include "cpu-profiler.h"
|
|
|
|
|
2011-06-22 13:54:35 +00:00
|
|
|
#include <new>
|
2012-11-30 10:26:21 +00:00
|
|
|
#include "circular-queue-inl.h"
|
2010-03-19 09:46:53 +00:00
|
|
|
#include "profile-generator-inl.h"
|
2010-05-22 05:27:19 +00:00
|
|
|
#include "unbound-queue-inl.h"
|
2010-03-19 09:46:53 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2010-04-06 10:36:38 +00:00
|
|
|
void CodeCreateEventRecord::UpdateCodeMap(CodeMap* code_map) {
|
2010-04-12 07:23:43 +00:00
|
|
|
code_map->AddCode(start, entry, size);
|
2011-03-10 12:00:27 +00:00
|
|
|
if (shared != NULL) {
|
|
|
|
entry->set_shared_id(code_map->GetSharedId(shared));
|
2011-02-22 16:31:24 +00:00
|
|
|
}
|
2010-04-06 10:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void CodeMoveEventRecord::UpdateCodeMap(CodeMap* code_map) {
|
2010-04-12 07:23:43 +00:00
|
|
|
code_map->MoveCode(from, to);
|
2010-04-06 10:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-10 12:00:27 +00:00
|
|
|
void SharedFunctionInfoMoveEventRecord::UpdateCodeMap(CodeMap* code_map) {
|
2011-02-22 16:31:24 +00:00
|
|
|
code_map->MoveCode(from, to);
|
2010-04-12 07:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-30 10:26:21 +00:00
|
|
|
TickSample* ProfilerEventsProcessor::TickSampleEvent() {
|
2010-04-15 11:37:29 +00:00
|
|
|
generator_->Tick();
|
2012-11-30 10:26:21 +00:00
|
|
|
TickSampleEventRecord* evt =
|
|
|
|
new(ticks_buffer_.Enqueue()) TickSampleEventRecord(enqueue_order_);
|
|
|
|
return &evt->sample;
|
2010-03-19 09:46:53 +00:00
|
|
|
}
|
|
|
|
|
2010-04-07 14:18:26 +00:00
|
|
|
|
2010-03-19 09:46:53 +00:00
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_CPU_PROFILER_INL_H_
|