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

Side by Side Diff: src/assembler.h

Issue 441983002: Check that external references are registered in the serializer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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/arm64/codegen-arm64.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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 // Static variables for RegExp. 859 // Static variables for RegExp.
860 static ExternalReference address_of_static_offsets_vector(Isolate* isolate); 860 static ExternalReference address_of_static_offsets_vector(Isolate* isolate);
861 static ExternalReference address_of_regexp_stack_memory_address( 861 static ExternalReference address_of_regexp_stack_memory_address(
862 Isolate* isolate); 862 Isolate* isolate);
863 static ExternalReference address_of_regexp_stack_memory_size( 863 static ExternalReference address_of_regexp_stack_memory_size(
864 Isolate* isolate); 864 Isolate* isolate);
865 865
866 // Static variable Heap::NewSpaceStart() 866 // Static variable Heap::NewSpaceStart()
867 static ExternalReference new_space_start(Isolate* isolate); 867 static ExternalReference new_space_start(Isolate* isolate);
868 static ExternalReference new_space_mask(Isolate* isolate); 868 static ExternalReference new_space_mask(Isolate* isolate);
869 static ExternalReference heap_always_allocate_scope_depth(Isolate* isolate);
870 static ExternalReference new_space_mark_bits(Isolate* isolate);
871 869
872 // Write barrier. 870 // Write barrier.
873 static ExternalReference store_buffer_top(Isolate* isolate); 871 static ExternalReference store_buffer_top(Isolate* isolate);
874 872
875 // Used for fast allocation in generated code. 873 // Used for fast allocation in generated code.
876 static ExternalReference new_space_allocation_top_address(Isolate* isolate); 874 static ExternalReference new_space_allocation_top_address(Isolate* isolate);
877 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); 875 static ExternalReference new_space_allocation_limit_address(Isolate* isolate);
878 static ExternalReference old_pointer_space_allocation_top_address( 876 static ExternalReference old_pointer_space_allocation_top_address(
879 Isolate* isolate); 877 Isolate* isolate);
880 static ExternalReference old_pointer_space_allocation_limit_address( 878 static ExternalReference old_pointer_space_allocation_limit_address(
(...skipping 13 matching lines...) Expand all
894 892
895 static ExternalReference scheduled_exception_address(Isolate* isolate); 893 static ExternalReference scheduled_exception_address(Isolate* isolate);
896 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 894 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
897 static ExternalReference address_of_has_pending_message(Isolate* isolate); 895 static ExternalReference address_of_has_pending_message(Isolate* isolate);
898 static ExternalReference address_of_pending_message_script(Isolate* isolate); 896 static ExternalReference address_of_pending_message_script(Isolate* isolate);
899 897
900 // Static variables containing common double constants. 898 // Static variables containing common double constants.
901 static ExternalReference address_of_min_int(); 899 static ExternalReference address_of_min_int();
902 static ExternalReference address_of_one_half(); 900 static ExternalReference address_of_one_half();
903 static ExternalReference address_of_minus_one_half(); 901 static ExternalReference address_of_minus_one_half();
904 static ExternalReference address_of_minus_zero();
905 static ExternalReference address_of_zero();
906 static ExternalReference address_of_uint8_max_value();
907 static ExternalReference address_of_negative_infinity(); 902 static ExternalReference address_of_negative_infinity();
908 static ExternalReference address_of_canonical_non_hole_nan(); 903 static ExternalReference address_of_canonical_non_hole_nan();
909 static ExternalReference address_of_the_hole_nan(); 904 static ExternalReference address_of_the_hole_nan();
910 static ExternalReference address_of_uint32_bias(); 905 static ExternalReference address_of_uint32_bias();
911 906
912 static ExternalReference math_log_double_function(Isolate* isolate); 907 static ExternalReference math_log_double_function(Isolate* isolate);
913 908
914 static ExternalReference math_exp_constants(int constant_index); 909 static ExternalReference math_exp_constants(int constant_index);
915 static ExternalReference math_exp_log_table(); 910 static ExternalReference math_exp_log_table();
916 911
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 1120
1126 private: 1121 private:
1127 int32_t multiplier_; 1122 int32_t multiplier_;
1128 int32_t shift_; 1123 int32_t shift_;
1129 }; 1124 };
1130 1125
1131 1126
1132 } } // namespace v8::internal 1127 } } // namespace v8::internal
1133 1128
1134 #endif // V8_ASSEMBLER_H_ 1129 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/codegen-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698