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

Side by Side Diff: src/assembler.h

Issue 8114032: Clean list of external references from internal objects like the hole value. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 2 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/macro-assembler-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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 583
584 // Deoptimization support. 584 // Deoptimization support.
585 static ExternalReference new_deoptimizer_function(Isolate* isolate); 585 static ExternalReference new_deoptimizer_function(Isolate* isolate);
586 static ExternalReference compute_output_frames_function(Isolate* isolate); 586 static ExternalReference compute_output_frames_function(Isolate* isolate);
587 static ExternalReference global_contexts_list(Isolate* isolate); 587 static ExternalReference global_contexts_list(Isolate* isolate);
588 588
589 // Static data in the keyed lookup cache. 589 // Static data in the keyed lookup cache.
590 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); 590 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate);
591 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); 591 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate);
592 592
593 // Static variable Factory::the_hole_value.location()
594 static ExternalReference the_hole_value_location(Isolate* isolate);
595
596 // Static variable Factory::arguments_marker.location()
597 static ExternalReference arguments_marker_location(Isolate* isolate);
598
599 // Static variable Factory::frame_alignment_marker.location()
600 static ExternalReference frame_alignment_marker_location(Isolate* isolate);
601
602 // Static variable Heap::roots_address() 593 // Static variable Heap::roots_address()
603 static ExternalReference roots_address(Isolate* isolate); 594 static ExternalReference roots_address(Isolate* isolate);
604 595
605 // Static variable StackGuard::address_of_jslimit() 596 // Static variable StackGuard::address_of_jslimit()
606 static ExternalReference address_of_stack_limit(Isolate* isolate); 597 static ExternalReference address_of_stack_limit(Isolate* isolate);
607 598
608 // Static variable StackGuard::address_of_real_jslimit() 599 // Static variable StackGuard::address_of_real_jslimit()
609 static ExternalReference address_of_real_stack_limit(Isolate* isolate); 600 static ExternalReference address_of_real_stack_limit(Isolate* isolate);
610 601
611 // Static variable RegExpStack::limit_address() 602 // Static variable RegExpStack::limit_address()
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 public: 866 public:
876 NullCallWrapper() { } 867 NullCallWrapper() { }
877 virtual ~NullCallWrapper() { } 868 virtual ~NullCallWrapper() { }
878 virtual void BeforeCall(int call_size) const { } 869 virtual void BeforeCall(int call_size) const { }
879 virtual void AfterCall() const { } 870 virtual void AfterCall() const { }
880 }; 871 };
881 872
882 } } // namespace v8::internal 873 } } // namespace v8::internal
883 874
884 #endif // V8_ASSEMBLER_H_ 875 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698