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

Side by Side Diff: src/assembler.h

Issue 12300018: Made Isolate a mandatory parameter for everything Handle-related. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixed CreateCode calls. Be nicer to MIPS. Created 7 years, 10 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 | « src/arm/stub-cache-arm.cc ('k') | 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 706 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 // Used for fast allocation in generated code. 717 // Used for fast allocation in generated code.
718 static ExternalReference new_space_allocation_top_address(Isolate* isolate); 718 static ExternalReference new_space_allocation_top_address(Isolate* isolate);
719 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); 719 static ExternalReference new_space_allocation_limit_address(Isolate* isolate);
720 720
721 static ExternalReference double_fp_operation(Token::Value operation, 721 static ExternalReference double_fp_operation(Token::Value operation,
722 Isolate* isolate); 722 Isolate* isolate);
723 static ExternalReference compare_doubles(Isolate* isolate); 723 static ExternalReference compare_doubles(Isolate* isolate);
724 static ExternalReference power_double_double_function(Isolate* isolate); 724 static ExternalReference power_double_double_function(Isolate* isolate);
725 static ExternalReference power_double_int_function(Isolate* isolate); 725 static ExternalReference power_double_int_function(Isolate* isolate);
726 726
727 static ExternalReference handle_scope_next_address(); 727 static ExternalReference handle_scope_next_address(Isolate* isolate);
728 static ExternalReference handle_scope_limit_address(); 728 static ExternalReference handle_scope_limit_address(Isolate* isolate);
729 static ExternalReference handle_scope_level_address(); 729 static ExternalReference handle_scope_level_address(Isolate* isolate);
730 730
731 static ExternalReference scheduled_exception_address(Isolate* isolate); 731 static ExternalReference scheduled_exception_address(Isolate* isolate);
732 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 732 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
733 static ExternalReference address_of_has_pending_message(Isolate* isolate); 733 static ExternalReference address_of_has_pending_message(Isolate* isolate);
734 static ExternalReference address_of_pending_message_script(Isolate* isolate); 734 static ExternalReference address_of_pending_message_script(Isolate* isolate);
735 735
736 // Static variables containing common double constants. 736 // Static variables containing common double constants.
737 static ExternalReference address_of_min_int(); 737 static ExternalReference address_of_min_int();
738 static ExternalReference address_of_one_half(); 738 static ExternalReference address_of_one_half();
739 static ExternalReference address_of_minus_zero(); 739 static ExternalReference address_of_minus_zero();
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 public: 990 public:
991 NullCallWrapper() { } 991 NullCallWrapper() { }
992 virtual ~NullCallWrapper() { } 992 virtual ~NullCallWrapper() { }
993 virtual void BeforeCall(int call_size) const { } 993 virtual void BeforeCall(int call_size) const { }
994 virtual void AfterCall() const { } 994 virtual void AfterCall() const { }
995 }; 995 };
996 996
997 } } // namespace v8::internal 997 } } // namespace v8::internal
998 998
999 #endif // V8_ASSEMBLER_H_ 999 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698