OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 Add(stub_cache->map_reference(StubCache::kSecondary).address(), | 290 Add(stub_cache->map_reference(StubCache::kSecondary).address(), |
291 STUB_CACHE_TABLE, | 291 STUB_CACHE_TABLE, |
292 6, | 292 6, |
293 "StubCache::secondary_->map"); | 293 "StubCache::secondary_->map"); |
294 | 294 |
295 // Runtime entries | 295 // Runtime entries |
296 Add(ExternalReference::perform_gc_function(isolate).address(), | 296 Add(ExternalReference::perform_gc_function(isolate).address(), |
297 RUNTIME_ENTRY, | 297 RUNTIME_ENTRY, |
298 1, | 298 1, |
299 "Runtime::PerformGC"); | 299 "Runtime::PerformGC"); |
300 Add(ExternalReference::random_uint32_function(isolate).address(), | |
301 RUNTIME_ENTRY, | |
302 3, | |
303 "V8::Random"); | |
304 Add(ExternalReference::delete_handle_scope_extensions(isolate).address(), | 300 Add(ExternalReference::delete_handle_scope_extensions(isolate).address(), |
305 RUNTIME_ENTRY, | 301 RUNTIME_ENTRY, |
306 4, | 302 4, |
307 "HandleScope::DeleteExtensions"); | 303 "HandleScope::DeleteExtensions"); |
308 Add(ExternalReference:: | 304 Add(ExternalReference:: |
309 incremental_marking_record_write_function(isolate).address(), | 305 incremental_marking_record_write_function(isolate).address(), |
310 RUNTIME_ENTRY, | 306 RUNTIME_ENTRY, |
311 5, | 307 5, |
312 "IncrementalMarking::RecordWrite"); | 308 "IncrementalMarking::RecordWrite"); |
313 Add(ExternalReference::store_buffer_overflow_function(isolate).address(), | 309 Add(ExternalReference::store_buffer_overflow_function(isolate).address(), |
(...skipping 1561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1875 | 1871 |
1876 bool SnapshotByteSource::AtEOF() { | 1872 bool SnapshotByteSource::AtEOF() { |
1877 if (0u + length_ - position_ > 2 * sizeof(uint32_t)) return false; | 1873 if (0u + length_ - position_ > 2 * sizeof(uint32_t)) return false; |
1878 for (int x = position_; x < length_; x++) { | 1874 for (int x = position_; x < length_; x++) { |
1879 if (data_[x] != SerializerDeserializer::nop()) return false; | 1875 if (data_[x] != SerializerDeserializer::nop()) return false; |
1880 } | 1876 } |
1881 return true; | 1877 return true; |
1882 } | 1878 } |
1883 | 1879 |
1884 } } // namespace v8::internal | 1880 } } // namespace v8::internal |
OLD | NEW |