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

Side by Side Diff: src/assembler.h

Issue 10701054: Enable stub generation using Hydrogen/Lithium (again) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: First pass at pre-VFP2 RA Created 8 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 (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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 static ExternalReference address_of_canonical_non_hole_nan(); 710 static ExternalReference address_of_canonical_non_hole_nan();
711 static ExternalReference address_of_the_hole_nan(); 711 static ExternalReference address_of_the_hole_nan();
712 712
713 static ExternalReference math_sin_double_function(Isolate* isolate); 713 static ExternalReference math_sin_double_function(Isolate* isolate);
714 static ExternalReference math_cos_double_function(Isolate* isolate); 714 static ExternalReference math_cos_double_function(Isolate* isolate);
715 static ExternalReference math_tan_double_function(Isolate* isolate); 715 static ExternalReference math_tan_double_function(Isolate* isolate);
716 static ExternalReference math_log_double_function(Isolate* isolate); 716 static ExternalReference math_log_double_function(Isolate* isolate);
717 717
718 static ExternalReference page_flags(Page* page); 718 static ExternalReference page_flags(Page* page);
719 719
720 static ExternalReference ForDeoptEntry(Address entry);
721
720 Address address() const {return reinterpret_cast<Address>(address_);} 722 Address address() const {return reinterpret_cast<Address>(address_);}
721 723
722 #ifdef ENABLE_DEBUGGER_SUPPORT 724 #ifdef ENABLE_DEBUGGER_SUPPORT
723 // Function Debug::Break() 725 // Function Debug::Break()
724 static ExternalReference debug_break(Isolate* isolate); 726 static ExternalReference debug_break(Isolate* isolate);
725 727
726 // Used to check if single stepping is enabled in generated code. 728 // Used to check if single stepping is enabled in generated code.
727 static ExternalReference debug_step_in_fp_address(Isolate* isolate); 729 static ExternalReference debug_step_in_fp_address(Isolate* isolate);
728 #endif 730 #endif
729 731
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 public: 939 public:
938 NullCallWrapper() { } 940 NullCallWrapper() { }
939 virtual ~NullCallWrapper() { } 941 virtual ~NullCallWrapper() { }
940 virtual void BeforeCall(int call_size) const { } 942 virtual void BeforeCall(int call_size) const { }
941 virtual void AfterCall() const { } 943 virtual void AfterCall() const { }
942 }; 944 };
943 945
944 } } // namespace v8::internal 946 } } // namespace v8::internal
945 947
946 #endif // V8_ASSEMBLER_H_ 948 #endif // V8_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698