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

Side by Side Diff: src/assembler.h

Issue 10546092: Revert r11753. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 6 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/full-codegen-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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 Isolate* isolate); 633 Isolate* isolate);
634 static ExternalReference compare_doubles(Isolate* isolate); 634 static ExternalReference compare_doubles(Isolate* isolate);
635 static ExternalReference power_double_double_function(Isolate* isolate); 635 static ExternalReference power_double_double_function(Isolate* isolate);
636 static ExternalReference power_double_int_function(Isolate* isolate); 636 static ExternalReference power_double_int_function(Isolate* isolate);
637 637
638 static ExternalReference handle_scope_next_address(); 638 static ExternalReference handle_scope_next_address();
639 static ExternalReference handle_scope_limit_address(); 639 static ExternalReference handle_scope_limit_address();
640 static ExternalReference handle_scope_level_address(); 640 static ExternalReference handle_scope_level_address();
641 641
642 static ExternalReference scheduled_exception_address(Isolate* isolate); 642 static ExternalReference scheduled_exception_address(Isolate* isolate);
643 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
644 static ExternalReference address_of_has_pending_message(Isolate* isolate);
645 static ExternalReference address_of_pending_message_script(Isolate* isolate);
646 643
647 // Static variables containing common double constants. 644 // Static variables containing common double constants.
648 static ExternalReference address_of_min_int(); 645 static ExternalReference address_of_min_int();
649 static ExternalReference address_of_one_half(); 646 static ExternalReference address_of_one_half();
650 static ExternalReference address_of_minus_zero(); 647 static ExternalReference address_of_minus_zero();
651 static ExternalReference address_of_zero(); 648 static ExternalReference address_of_zero();
652 static ExternalReference address_of_uint8_max_value(); 649 static ExternalReference address_of_uint8_max_value();
653 static ExternalReference address_of_negative_infinity(); 650 static ExternalReference address_of_negative_infinity();
654 static ExternalReference address_of_canonical_non_hole_nan(); 651 static ExternalReference address_of_canonical_non_hole_nan();
655 static ExternalReference address_of_the_hole_nan(); 652 static ExternalReference address_of_the_hole_nan();
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 public: 878 public:
882 NullCallWrapper() { } 879 NullCallWrapper() { }
883 virtual ~NullCallWrapper() { } 880 virtual ~NullCallWrapper() { }
884 virtual void BeforeCall(int call_size) const { } 881 virtual void BeforeCall(int call_size) const { }
885 virtual void AfterCall() const { } 882 virtual void AfterCall() const { }
886 }; 883 };
887 884
888 } } // namespace v8::internal 885 } } // namespace v8::internal
889 886
890 #endif // V8_ASSEMBLER_H_ 887 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/full-codegen-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698