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

Side by Side Diff: src/assembler.h

Issue 1632913003: [heap] Move to page lookups for SemiSpace, NewSpace, and Heap containment methods (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix arm Created 4 years, 10 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
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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 949
950 // Static variables for RegExp. 950 // Static variables for RegExp.
951 static ExternalReference address_of_static_offsets_vector(Isolate* isolate); 951 static ExternalReference address_of_static_offsets_vector(Isolate* isolate);
952 static ExternalReference address_of_regexp_stack_memory_address( 952 static ExternalReference address_of_regexp_stack_memory_address(
953 Isolate* isolate); 953 Isolate* isolate);
954 static ExternalReference address_of_regexp_stack_memory_size( 954 static ExternalReference address_of_regexp_stack_memory_size(
955 Isolate* isolate); 955 Isolate* isolate);
956 956
957 // Static variable Heap::NewSpaceStart() 957 // Static variable Heap::NewSpaceStart()
958 static ExternalReference new_space_start(Isolate* isolate); 958 static ExternalReference new_space_start(Isolate* isolate);
959 static ExternalReference new_space_mask(Isolate* isolate);
960 959
961 // Write barrier. 960 // Write barrier.
962 static ExternalReference store_buffer_top(Isolate* isolate); 961 static ExternalReference store_buffer_top(Isolate* isolate);
963 962
964 // Used for fast allocation in generated code. 963 // Used for fast allocation in generated code.
965 static ExternalReference new_space_allocation_top_address(Isolate* isolate); 964 static ExternalReference new_space_allocation_top_address(Isolate* isolate);
966 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); 965 static ExternalReference new_space_allocation_limit_address(Isolate* isolate);
967 static ExternalReference old_space_allocation_top_address(Isolate* isolate); 966 static ExternalReference old_space_allocation_top_address(Isolate* isolate);
968 static ExternalReference old_space_allocation_limit_address(Isolate* isolate); 967 static ExternalReference old_space_allocation_limit_address(Isolate* isolate);
969 968
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1299 std::vector<ConstantPoolEntry> shared_entries; 1298 std::vector<ConstantPoolEntry> shared_entries;
1300 }; 1299 };
1301 1300
1302 Label emitted_label_; // Records pc_offset of emitted pool 1301 Label emitted_label_; // Records pc_offset of emitted pool
1303 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1302 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1304 }; 1303 };
1305 1304
1306 } // namespace internal 1305 } // namespace internal
1307 } // namespace v8 1306 } // namespace v8
1308 #endif // V8_ASSEMBLER_H_ 1307 #endif // V8_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698