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

Side by Side Diff: src/objects.h

Issue 6613005: Implementation of strict mode in SetElement. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: SetElement and strict mode. Created 9 years, 9 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
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 1522 matching lines...) Expand 10 before | Expand all | Expand 10 after
1533 DICTIONARY_ELEMENT 1533 DICTIONARY_ELEMENT
1534 }; 1534 };
1535 1535
1536 LocalElementType HasLocalElement(uint32_t index); 1536 LocalElementType HasLocalElement(uint32_t index);
1537 1537
1538 bool HasElementWithInterceptor(JSObject* receiver, uint32_t index); 1538 bool HasElementWithInterceptor(JSObject* receiver, uint32_t index);
1539 bool HasElementPostInterceptor(JSObject* receiver, uint32_t index); 1539 bool HasElementPostInterceptor(JSObject* receiver, uint32_t index);
1540 1540
1541 MUST_USE_RESULT MaybeObject* SetFastElement(uint32_t index, 1541 MUST_USE_RESULT MaybeObject* SetFastElement(uint32_t index,
1542 Object* value, 1542 Object* value,
1543 StrictModeFlag strict_mode,
1543 bool check_prototype = true); 1544 bool check_prototype = true);
1544 1545
1545 // Set the index'th array element. 1546 // Set the index'th array element.
1546 // A Failure object is returned if GC is needed. 1547 // A Failure object is returned if GC is needed.
1547 MUST_USE_RESULT MaybeObject* SetElement(uint32_t index, 1548 MUST_USE_RESULT MaybeObject* SetElement(uint32_t index,
1548 Object* value, 1549 Object* value,
1550 StrictModeFlag strict_mode,
1549 bool check_prototype = true); 1551 bool check_prototype = true);
1550 1552
1551 // Returns the index'th element. 1553 // Returns the index'th element.
1552 // The undefined object if index is out of bounds. 1554 // The undefined object if index is out of bounds.
1553 MaybeObject* GetElementWithReceiver(Object* receiver, uint32_t index); 1555 MaybeObject* GetElementWithReceiver(Object* receiver, uint32_t index);
1554 MaybeObject* GetElementWithInterceptor(Object* receiver, uint32_t index); 1556 MaybeObject* GetElementWithInterceptor(Object* receiver, uint32_t index);
1555 1557
1556 // Get external element value at index if there is one and undefined 1558 // Get external element value at index if there is one and undefined
1557 // otherwise. Can return a failure if allocation of a heap number 1559 // otherwise. Can return a failure if allocation of a heap number
1558 // failed. 1560 // failed.
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
1798 1800
1799 private: 1801 private:
1800 MUST_USE_RESULT MaybeObject* GetElementWithCallback(Object* receiver, 1802 MUST_USE_RESULT MaybeObject* GetElementWithCallback(Object* receiver,
1801 Object* structure, 1803 Object* structure,
1802 uint32_t index, 1804 uint32_t index,
1803 Object* holder); 1805 Object* holder);
1804 MaybeObject* SetElementWithCallback(Object* structure, 1806 MaybeObject* SetElementWithCallback(Object* structure,
1805 uint32_t index, 1807 uint32_t index,
1806 Object* value, 1808 Object* value,
1807 JSObject* holder); 1809 JSObject* holder);
1808 MUST_USE_RESULT MaybeObject* SetElementWithInterceptor(uint32_t index, 1810 MUST_USE_RESULT MaybeObject* SetElementWithInterceptor(
1809 Object* value, 1811 uint32_t index,
1810 bool check_prototype); 1812 Object* value,
1813 StrictModeFlag strict_mode,
1814 bool check_prototype);
1811 MUST_USE_RESULT MaybeObject* SetElementWithoutInterceptor( 1815 MUST_USE_RESULT MaybeObject* SetElementWithoutInterceptor(
1812 uint32_t index, 1816 uint32_t index,
1813 Object* value, 1817 Object* value,
1818 StrictModeFlag strict_mode,
1814 bool check_prototype); 1819 bool check_prototype);
1815 1820
1816 MaybeObject* GetElementPostInterceptor(Object* receiver, uint32_t index); 1821 MaybeObject* GetElementPostInterceptor(Object* receiver, uint32_t index);
1817 1822
1818 MUST_USE_RESULT MaybeObject* DeletePropertyPostInterceptor(String* name, 1823 MUST_USE_RESULT MaybeObject* DeletePropertyPostInterceptor(String* name,
1819 DeleteMode mode); 1824 DeleteMode mode);
1820 MUST_USE_RESULT MaybeObject* DeletePropertyWithInterceptor(String* name); 1825 MUST_USE_RESULT MaybeObject* DeletePropertyWithInterceptor(String* name);
1821 1826
1822 MUST_USE_RESULT MaybeObject* DeleteElementPostInterceptor(uint32_t index, 1827 MUST_USE_RESULT MaybeObject* DeleteElementPostInterceptor(uint32_t index,
1823 DeleteMode mode); 1828 DeleteMode mode);
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after
2440 static inline Dictionary<Shape, Key>* cast(Object* obj) { 2445 static inline Dictionary<Shape, Key>* cast(Object* obj) {
2441 return reinterpret_cast<Dictionary<Shape, Key>*>(obj); 2446 return reinterpret_cast<Dictionary<Shape, Key>*>(obj);
2442 } 2447 }
2443 2448
2444 // Returns the value at entry. 2449 // Returns the value at entry.
2445 Object* ValueAt(int entry) { 2450 Object* ValueAt(int entry) {
2446 return this->get(HashTable<Shape, Key>::EntryToIndex(entry)+1); 2451 return this->get(HashTable<Shape, Key>::EntryToIndex(entry)+1);
2447 } 2452 }
2448 2453
2449 // Set the value for entry. 2454 // Set the value for entry.
2450 void ValueAtPut(int entry, Object* value) { 2455 // Returns false if the put wasn't performed due to property being read only.
2456 // Returns true on successful put.
2457 bool ValueAtPut(int entry, Object* value) {
2451 // Check that this value can actually be written. 2458 // Check that this value can actually be written.
2452 PropertyDetails details = DetailsAt(entry); 2459 PropertyDetails details = DetailsAt(entry);
2453 // If a value has not been initilized we allow writing to it even if 2460 // If a value has not been initilized we allow writing to it even if
2454 // it is read only (a declared const that has not been initialized). 2461 // it is read only (a declared const that has not been initialized).
2455 if (details.IsReadOnly() && !ValueAt(entry)->IsTheHole()) return; 2462 if (details.IsReadOnly() && !ValueAt(entry)->IsTheHole()) {
2456 this->set(HashTable<Shape, Key>::EntryToIndex(entry)+1, value); 2463 return false;
2464 }
2465 this->set(HashTable<Shape, Key>::EntryToIndex(entry) + 1, value);
2466 return true;
2457 } 2467 }
2458 2468
2459 // Returns the property details for the property at entry. 2469 // Returns the property details for the property at entry.
2460 PropertyDetails DetailsAt(int entry) { 2470 PropertyDetails DetailsAt(int entry) {
2461 ASSERT(entry >= 0); // Not found is -1, which is not caught by get(). 2471 ASSERT(entry >= 0); // Not found is -1, which is not caught by get().
2462 return PropertyDetails( 2472 return PropertyDetails(
2463 Smi::cast(this->get(HashTable<Shape, Key>::EntryToIndex(entry) + 2))); 2473 Smi::cast(this->get(HashTable<Shape, Key>::EntryToIndex(entry) + 2)));
2464 } 2474 }
2465 2475
2466 // Set the details for entry. 2476 // Set the details for entry.
(...skipping 4095 matching lines...) Expand 10 before | Expand all | Expand 10 after
6562 } else { 6572 } else {
6563 value &= ~(1 << bit_position); 6573 value &= ~(1 << bit_position);
6564 } 6574 }
6565 return value; 6575 return value;
6566 } 6576 }
6567 }; 6577 };
6568 6578
6569 } } // namespace v8::internal 6579 } } // namespace v8::internal
6570 6580
6571 #endif // V8_OBJECTS_H_ 6581 #endif // V8_OBJECTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698