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

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: Review feedback 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 (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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 static ExternalReference math_sin_double_function(Isolate* isolate); 725 static ExternalReference math_sin_double_function(Isolate* isolate);
726 static ExternalReference math_cos_double_function(Isolate* isolate); 726 static ExternalReference math_cos_double_function(Isolate* isolate);
727 static ExternalReference math_tan_double_function(Isolate* isolate); 727 static ExternalReference math_tan_double_function(Isolate* isolate);
728 static ExternalReference math_log_double_function(Isolate* isolate); 728 static ExternalReference math_log_double_function(Isolate* isolate);
729 729
730 static ExternalReference math_exp_constants(int constant_index); 730 static ExternalReference math_exp_constants(int constant_index);
731 static ExternalReference math_exp_log_table(); 731 static ExternalReference math_exp_log_table();
732 732
733 static ExternalReference page_flags(Page* page); 733 static ExternalReference page_flags(Page* page);
734 734
735 static ExternalReference ForDeoptEntry(Address entry);
736
735 Address address() const {return reinterpret_cast<Address>(address_);} 737 Address address() const {return reinterpret_cast<Address>(address_);}
736 738
737 #ifdef ENABLE_DEBUGGER_SUPPORT 739 #ifdef ENABLE_DEBUGGER_SUPPORT
738 // Function Debug::Break() 740 // Function Debug::Break()
739 static ExternalReference debug_break(Isolate* isolate); 741 static ExternalReference debug_break(Isolate* isolate);
740 742
741 // Used to check if single stepping is enabled in generated code. 743 // Used to check if single stepping is enabled in generated code.
742 static ExternalReference debug_step_in_fp_address(Isolate* isolate); 744 static ExternalReference debug_step_in_fp_address(Isolate* isolate);
743 #endif 745 #endif
744 746
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
952 public: 954 public:
953 NullCallWrapper() { } 955 NullCallWrapper() { }
954 virtual ~NullCallWrapper() { } 956 virtual ~NullCallWrapper() { }
955 virtual void BeforeCall(int call_size) const { } 957 virtual void BeforeCall(int call_size) const { }
956 virtual void AfterCall() const { } 958 virtual void AfterCall() const { }
957 }; 959 };
958 960
959 } } // namespace v8::internal 961 } } // namespace v8::internal
960 962
961 #endif // V8_ASSEMBLER_H_ 963 #endif // V8_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698