| Index: src/ic/ia32/handler-compiler-ia32.cc
|
| diff --git a/src/ic/ia32/handler-compiler-ia32.cc b/src/ic/ia32/handler-compiler-ia32.cc
|
| index 7a0fa9cf2a69815531615fcd211c93b61fb681f7..2a883c7c03b384870352c1e6532560d82f6a8869 100644
|
| --- a/src/ic/ia32/handler-compiler-ia32.cc
|
| +++ b/src/ic/ia32/handler-compiler-ia32.cc
|
| @@ -199,7 +199,7 @@ void PropertyHandlerCompiler::GenerateApiAccessorCall(
|
| Handle<CallHandlerInfo> api_call_info = optimization.api_call_info();
|
| bool call_data_undefined = false;
|
| // Put call data in place.
|
| - if (api_call_info->data()->IsUndefined()) {
|
| + if (api_call_info->data()->IsUndefined(isolate)) {
|
| call_data_undefined = true;
|
| __ mov(data, Immediate(isolate->factory()->undefined_value()));
|
| } else {
|
| @@ -237,12 +237,12 @@ void PropertyHandlerCompiler::GenerateCheckPropertyCell(
|
| MacroAssembler* masm, Handle<JSGlobalObject> global, Handle<Name> name,
|
| Register scratch, Label* miss) {
|
| Handle<PropertyCell> cell = JSGlobalObject::EnsurePropertyCell(global, name);
|
| - DCHECK(cell->value()->IsTheHole());
|
| - Factory* factory = masm->isolate()->factory();
|
| - Handle<WeakCell> weak_cell = factory->NewWeakCell(cell);
|
| + Isolate* isolate = masm->isolate();
|
| + DCHECK(cell->value()->IsTheHole(isolate));
|
| + Handle<WeakCell> weak_cell = isolate->factory()->NewWeakCell(cell);
|
| __ LoadWeakValue(scratch, weak_cell, miss);
|
| __ cmp(FieldOperand(scratch, PropertyCell::kValueOffset),
|
| - Immediate(factory->the_hole_value()));
|
| + Immediate(isolate->factory()->the_hole_value()));
|
| __ j(not_equal, miss);
|
| }
|
|
|
| @@ -572,7 +572,7 @@ void NamedLoadHandlerCompiler::GenerateLoadConstant(Handle<Object> value) {
|
| void NamedLoadHandlerCompiler::GenerateLoadInterceptorWithFollowup(
|
| LookupIterator* it, Register holder_reg) {
|
| DCHECK(holder()->HasNamedInterceptor());
|
| - DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
|
| + DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined(isolate()));
|
|
|
| // Compile the interceptor call, followed by inline code to load the
|
| // property from further up the prototype chain if the call fails.
|
| @@ -639,7 +639,7 @@ void NamedLoadHandlerCompiler::GenerateLoadInterceptorWithFollowup(
|
|
|
| void NamedLoadHandlerCompiler::GenerateLoadInterceptor(Register holder_reg) {
|
| DCHECK(holder()->HasNamedInterceptor());
|
| - DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined());
|
| + DCHECK(!holder()->GetNamedInterceptor()->getter()->IsUndefined(isolate()));
|
| // Call the runtime system to load the interceptor.
|
| __ pop(scratch2()); // save old return address
|
| PushInterceptorArguments(masm(), receiver(), holder_reg, this->name(),
|
| @@ -660,7 +660,7 @@ Handle<Code> NamedStoreHandlerCompiler::CompileStoreCallback(
|
| __ push(holder_reg);
|
| // If the callback cannot leak, then push the callback directly,
|
| // otherwise wrap it in a weak cell.
|
| - if (callback->data()->IsUndefined() || callback->data()->IsSmi()) {
|
| + if (callback->data()->IsUndefined(isolate()) || callback->data()->IsSmi()) {
|
| __ Push(callback);
|
| } else {
|
| Handle<WeakCell> cell = isolate()->factory()->NewWeakCell(callback);
|
|
|