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

Side by Side Diff: src/assembler.h

Issue 10540095: Reland r11753: Fix try..finally. (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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 Isolate* isolate); 636 Isolate* isolate);
637 static ExternalReference compare_doubles(Isolate* isolate); 637 static ExternalReference compare_doubles(Isolate* isolate);
638 static ExternalReference power_double_double_function(Isolate* isolate); 638 static ExternalReference power_double_double_function(Isolate* isolate);
639 static ExternalReference power_double_int_function(Isolate* isolate); 639 static ExternalReference power_double_int_function(Isolate* isolate);
640 640
641 static ExternalReference handle_scope_next_address(); 641 static ExternalReference handle_scope_next_address();
642 static ExternalReference handle_scope_limit_address(); 642 static ExternalReference handle_scope_limit_address();
643 static ExternalReference handle_scope_level_address(); 643 static ExternalReference handle_scope_level_address();
644 644
645 static ExternalReference scheduled_exception_address(Isolate* isolate); 645 static ExternalReference scheduled_exception_address(Isolate* isolate);
646 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
647 static ExternalReference address_of_has_pending_message(Isolate* isolate);
648 static ExternalReference address_of_pending_message_script(Isolate* isolate);
646 649
647 // Static variables containing common double constants. 650 // Static variables containing common double constants.
648 static ExternalReference address_of_min_int(); 651 static ExternalReference address_of_min_int();
649 static ExternalReference address_of_one_half(); 652 static ExternalReference address_of_one_half();
650 static ExternalReference address_of_minus_zero(); 653 static ExternalReference address_of_minus_zero();
651 static ExternalReference address_of_zero(); 654 static ExternalReference address_of_zero();
652 static ExternalReference address_of_uint8_max_value(); 655 static ExternalReference address_of_uint8_max_value();
653 static ExternalReference address_of_negative_infinity(); 656 static ExternalReference address_of_negative_infinity();
654 static ExternalReference address_of_canonical_non_hole_nan(); 657 static ExternalReference address_of_canonical_non_hole_nan();
655 static ExternalReference address_of_the_hole_nan(); 658 static ExternalReference address_of_the_hole_nan();
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 public: 884 public:
882 NullCallWrapper() { } 885 NullCallWrapper() { }
883 virtual ~NullCallWrapper() { } 886 virtual ~NullCallWrapper() { }
884 virtual void BeforeCall(int call_size) const { } 887 virtual void BeforeCall(int call_size) const { }
885 virtual void AfterCall() const { } 888 virtual void AfterCall() const { }
886 }; 889 };
887 890
888 } } // namespace v8::internal 891 } } // namespace v8::internal
889 892
890 #endif // V8_ASSEMBLER_H_ 893 #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