| 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 3349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3360 | 3360 |
| 3361 bool v8::Object::SetHiddenValue(v8::Handle<v8::String> key, | 3361 bool v8::Object::SetHiddenValue(v8::Handle<v8::String> key, |
| 3362 v8::Handle<v8::Value> value) { | 3362 v8::Handle<v8::Value> value) { |
| 3363 i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate(); | 3363 i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate(); |
| 3364 ON_BAILOUT(isolate, "v8::Object::SetHiddenValue()", return false); | 3364 ON_BAILOUT(isolate, "v8::Object::SetHiddenValue()", return false); |
| 3365 if (value.IsEmpty()) return DeleteHiddenValue(key); | 3365 if (value.IsEmpty()) return DeleteHiddenValue(key); |
| 3366 ENTER_V8(isolate); | 3366 ENTER_V8(isolate); |
| 3367 i::HandleScope scope(isolate); | 3367 i::HandleScope scope(isolate); |
| 3368 i::Handle<i::JSObject> self = Utils::OpenHandle(this); | 3368 i::Handle<i::JSObject> self = Utils::OpenHandle(this); |
| 3369 i::Handle<i::String> key_obj = Utils::OpenHandle(*key); | 3369 i::Handle<i::String> key_obj = Utils::OpenHandle(*key); |
| 3370 i::Handle<i::String> key_symbol = FACTORY->LookupSymbol(key_obj); | 3370 i::Handle<i::String> key_symbol = isolate->factory()->LookupSymbol(key_obj); |
| 3371 i::Handle<i::Object> value_obj = Utils::OpenHandle(*value); | 3371 i::Handle<i::Object> value_obj = Utils::OpenHandle(*value); |
| 3372 i::Handle<i::Object> result = | 3372 i::Handle<i::Object> result = |
| 3373 i::JSObject::SetHiddenProperty(self, key_symbol, value_obj); | 3373 i::JSObject::SetHiddenProperty(self, key_symbol, value_obj); |
| 3374 return *result == *self; | 3374 return *result == *self; |
| 3375 } | 3375 } |
| 3376 | 3376 |
| 3377 | 3377 |
| 3378 v8::Local<v8::Value> v8::Object::GetHiddenValue(v8::Handle<v8::String> key) { | 3378 v8::Local<v8::Value> v8::Object::GetHiddenValue(v8::Handle<v8::String> key) { |
| 3379 i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate(); | 3379 i::Isolate* isolate = Utils::OpenHandle(this)->GetIsolate(); |
| 3380 ON_BAILOUT(isolate, "v8::Object::GetHiddenValue()", | 3380 ON_BAILOUT(isolate, "v8::Object::GetHiddenValue()", |
| (...skipping 3335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6716 | 6716 |
| 6717 v->VisitPointers(blocks_.first(), first_block_limit_); | 6717 v->VisitPointers(blocks_.first(), first_block_limit_); |
| 6718 | 6718 |
| 6719 for (int i = 1; i < blocks_.length(); i++) { | 6719 for (int i = 1; i < blocks_.length(); i++) { |
| 6720 v->VisitPointers(blocks_[i], &blocks_[i][kHandleBlockSize]); | 6720 v->VisitPointers(blocks_[i], &blocks_[i][kHandleBlockSize]); |
| 6721 } | 6721 } |
| 6722 } | 6722 } |
| 6723 | 6723 |
| 6724 | 6724 |
| 6725 } } // namespace v8::internal | 6725 } } // namespace v8::internal |
| OLD | NEW |