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

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: mips ports 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
« no previous file with comments | « src/arm64/simulator-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 940 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 951
952 // Static variables for RegExp. 952 // Static variables for RegExp.
953 static ExternalReference address_of_static_offsets_vector(Isolate* isolate); 953 static ExternalReference address_of_static_offsets_vector(Isolate* isolate);
954 static ExternalReference address_of_regexp_stack_memory_address( 954 static ExternalReference address_of_regexp_stack_memory_address(
955 Isolate* isolate); 955 Isolate* isolate);
956 static ExternalReference address_of_regexp_stack_memory_size( 956 static ExternalReference address_of_regexp_stack_memory_size(
957 Isolate* isolate); 957 Isolate* isolate);
958 958
959 // Static variable Heap::NewSpaceStart() 959 // Static variable Heap::NewSpaceStart()
960 static ExternalReference new_space_start(Isolate* isolate); 960 static ExternalReference new_space_start(Isolate* isolate);
961 static ExternalReference new_space_mask(Isolate* isolate);
962 961
963 // Write barrier. 962 // Write barrier.
964 static ExternalReference store_buffer_top(Isolate* isolate); 963 static ExternalReference store_buffer_top(Isolate* isolate);
965 964
966 // Used for fast allocation in generated code. 965 // Used for fast allocation in generated code.
967 static ExternalReference new_space_allocation_top_address(Isolate* isolate); 966 static ExternalReference new_space_allocation_top_address(Isolate* isolate);
968 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); 967 static ExternalReference new_space_allocation_limit_address(Isolate* isolate);
969 static ExternalReference old_space_allocation_top_address(Isolate* isolate); 968 static ExternalReference old_space_allocation_top_address(Isolate* isolate);
970 static ExternalReference old_space_allocation_limit_address(Isolate* isolate); 969 static ExternalReference old_space_allocation_limit_address(Isolate* isolate);
971 970
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 std::vector<ConstantPoolEntry> shared_entries; 1300 std::vector<ConstantPoolEntry> shared_entries;
1302 }; 1301 };
1303 1302
1304 Label emitted_label_; // Records pc_offset of emitted pool 1303 Label emitted_label_; // Records pc_offset of emitted pool
1305 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1304 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1306 }; 1305 };
1307 1306
1308 } // namespace internal 1307 } // namespace internal
1309 } // namespace v8 1308 } // namespace v8
1310 #endif // V8_ASSEMBLER_H_ 1309 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/simulator-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698