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

Side by Side Diff: src/assembler.h

Issue 23859002: remove Isolate::Current from most files starting with 'a' (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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/codegen-arm.h ('k') | src/ast.h » ('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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 #ifdef ENABLE_DEBUGGER_SUPPORT 684 #ifdef ENABLE_DEBUGGER_SUPPORT
685 ExternalReference(const Debug_Address& debug_address, Isolate* isolate); 685 ExternalReference(const Debug_Address& debug_address, Isolate* isolate);
686 #endif 686 #endif
687 687
688 explicit ExternalReference(StatsCounter* counter); 688 explicit ExternalReference(StatsCounter* counter);
689 689
690 ExternalReference(Isolate::AddressId id, Isolate* isolate); 690 ExternalReference(Isolate::AddressId id, Isolate* isolate);
691 691
692 explicit ExternalReference(const SCTableReference& table_ref); 692 explicit ExternalReference(const SCTableReference& table_ref);
693 693
694 // Isolate::Current() as an external reference. 694 // Isolate as an external reference.
695 static ExternalReference isolate_address(Isolate* isolate); 695 static ExternalReference isolate_address(Isolate* isolate);
696 696
697 // One-of-a-kind references. These references are not part of a general 697 // One-of-a-kind references. These references are not part of a general
698 // pattern. This means that they have to be added to the 698 // pattern. This means that they have to be added to the
699 // ExternalReferenceTable in serialize.cc manually. 699 // ExternalReferenceTable in serialize.cc manually.
700 700
701 static ExternalReference incremental_marking_record_write_function( 701 static ExternalReference incremental_marking_record_write_function(
702 Isolate* isolate); 702 Isolate* isolate);
703 static ExternalReference incremental_evacuation_record_write_function( 703 static ExternalReference incremental_evacuation_record_write_function(
704 Isolate* isolate); 704 Isolate* isolate);
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 public: 1057 public:
1058 NullCallWrapper() { } 1058 NullCallWrapper() { }
1059 virtual ~NullCallWrapper() { } 1059 virtual ~NullCallWrapper() { }
1060 virtual void BeforeCall(int call_size) const { } 1060 virtual void BeforeCall(int call_size) const { }
1061 virtual void AfterCall() const { } 1061 virtual void AfterCall() const { }
1062 }; 1062 };
1063 1063
1064 } } // namespace v8::internal 1064 } } // namespace v8::internal
1065 1065
1066 #endif // V8_ASSEMBLER_H_ 1066 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/codegen-arm.h ('k') | src/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698