| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 29 matching lines...) Expand all Loading... |
| 40 ElementsAccessor() { } | 40 ElementsAccessor() { } |
| 41 virtual ~ElementsAccessor() { } | 41 virtual ~ElementsAccessor() { } |
| 42 virtual MaybeObject* GetWithReceiver(JSObject* obj, | 42 virtual MaybeObject* GetWithReceiver(JSObject* obj, |
| 43 Object* receiver, | 43 Object* receiver, |
| 44 uint32_t index) = 0; | 44 uint32_t index) = 0; |
| 45 | 45 |
| 46 virtual MaybeObject* Delete(JSObject* obj, | 46 virtual MaybeObject* Delete(JSObject* obj, |
| 47 uint32_t index, | 47 uint32_t index, |
| 48 JSReceiver::DeleteMode mode) = 0; | 48 JSReceiver::DeleteMode mode) = 0; |
| 49 | 49 |
| 50 virtual MaybeObject* AddJSArrayKeysToFixedArray(JSArray* other, | 50 virtual MaybeObject* AddElementsToFixedArray(FixedArrayBase* from, |
| 51 FixedArray* keys) = 0; | 51 FixedArray* to) = 0; |
| 52 | 52 |
| 53 // Returns a shared ElementsAccessor for the specified ElementsKind. | 53 // Returns a shared ElementsAccessor for the specified ElementsKind. |
| 54 static ElementsAccessor* ForKind(JSObject::ElementsKind elements_kind) { | 54 static ElementsAccessor* ForKind(JSObject::ElementsKind elements_kind) { |
| 55 ASSERT(elements_kind < JSObject::kElementsKindCount); | 55 ASSERT(elements_kind < JSObject::kElementsKindCount); |
| 56 return elements_accessors_[elements_kind]; | 56 return elements_accessors_[elements_kind]; |
| 57 } | 57 } |
| 58 | 58 |
| 59 static void InitializeOncePerProcess(); | 59 static void InitializeOncePerProcess(); |
| 60 | 60 |
| 61 private: | 61 private: |
| 62 static ElementsAccessor** elements_accessors_; | 62 static ElementsAccessor** elements_accessors_; |
| 63 | 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(ElementsAccessor); | 64 DISALLOW_COPY_AND_ASSIGN(ElementsAccessor); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } } // namespace v8::internal | 67 } } // namespace v8::internal |
| 68 | 68 |
| 69 #endif // V8_ELEMENTS_H_ | 69 #endif // V8_ELEMENTS_H_ |
| OLD | NEW |