| Index: src/x64/ic-x64.cc
|
| ===================================================================
|
| --- src/x64/ic-x64.cc (revision 2143)
|
| +++ src/x64/ic-x64.cc (working copy)
|
| @@ -40,6 +40,14 @@
|
| UNIMPLEMENTED();
|
| }
|
|
|
| +void KeyedStoreIC::ClearInlinedVersion(Address address) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +void KeyedStoreIC::RestoreInlinedVersion(Address address) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| void KeyedLoadIC::Generate(MacroAssembler* masm,
|
| ExternalReference const& f) {
|
| masm->int3(); // UNIMPLEMENTED.
|
| @@ -58,6 +66,11 @@
|
| return false;
|
| }
|
|
|
| +bool KeyedStoreIC::PatchInlinedStore(Address address, Object* map) {
|
| + UNIMPLEMENTED();
|
| + return false;
|
| +}
|
| +
|
| Object* KeyedLoadStubCompiler::CompileLoadArrayLength(String* name) {
|
| UNIMPLEMENTED();
|
| return NULL;
|
|
|