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

Side by Side Diff: src/assembler.h

Issue 8917014: Guard against undefined fields in global context. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address comments. Created 9 years 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 | « no previous file | 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 static ExternalReference perform_gc_function(Isolate* isolate); 583 static ExternalReference perform_gc_function(Isolate* isolate);
584 static ExternalReference fill_heap_number_with_random_function( 584 static ExternalReference fill_heap_number_with_random_function(
585 Isolate* isolate); 585 Isolate* isolate);
586 static ExternalReference random_uint32_function(Isolate* isolate); 586 static ExternalReference random_uint32_function(Isolate* isolate);
587 static ExternalReference transcendental_cache_array_address(Isolate* isolate); 587 static ExternalReference transcendental_cache_array_address(Isolate* isolate);
588 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); 588 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
589 589
590 // Deoptimization support. 590 // Deoptimization support.
591 static ExternalReference new_deoptimizer_function(Isolate* isolate); 591 static ExternalReference new_deoptimizer_function(Isolate* isolate);
592 static ExternalReference compute_output_frames_function(Isolate* isolate); 592 static ExternalReference compute_output_frames_function(Isolate* isolate);
593 static ExternalReference global_contexts_list(Isolate* isolate);
594 593
595 // Static data in the keyed lookup cache. 594 // Static data in the keyed lookup cache.
596 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); 595 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate);
597 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); 596 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate);
598 597
599 // Static variable Heap::roots_array_start() 598 // Static variable Heap::roots_array_start()
600 static ExternalReference roots_array_start(Isolate* isolate); 599 static ExternalReference roots_array_start(Isolate* isolate);
601 600
602 // Static variable StackGuard::address_of_jslimit() 601 // Static variable StackGuard::address_of_jslimit()
603 static ExternalReference address_of_stack_limit(Isolate* isolate); 602 static ExternalReference address_of_stack_limit(Isolate* isolate);
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 public: 874 public:
876 NullCallWrapper() { } 875 NullCallWrapper() { }
877 virtual ~NullCallWrapper() { } 876 virtual ~NullCallWrapper() { }
878 virtual void BeforeCall(int call_size) const { } 877 virtual void BeforeCall(int call_size) const { }
879 virtual void AfterCall() const { } 878 virtual void AfterCall() const { }
880 }; 879 };
881 880
882 } } // namespace v8::internal 881 } } // namespace v8::internal
883 882
884 #endif // V8_ASSEMBLER_H_ 883 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698