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

Side by Side Diff: src/objects-inl.h

Issue 1322803002: Adding ElementsAccessor::Unshift (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@2015-08-28_elements_accessor_pop
Patch Set: Removing needless SetValue implementations Created 5 years, 3 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
« src/objects.h ('K') | « src/objects.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Review notes: 5 // Review notes:
6 // 6 //
7 // - The use of macros in these inline functions may seem superfluous 7 // - The use of macros in these inline functions may seem superfluous
8 // but it is absolutely needed to make sure gcc generates optimal 8 // but it is absolutely needed to make sure gcc generates optimal
9 // code. gcc is not happy when attempting to inline too deep. 9 // code. gcc is not happy when attempting to inline too deep.
10 // 10 //
(...skipping 2407 matching lines...) Expand 10 before | Expand all | Expand 10 after
2418 Handle<Object> FixedArray::get(Handle<FixedArray> array, int index) { 2418 Handle<Object> FixedArray::get(Handle<FixedArray> array, int index) {
2419 return handle(array->get(index), array->GetIsolate()); 2419 return handle(array->get(index), array->GetIsolate());
2420 } 2420 }
2421 2421
2422 2422
2423 bool FixedArray::is_the_hole(int index) { 2423 bool FixedArray::is_the_hole(int index) {
2424 return get(index) == GetHeap()->the_hole_value(); 2424 return get(index) == GetHeap()->the_hole_value();
2425 } 2425 }
2426 2426
2427 2427
2428 void FixedArray::SetValue(uint32_t index, Object* value) { set(index, value); }
2429
2430
2428 void FixedArray::set(int index, Smi* value) { 2431 void FixedArray::set(int index, Smi* value) {
2429 DCHECK(map() != GetHeap()->fixed_cow_array_map()); 2432 DCHECK(map() != GetHeap()->fixed_cow_array_map());
2430 DCHECK(index >= 0 && index < this->length()); 2433 DCHECK(index >= 0 && index < this->length());
2431 DCHECK(reinterpret_cast<Object*>(value)->IsSmi()); 2434 DCHECK(reinterpret_cast<Object*>(value)->IsSmi());
2432 int offset = kHeaderSize + index * kPointerSize; 2435 int offset = kHeaderSize + index * kPointerSize;
2433 WRITE_FIELD(this, offset, value); 2436 WRITE_FIELD(this, offset, value);
2434 } 2437 }
2435 2438
2436 2439
2437 void FixedArray::set(int index, Object* value) { 2440 void FixedArray::set(int index, Object* value) {
(...skipping 27 matching lines...) Expand all
2465 Handle<Object> FixedDoubleArray::get(Handle<FixedDoubleArray> array, 2468 Handle<Object> FixedDoubleArray::get(Handle<FixedDoubleArray> array,
2466 int index) { 2469 int index) {
2467 if (array->is_the_hole(index)) { 2470 if (array->is_the_hole(index)) {
2468 return array->GetIsolate()->factory()->the_hole_value(); 2471 return array->GetIsolate()->factory()->the_hole_value();
2469 } else { 2472 } else {
2470 return array->GetIsolate()->factory()->NewNumber(array->get_scalar(index)); 2473 return array->GetIsolate()->factory()->NewNumber(array->get_scalar(index));
2471 } 2474 }
2472 } 2475 }
2473 2476
2474 2477
2478 void FixedDoubleArray::SetValue(uint32_t index, Object* value) {
2479 set(index, value->Number());
2480 }
2481
2482
2475 void FixedDoubleArray::set(int index, double value) { 2483 void FixedDoubleArray::set(int index, double value) {
2476 DCHECK(map() != GetHeap()->fixed_cow_array_map() && 2484 DCHECK(map() != GetHeap()->fixed_cow_array_map() &&
2477 map() != GetHeap()->fixed_array_map()); 2485 map() != GetHeap()->fixed_array_map());
2478 int offset = kHeaderSize + index * kDoubleSize; 2486 int offset = kHeaderSize + index * kDoubleSize;
2479 if (std::isnan(value)) { 2487 if (std::isnan(value)) {
2480 WRITE_DOUBLE_FIELD(this, offset, std::numeric_limits<double>::quiet_NaN()); 2488 WRITE_DOUBLE_FIELD(this, offset, std::numeric_limits<double>::quiet_NaN());
2481 } else { 2489 } else {
2482 WRITE_DOUBLE_FIELD(this, offset, value); 2490 WRITE_DOUBLE_FIELD(this, offset, value);
2483 } 2491 }
2484 DCHECK(!is_the_hole(index)); 2492 DCHECK(!is_the_hole(index));
(...skipping 5401 matching lines...) Expand 10 before | Expand all | Expand 10 after
7886 #undef READ_INT64_FIELD 7894 #undef READ_INT64_FIELD
7887 #undef WRITE_INT64_FIELD 7895 #undef WRITE_INT64_FIELD
7888 #undef READ_BYTE_FIELD 7896 #undef READ_BYTE_FIELD
7889 #undef WRITE_BYTE_FIELD 7897 #undef WRITE_BYTE_FIELD
7890 #undef NOBARRIER_READ_BYTE_FIELD 7898 #undef NOBARRIER_READ_BYTE_FIELD
7891 #undef NOBARRIER_WRITE_BYTE_FIELD 7899 #undef NOBARRIER_WRITE_BYTE_FIELD
7892 7900
7893 } } // namespace v8::internal 7901 } } // namespace v8::internal
7894 7902
7895 #endif // V8_OBJECTS_INL_H_ 7903 #endif // V8_OBJECTS_INL_H_
OLDNEW
« src/objects.h ('K') | « src/objects.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698