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

Side by Side Diff: src/frames.cc

Issue 11428137: ARM: Make use of d16-d31 when available. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: The tests does not use fp Created 8 years 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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 642
643 // Visit the parameters that may be on top of the saved registers. 643 // Visit the parameters that may be on top of the saved registers.
644 if (safepoint_entry.argument_count() > 0) { 644 if (safepoint_entry.argument_count() > 0) {
645 v->VisitPointers(parameters_base, 645 v->VisitPointers(parameters_base,
646 parameters_base + safepoint_entry.argument_count()); 646 parameters_base + safepoint_entry.argument_count());
647 parameters_base += safepoint_entry.argument_count(); 647 parameters_base += safepoint_entry.argument_count();
648 } 648 }
649 649
650 // Skip saved double registers. 650 // Skip saved double registers.
651 if (safepoint_entry.has_doubles()) { 651 if (safepoint_entry.has_doubles()) {
652 parameters_base += DoubleRegister::kNumAllocatableRegisters * 652 parameters_base += DoubleRegister::NumAllocatableRegisters() *
653 kDoubleSize / kPointerSize; 653 kDoubleSize / kPointerSize;
654 } 654 }
655 655
656 // Visit the registers that contain pointers if any. 656 // Visit the registers that contain pointers if any.
657 if (safepoint_entry.HasRegisters()) { 657 if (safepoint_entry.HasRegisters()) {
658 for (int i = kNumSafepointRegisters - 1; i >=0; i--) { 658 for (int i = kNumSafepointRegisters - 1; i >=0; i--) {
659 if (safepoint_entry.HasRegisterAt(i)) { 659 if (safepoint_entry.HasRegisterAt(i)) {
660 int reg_stack_index = MacroAssembler::SafepointRegisterStackIndex(i); 660 int reg_stack_index = MacroAssembler::SafepointRegisterStackIndex(i);
661 v->VisitPointer(parameters_base + reg_stack_index); 661 v->VisitPointer(parameters_base + reg_stack_index);
662 } 662 }
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
1436 ZoneList<StackFrame*> list(10, zone); 1436 ZoneList<StackFrame*> list(10, zone);
1437 for (StackFrameIterator it; !it.done(); it.Advance()) { 1437 for (StackFrameIterator it; !it.done(); it.Advance()) {
1438 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); 1438 StackFrame* frame = AllocateFrameCopy(it.frame(), zone);
1439 list.Add(frame, zone); 1439 list.Add(frame, zone);
1440 } 1440 }
1441 return list.ToVector(); 1441 return list.ToVector();
1442 } 1442 }
1443 1443
1444 1444
1445 } } // namespace v8::internal 1445 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698