HomeSort by relevance Sort by last modified time
    Searched refs:deopt_id (Results 1 - 8 of 8) sorted by null

  /external/v8/src/profiler/
cpu-profiler-inl.h 38 if (entry != NULL) entry->set_deopt_info(deopt_reason, position, deopt_id);
profile-generator.h 74 int deopt_id) {
78 deopt_id_ = deopt_id;
104 void AddDeoptInlinedFrames(int deopt_id, std::vector<DeoptInlinedFrame>&);
105 bool HasDeoptInlinedFramesFor(int deopt_id) const;
profiler-listener.cc 172 rec->deopt_id = info.deopt_id;
272 int const mask = RelocInfo::ModeMask(RelocInfo::DEOPT_ID);
276 int deopt_id = static_cast<int>(reloc_info->data()); local
278 deopt_input_data->TranslationIndex(deopt_id)->value();
307 if (!inlined_frames.empty() && !entry->HasDeoptInlinedFramesFor(deopt_id)) {
308 entry->AddDeoptInlinedFrames(deopt_id, inlined_frames);
cpu-profiler.h 88 int deopt_id; member in class:v8::internal::CodeDeoptEventRecord
profile-generator.cc 158 int deopt_id, std::vector<DeoptInlinedFrame>& inlined_frames) {
162 .insert(std::make_pair(deopt_id, std::vector<DeoptInlinedFrame>()))
166 bool CodeEntry::HasDeoptInlinedFramesFor(int deopt_id) const {
167 return deopt_inlined_frames_.find(deopt_id) != deopt_inlined_frames_.end();
  /external/v8/src/crankshaft/
lithium-codegen.h 41 LInstruction* instr, Deoptimizer::DeoptReason deopt_reason, int deopt_id);
lithium-codegen.cc 161 int deopt_id = deopt_info.deopt_id; local
163 masm()->RecordDeoptReason(deopt_info.deopt_reason, raw_position, deopt_id);
369 LInstruction* instr, Deoptimizer::DeoptReason deopt_reason, int deopt_id) {
371 deopt_reason, deopt_id);
  /external/v8/src/
deoptimizer.h 434 DeoptInfo(SourcePosition position, DeoptReason deopt_reason, int deopt_id)
435 : position(position), deopt_reason(deopt_reason), deopt_id(deopt_id) {}
439 int deopt_id; member in struct:v8::internal::Deoptimizer::DeoptInfo
    [all...]

Completed in 289 milliseconds