| Index: src/x64/assembler-x64-inl.h
|
| ===================================================================
|
| --- src/x64/assembler-x64-inl.h (revision 7006)
|
| +++ src/x64/assembler-x64-inl.h (working copy)
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2009 the V8 project authors. All rights reserved.
|
| +// Copyright 2011 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -366,6 +366,8 @@
|
| CPU::FlushICache(pc_, sizeof(Address));
|
| } else if (RelocInfo::IsCodeTarget(mode)) {
|
| visitor->VisitCodeTarget(this);
|
| + } else if (mode == RelocInfo::GLOBAL_PROPERTY_CELL) {
|
| + visitor->VisitGlobalPropertyCell(this);
|
| } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
|
| visitor->VisitExternalReference(target_reference_address());
|
| CPU::FlushICache(pc_, sizeof(Address));
|
| @@ -392,6 +394,8 @@
|
| CPU::FlushICache(pc_, sizeof(Address));
|
| } else if (RelocInfo::IsCodeTarget(mode)) {
|
| StaticVisitor::VisitCodeTarget(this);
|
| + } else if (mode == RelocInfo::GLOBAL_PROPERTY_CELL) {
|
| + StaticVisitor::VisitGlobalPropertyCell(this);
|
| } else if (mode == RelocInfo::EXTERNAL_REFERENCE) {
|
| StaticVisitor::VisitExternalReference(target_reference_address());
|
| CPU::FlushICache(pc_, sizeof(Address));
|
|
|