| Index: src/ic.cc
|
| ===================================================================
|
| --- src/ic.cc (revision 3816)
|
| +++ src/ic.cc (working copy)
|
| @@ -1320,16 +1320,6 @@
|
| }
|
|
|
|
|
| -void LoadIC::GenerateInitialize(MacroAssembler* masm) {
|
| - Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
|
| -}
|
| -
|
| -
|
| -void LoadIC::GeneratePreMonomorphic(MacroAssembler* masm) {
|
| - Generate(masm, ExternalReference(IC_Utility(kLoadIC_Miss)));
|
| -}
|
| -
|
| -
|
| // Used from ic_<arch>.cc
|
| Object* KeyedLoadIC_Miss(Arguments args) {
|
| NoHandleAllocation na;
|
| @@ -1340,16 +1330,6 @@
|
| }
|
|
|
|
|
| -void KeyedLoadIC::GenerateInitialize(MacroAssembler* masm) {
|
| - Generate(masm, ExternalReference(IC_Utility(kKeyedLoadIC_Miss)));
|
| -}
|
| -
|
| -
|
| -void KeyedLoadIC::GeneratePreMonomorphic(MacroAssembler* masm) {
|
| - Generate(masm, ExternalReference(IC_Utility(kKeyedLoadIC_Miss)));
|
| -}
|
| -
|
| -
|
| // Used from ic_<arch>.cc.
|
| Object* StoreIC_Miss(Arguments args) {
|
| NoHandleAllocation na;
|
| @@ -1406,16 +1386,6 @@
|
| }
|
|
|
|
|
| -void KeyedStoreIC::GenerateInitialize(MacroAssembler* masm) {
|
| - Generate(masm, ExternalReference(IC_Utility(kKeyedStoreIC_Miss)));
|
| -}
|
| -
|
| -
|
| -void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) {
|
| - Generate(masm, ExternalReference(IC_Utility(kKeyedStoreIC_Miss)));
|
| -}
|
| -
|
| -
|
| static Address IC_utilities[] = {
|
| #define ADDR(name) FUNCTION_ADDR(name),
|
| IC_UTIL_LIST(ADDR)
|
|
|