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

Side by Side Diff: src/assembler.h

Issue 7976024: Add dynamic stack frame alignment to optimized functions with untagged doubles on the stack. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Incorporate code review comments. Created 9 years, 3 months 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
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 // Static data in the keyed lookup cache. 589 // Static data in the keyed lookup cache.
590 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); 590 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate);
591 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); 591 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate);
592 592
593 // Static variable Factory::the_hole_value.location() 593 // Static variable Factory::the_hole_value.location()
594 static ExternalReference the_hole_value_location(Isolate* isolate); 594 static ExternalReference the_hole_value_location(Isolate* isolate);
595 595
596 // Static variable Factory::arguments_marker.location() 596 // Static variable Factory::arguments_marker.location()
597 static ExternalReference arguments_marker_location(Isolate* isolate); 597 static ExternalReference arguments_marker_location(Isolate* isolate);
598 598
599 // Static variable Factory::frame_alignment_marker.location()
600 static ExternalReference frame_alignment_marker_location(Isolate* isolate);
601
599 // Static variable Heap::roots_address() 602 // Static variable Heap::roots_address()
600 static ExternalReference roots_address(Isolate* isolate); 603 static ExternalReference roots_address(Isolate* isolate);
601 604
602 // Static variable StackGuard::address_of_jslimit() 605 // Static variable StackGuard::address_of_jslimit()
603 static ExternalReference address_of_stack_limit(Isolate* isolate); 606 static ExternalReference address_of_stack_limit(Isolate* isolate);
604 607
605 // Static variable StackGuard::address_of_real_jslimit() 608 // Static variable StackGuard::address_of_real_jslimit()
606 static ExternalReference address_of_real_stack_limit(Isolate* isolate); 609 static ExternalReference address_of_real_stack_limit(Isolate* isolate);
607 610
608 // Static variable RegExpStack::limit_address() 611 // Static variable RegExpStack::limit_address()
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 public: 875 public:
873 NullCallWrapper() { } 876 NullCallWrapper() { }
874 virtual ~NullCallWrapper() { } 877 virtual ~NullCallWrapper() { }
875 virtual void BeforeCall(int call_size) const { } 878 virtual void BeforeCall(int call_size) const { }
876 virtual void AfterCall() const { } 879 virtual void AfterCall() const { }
877 }; 880 };
878 881
879 } } // namespace v8::internal 882 } } // namespace v8::internal
880 883
881 #endif // V8_ASSEMBLER_H_ 884 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698