Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: src/profile-generator.cc

Issue 682143003: Reland of Extend CPU profiler with mapping ticks to source lines (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/profile-generator-inl.h" 7 #include "src/profile-generator-inl.h"
8 8
9 #include "src/compiler.h" 9 #include "src/compiler.h"
10 #include "src/debug.h" 10 #include "src/debug.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 return size; 125 return size;
126 } 126 }
127 127
128 128
129 HashMap::Entry* StringsStorage::GetEntry(const char* str, int len) { 129 HashMap::Entry* StringsStorage::GetEntry(const char* str, int len) {
130 uint32_t hash = StringHasher::HashSequentialString(str, len, hash_seed_); 130 uint32_t hash = StringHasher::HashSequentialString(str, len, hash_seed_);
131 return names_.Lookup(const_cast<char*>(str), hash, true); 131 return names_.Lookup(const_cast<char*>(str), hash, true);
132 } 132 }
133 133
134 134
135 JITLineInfoTable::JITLineInfoTable() {}
136
137
138 JITLineInfoTable::~JITLineInfoTable() {}
139
140
141 void JITLineInfoTable::SetPosition(int pc_offset, int line) {
142 DCHECK(pc_offset >= 0);
143 DCHECK(line > 0); // The 1-based number of the source line.
144 if (GetSourceLineNumber(pc_offset) != line) {
145 pc_offset_map_.insert(std::make_pair(pc_offset, line));
146 }
147 }
148
149
150 int JITLineInfoTable::GetSourceLineNumber(int pc_offset) const {
151 PcOffsetMap::const_iterator it = pc_offset_map_.lower_bound(pc_offset);
152 if (it == pc_offset_map_.end()) {
153 if (pc_offset_map_.empty()) return v8::CpuProfileNode::kNoLineNumberInfo;
154 return (--pc_offset_map_.end())->second;
155 }
156 return it->second;
157 }
158
159
135 const char* const CodeEntry::kEmptyNamePrefix = ""; 160 const char* const CodeEntry::kEmptyNamePrefix = "";
136 const char* const CodeEntry::kEmptyResourceName = ""; 161 const char* const CodeEntry::kEmptyResourceName = "";
137 const char* const CodeEntry::kEmptyBailoutReason = ""; 162 const char* const CodeEntry::kEmptyBailoutReason = "";
138 163
139 164
140 CodeEntry::~CodeEntry() { 165 CodeEntry::~CodeEntry() {
141 delete no_frame_ranges_; 166 delete no_frame_ranges_;
167 delete line_info_;
142 } 168 }
143 169
144 170
145 uint32_t CodeEntry::GetCallUid() const { 171 uint32_t CodeEntry::GetCallUid() const {
146 uint32_t hash = ComputeIntegerHash(tag_, v8::internal::kZeroHashSeed); 172 uint32_t hash = ComputeIntegerHash(tag_, v8::internal::kZeroHashSeed);
147 if (shared_id_ != 0) { 173 if (shared_id_ != 0) {
148 hash ^= ComputeIntegerHash(static_cast<uint32_t>(shared_id_), 174 hash ^= ComputeIntegerHash(static_cast<uint32_t>(shared_id_),
149 v8::internal::kZeroHashSeed); 175 v8::internal::kZeroHashSeed);
150 } else { 176 } else {
151 hash ^= ComputeIntegerHash( 177 hash ^= ComputeIntegerHash(
(...skipping 22 matching lines...) Expand all
174 && line_number_ == entry->line_number_))); 200 && line_number_ == entry->line_number_)));
175 } 201 }
176 202
177 203
178 void CodeEntry::SetBuiltinId(Builtins::Name id) { 204 void CodeEntry::SetBuiltinId(Builtins::Name id) {
179 tag_ = Logger::BUILTIN_TAG; 205 tag_ = Logger::BUILTIN_TAG;
180 builtin_id_ = id; 206 builtin_id_ = id;
181 } 207 }
182 208
183 209
210 int CodeEntry::GetSourceLine(int pc_offset) const {
211 if (line_info_ && !line_info_->empty()) {
212 return line_info_->GetSourceLineNumber(pc_offset);
213 }
214 return v8::CpuProfileNode::kNoLineNumberInfo;
215 }
216
217
184 ProfileNode* ProfileNode::FindChild(CodeEntry* entry) { 218 ProfileNode* ProfileNode::FindChild(CodeEntry* entry) {
185 HashMap::Entry* map_entry = 219 HashMap::Entry* map_entry =
186 children_.Lookup(entry, CodeEntryHash(entry), false); 220 children_.Lookup(entry, CodeEntryHash(entry), false);
187 return map_entry != NULL ? 221 return map_entry != NULL ?
188 reinterpret_cast<ProfileNode*>(map_entry->value) : NULL; 222 reinterpret_cast<ProfileNode*>(map_entry->value) : NULL;
189 } 223 }
190 224
191 225
192 ProfileNode* ProfileNode::FindOrAddChild(CodeEntry* entry) { 226 ProfileNode* ProfileNode::FindOrAddChild(CodeEntry* entry) {
193 HashMap::Entry* map_entry = 227 HashMap::Entry* map_entry =
194 children_.Lookup(entry, CodeEntryHash(entry), true); 228 children_.Lookup(entry, CodeEntryHash(entry), true);
195 if (map_entry->value == NULL) { 229 if (map_entry->value == NULL) {
196 // New node added. 230 // New node added.
197 ProfileNode* new_node = new ProfileNode(tree_, entry); 231 ProfileNode* new_node = new ProfileNode(tree_, entry);
198 map_entry->value = new_node; 232 map_entry->value = new_node;
199 children_list_.Add(new_node); 233 children_list_.Add(new_node);
200 } 234 }
201 return reinterpret_cast<ProfileNode*>(map_entry->value); 235 return reinterpret_cast<ProfileNode*>(map_entry->value);
202 } 236 }
203 237
204 238
239 void ProfileNode::IncrementLineTicks(int src_line) {
240 if (src_line == v8::CpuProfileNode::kNoLineNumberInfo) return;
241 // Increment a hit counter of a certain source line.
242 // Add a new source line if not found.
243 HashMap::Entry* e =
244 line_ticks_.Lookup(reinterpret_cast<void*>(src_line), src_line, true);
245 DCHECK(e);
246 e->value = reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(e->value) + 1);
247 }
248
249
250 bool ProfileNode::GetLineTicks(v8::CpuProfileNode::LineTick* entries,
251 unsigned int length) const {
252 if (entries == NULL || length == 0) return false;
253
254 unsigned line_count = line_ticks_.occupancy();
255
256 if (line_count == 0) return true;
257 if (length < line_count) return false;
258
259 v8::CpuProfileNode::LineTick* entry = entries;
260
261 for (HashMap::Entry* p = line_ticks_.Start(); p != NULL;
262 p = line_ticks_.Next(p), entry++) {
263 entry->line =
264 static_cast<unsigned int>(reinterpret_cast<uintptr_t>(p->key));
265 entry->hit_count =
266 static_cast<unsigned int>(reinterpret_cast<uintptr_t>(p->value));
267 }
268
269 return true;
270 }
271
272
205 void ProfileNode::Print(int indent) { 273 void ProfileNode::Print(int indent) {
206 base::OS::Print("%5u %*s %s%s %d #%d %s", self_ticks_, indent, "", 274 base::OS::Print("%5u %*s %s%s %d #%d %s", self_ticks_, indent, "",
207 entry_->name_prefix(), entry_->name(), entry_->script_id(), 275 entry_->name_prefix(), entry_->name(), entry_->script_id(),
208 id(), entry_->bailout_reason()); 276 id(), entry_->bailout_reason());
209 if (entry_->resource_name()[0] != '\0') 277 if (entry_->resource_name()[0] != '\0')
210 base::OS::Print(" %s:%d", entry_->resource_name(), entry_->line_number()); 278 base::OS::Print(" %s:%d", entry_->resource_name(), entry_->line_number());
211 base::OS::Print("\n"); 279 base::OS::Print("\n");
212 for (HashMap::Entry* p = children_.Start(); 280 for (HashMap::Entry* p = children_.Start();
213 p != NULL; 281 p != NULL;
214 p = children_.Next(p)) { 282 p = children_.Next(p)) {
(...skipping 20 matching lines...) Expand all
235 root_(new ProfileNode(this, &root_entry_)) { 303 root_(new ProfileNode(this, &root_entry_)) {
236 } 304 }
237 305
238 306
239 ProfileTree::~ProfileTree() { 307 ProfileTree::~ProfileTree() {
240 DeleteNodesCallback cb; 308 DeleteNodesCallback cb;
241 TraverseDepthFirst(&cb); 309 TraverseDepthFirst(&cb);
242 } 310 }
243 311
244 312
245 ProfileNode* ProfileTree::AddPathFromEnd(const Vector<CodeEntry*>& path) { 313 ProfileNode* ProfileTree::AddPathFromEnd(const Vector<CodeEntry*>& path,
314 int src_line) {
246 ProfileNode* node = root_; 315 ProfileNode* node = root_;
247 for (CodeEntry** entry = path.start() + path.length() - 1; 316 for (CodeEntry** entry = path.start() + path.length() - 1;
248 entry != path.start() - 1; 317 entry != path.start() - 1;
249 --entry) { 318 --entry) {
250 if (*entry != NULL) { 319 if (*entry != NULL) {
251 node = node->FindOrAddChild(*entry); 320 node = node->FindOrAddChild(*entry);
252 } 321 }
253 } 322 }
254 node->IncrementSelfTicks(); 323 node->IncrementSelfTicks();
324 if (src_line != v8::CpuProfileNode::kNoLineNumberInfo) {
325 node->IncrementLineTicks(src_line);
326 }
255 return node; 327 return node;
256 } 328 }
257 329
258 330
259 void ProfileTree::AddPathFromStart(const Vector<CodeEntry*>& path) { 331 void ProfileTree::AddPathFromStart(const Vector<CodeEntry*>& path,
332 int src_line) {
260 ProfileNode* node = root_; 333 ProfileNode* node = root_;
261 for (CodeEntry** entry = path.start(); 334 for (CodeEntry** entry = path.start();
262 entry != path.start() + path.length(); 335 entry != path.start() + path.length();
263 ++entry) { 336 ++entry) {
264 if (*entry != NULL) { 337 if (*entry != NULL) {
265 node = node->FindOrAddChild(*entry); 338 node = node->FindOrAddChild(*entry);
266 } 339 }
267 } 340 }
268 node->IncrementSelfTicks(); 341 node->IncrementSelfTicks();
342 if (src_line != v8::CpuProfileNode::kNoLineNumberInfo) {
343 node->IncrementLineTicks(src_line);
344 }
269 } 345 }
270 346
271 347
272 struct NodesPair { 348 struct NodesPair {
273 NodesPair(ProfileNode* src, ProfileNode* dst) 349 NodesPair(ProfileNode* src, ProfileNode* dst)
274 : src(src), dst(dst) { } 350 : src(src), dst(dst) { }
275 ProfileNode* src; 351 ProfileNode* src;
276 ProfileNode* dst; 352 ProfileNode* dst;
277 }; 353 };
278 354
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 396
321 397
322 CpuProfile::CpuProfile(const char* title, bool record_samples) 398 CpuProfile::CpuProfile(const char* title, bool record_samples)
323 : title_(title), 399 : title_(title),
324 record_samples_(record_samples), 400 record_samples_(record_samples),
325 start_time_(base::TimeTicks::HighResolutionNow()) { 401 start_time_(base::TimeTicks::HighResolutionNow()) {
326 } 402 }
327 403
328 404
329 void CpuProfile::AddPath(base::TimeTicks timestamp, 405 void CpuProfile::AddPath(base::TimeTicks timestamp,
330 const Vector<CodeEntry*>& path) { 406 const Vector<CodeEntry*>& path, int src_line) {
331 ProfileNode* top_frame_node = top_down_.AddPathFromEnd(path); 407 ProfileNode* top_frame_node = top_down_.AddPathFromEnd(path, src_line);
332 if (record_samples_) { 408 if (record_samples_) {
333 timestamps_.Add(timestamp); 409 timestamps_.Add(timestamp);
334 samples_.Add(top_frame_node); 410 samples_.Add(top_frame_node);
335 } 411 }
336 } 412 }
337 413
338 414
339 void CpuProfile::CalculateTotalTicksAndSamplingRate() { 415 void CpuProfile::CalculateTotalTicksAndSamplingRate() {
340 end_time_ = base::TimeTicks::HighResolutionNow(); 416 end_time_ = base::TimeTicks::HighResolutionNow();
341 } 417 }
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 if (profile == finished_profiles_[i]) { 586 if (profile == finished_profiles_[i]) {
511 finished_profiles_.Remove(i); 587 finished_profiles_.Remove(i);
512 return; 588 return;
513 } 589 }
514 } 590 }
515 UNREACHABLE(); 591 UNREACHABLE();
516 } 592 }
517 593
518 594
519 void CpuProfilesCollection::AddPathToCurrentProfiles( 595 void CpuProfilesCollection::AddPathToCurrentProfiles(
520 base::TimeTicks timestamp, const Vector<CodeEntry*>& path) { 596 base::TimeTicks timestamp, const Vector<CodeEntry*>& path, int src_line) {
521 // As starting / stopping profiles is rare relatively to this 597 // As starting / stopping profiles is rare relatively to this
522 // method, we don't bother minimizing the duration of lock holding, 598 // method, we don't bother minimizing the duration of lock holding,
523 // e.g. copying contents of the list to a local vector. 599 // e.g. copying contents of the list to a local vector.
524 current_profiles_semaphore_.Wait(); 600 current_profiles_semaphore_.Wait();
525 for (int i = 0; i < current_profiles_.length(); ++i) { 601 for (int i = 0; i < current_profiles_.length(); ++i) {
526 current_profiles_[i]->AddPath(timestamp, path); 602 current_profiles_[i]->AddPath(timestamp, path, src_line);
527 } 603 }
528 current_profiles_semaphore_.Signal(); 604 current_profiles_semaphore_.Signal();
529 } 605 }
530 606
531 607
532 CodeEntry* CpuProfilesCollection::NewCodeEntry( 608 CodeEntry* CpuProfilesCollection::NewCodeEntry(
533 Logger::LogEventsAndTags tag, 609 Logger::LogEventsAndTags tag, const char* name, const char* name_prefix,
534 const char* name, 610 const char* resource_name, int line_number, int column_number,
535 const char* name_prefix, 611 JITLineInfoTable* line_info, Address instruction_start) {
536 const char* resource_name, 612 CodeEntry* code_entry =
537 int line_number, 613 new CodeEntry(tag, name, name_prefix, resource_name, line_number,
538 int column_number) { 614 column_number, line_info, instruction_start);
539 CodeEntry* code_entry = new CodeEntry(tag,
540 name,
541 name_prefix,
542 resource_name,
543 line_number,
544 column_number);
545 code_entries_.Add(code_entry); 615 code_entries_.Add(code_entry);
546 return code_entry; 616 return code_entry;
547 } 617 }
548 618
549 619
550 const char* const ProfileGenerator::kProgramEntryName = 620 const char* const ProfileGenerator::kProgramEntryName =
551 "(program)"; 621 "(program)";
552 const char* const ProfileGenerator::kIdleEntryName = 622 const char* const ProfileGenerator::kIdleEntryName =
553 "(idle)"; 623 "(idle)";
554 const char* const ProfileGenerator::kGarbageCollectorEntryName = 624 const char* const ProfileGenerator::kGarbageCollectorEntryName =
(...skipping 17 matching lines...) Expand all
572 } 642 }
573 643
574 644
575 void ProfileGenerator::RecordTickSample(const TickSample& sample) { 645 void ProfileGenerator::RecordTickSample(const TickSample& sample) {
576 // Allocate space for stack frames + pc + function + vm-state. 646 // Allocate space for stack frames + pc + function + vm-state.
577 ScopedVector<CodeEntry*> entries(sample.frames_count + 3); 647 ScopedVector<CodeEntry*> entries(sample.frames_count + 3);
578 // As actual number of decoded code entries may vary, initialize 648 // As actual number of decoded code entries may vary, initialize
579 // entries vector with NULL values. 649 // entries vector with NULL values.
580 CodeEntry** entry = entries.start(); 650 CodeEntry** entry = entries.start();
581 memset(entry, 0, entries.length() * sizeof(*entry)); 651 memset(entry, 0, entries.length() * sizeof(*entry));
652
653 // The ProfileNode knows nothing about all versions of generated code for
654 // the same JS function. The line number information associated with
655 // the latest version of generated code is used to find a source line number
656 // for a JS function. Then, the detected source line is passed to
657 // ProfileNode to increase the tick count for this source line.
658 int src_line = v8::CpuProfileNode::kNoLineNumberInfo;
659 bool src_line_not_found = true;
660
582 if (sample.pc != NULL) { 661 if (sample.pc != NULL) {
583 if (sample.has_external_callback && sample.state == EXTERNAL && 662 if (sample.has_external_callback && sample.state == EXTERNAL &&
584 sample.top_frame_type == StackFrame::EXIT) { 663 sample.top_frame_type == StackFrame::EXIT) {
585 // Don't use PC when in external callback code, as it can point 664 // Don't use PC when in external callback code, as it can point
586 // inside callback's code, and we will erroneously report 665 // inside callback's code, and we will erroneously report
587 // that a callback calls itself. 666 // that a callback calls itself.
588 *entry++ = code_map_.FindEntry(sample.external_callback); 667 *entry++ = code_map_.FindEntry(sample.external_callback);
589 } else { 668 } else {
590 Address start; 669 Address start;
591 CodeEntry* pc_entry = code_map_.FindEntry(sample.pc, &start); 670 CodeEntry* pc_entry = code_map_.FindEntry(sample.pc, &start);
592 // If pc is in the function code before it set up stack frame or after the 671 // If pc is in the function code before it set up stack frame or after the
593 // frame was destroyed SafeStackFrameIterator incorrectly thinks that 672 // frame was destroyed SafeStackFrameIterator incorrectly thinks that
594 // ebp contains return address of the current function and skips caller's 673 // ebp contains return address of the current function and skips caller's
595 // frame. Check for this case and just skip such samples. 674 // frame. Check for this case and just skip such samples.
596 if (pc_entry) { 675 if (pc_entry) {
597 List<OffsetRange>* ranges = pc_entry->no_frame_ranges(); 676 List<OffsetRange>* ranges = pc_entry->no_frame_ranges();
677 int pc_offset =
678 static_cast<int>(sample.pc - pc_entry->instruction_start());
598 if (ranges) { 679 if (ranges) {
599 Code* code = Code::cast(HeapObject::FromAddress(start));
600 int pc_offset = static_cast<int>(
601 sample.pc - code->instruction_start());
602 for (int i = 0; i < ranges->length(); i++) { 680 for (int i = 0; i < ranges->length(); i++) {
603 OffsetRange& range = ranges->at(i); 681 OffsetRange& range = ranges->at(i);
604 if (range.from <= pc_offset && pc_offset < range.to) { 682 if (range.from <= pc_offset && pc_offset < range.to) {
605 return; 683 return;
606 } 684 }
607 } 685 }
608 } 686 }
687 src_line = pc_entry->GetSourceLine(pc_offset);
688 if (src_line == v8::CpuProfileNode::kNoLineNumberInfo) {
689 src_line = pc_entry->line_number();
690 }
691 src_line_not_found = false;
609 *entry++ = pc_entry; 692 *entry++ = pc_entry;
610 693
611 if (pc_entry->builtin_id() == Builtins::kFunctionCall || 694 if (pc_entry->builtin_id() == Builtins::kFunctionCall ||
612 pc_entry->builtin_id() == Builtins::kFunctionApply) { 695 pc_entry->builtin_id() == Builtins::kFunctionApply) {
613 // When current function is FunctionCall or FunctionApply builtin the 696 // When current function is FunctionCall or FunctionApply builtin the
614 // top frame is either frame of the calling JS function or internal 697 // top frame is either frame of the calling JS function or internal
615 // frame. In the latter case we know the caller for sure but in the 698 // frame. In the latter case we know the caller for sure but in the
616 // former case we don't so we simply replace the frame with 699 // former case we don't so we simply replace the frame with
617 // 'unresolved' entry. 700 // 'unresolved' entry.
618 if (sample.top_frame_type == StackFrame::JAVA_SCRIPT) { 701 if (sample.top_frame_type == StackFrame::JAVA_SCRIPT) {
619 *entry++ = unresolved_entry_; 702 *entry++ = unresolved_entry_;
620 } 703 }
621 } 704 }
622 } 705 }
623 } 706 }
624 707
625 for (const Address* stack_pos = sample.stack, 708 for (const Address* stack_pos = sample.stack,
626 *stack_end = stack_pos + sample.frames_count; 709 *stack_end = stack_pos + sample.frames_count;
627 stack_pos != stack_end; 710 stack_pos != stack_end;
628 ++stack_pos) { 711 ++stack_pos) {
629 *entry++ = code_map_.FindEntry(*stack_pos); 712 Address start = NULL;
713 *entry = code_map_.FindEntry(*stack_pos, &start);
714
715 // Skip unresolved frames (e.g. internal frame) and get source line of
716 // the first JS caller.
717 if (src_line_not_found && *entry) {
718 int pc_offset =
719 static_cast<int>(*stack_pos - (*entry)->instruction_start());
720 src_line = (*entry)->GetSourceLine(pc_offset);
721 if (src_line == v8::CpuProfileNode::kNoLineNumberInfo) {
722 src_line = (*entry)->line_number();
723 }
724 src_line_not_found = false;
725 }
726
727 entry++;
630 } 728 }
631 } 729 }
632 730
633 if (FLAG_prof_browser_mode) { 731 if (FLAG_prof_browser_mode) {
634 bool no_symbolized_entries = true; 732 bool no_symbolized_entries = true;
635 for (CodeEntry** e = entries.start(); e != entry; ++e) { 733 for (CodeEntry** e = entries.start(); e != entry; ++e) {
636 if (*e != NULL) { 734 if (*e != NULL) {
637 no_symbolized_entries = false; 735 no_symbolized_entries = false;
638 break; 736 break;
639 } 737 }
640 } 738 }
641 // If no frames were symbolized, put the VM state entry in. 739 // If no frames were symbolized, put the VM state entry in.
642 if (no_symbolized_entries) { 740 if (no_symbolized_entries) {
643 *entry++ = EntryForVMState(sample.state); 741 *entry++ = EntryForVMState(sample.state);
644 } 742 }
645 } 743 }
646 744
647 profiles_->AddPathToCurrentProfiles(sample.timestamp, entries); 745 profiles_->AddPathToCurrentProfiles(sample.timestamp, entries, src_line);
648 } 746 }
649 747
650 748
651 CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) { 749 CodeEntry* ProfileGenerator::EntryForVMState(StateTag tag) {
652 switch (tag) { 750 switch (tag) {
653 case GC: 751 case GC:
654 return gc_entry_; 752 return gc_entry_;
655 case JS: 753 case JS:
656 case COMPILER: 754 case COMPILER:
657 // DOM events handlers are reported as OTHER / EXTERNAL entries. 755 // DOM events handlers are reported as OTHER / EXTERNAL entries.
658 // To avoid confusing people, let's put all these entries into 756 // To avoid confusing people, let's put all these entries into
659 // one bucket. 757 // one bucket.
660 case OTHER: 758 case OTHER:
661 case EXTERNAL: 759 case EXTERNAL:
662 return program_entry_; 760 return program_entry_;
663 case IDLE: 761 case IDLE:
664 return idle_entry_; 762 return idle_entry_;
665 default: return NULL; 763 default: return NULL;
666 } 764 }
667 } 765 }
668 766
669 } } // namespace v8::internal 767 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698