| Index: src/ia32/lithium-ia32.cc
|
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
|
| index 8c8103f61996e9f9a4604dc32a7ce3f4c4b39066..7edf2d9f3e0a4148c047da290fbd38c9fb35af9a 100644
|
| --- a/src/ia32/lithium-ia32.cc
|
| +++ b/src/ia32/lithium-ia32.cc
|
| @@ -302,24 +302,6 @@ void LCallConstantFunction::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -ExternalReference LLinkObjectInList::GetReference(Isolate* isolate) {
|
| - switch (hydrogen()->known_list()) {
|
| - case HLinkObjectInList::ALLOCATION_SITE_LIST:
|
| - return ExternalReference::allocation_sites_list_address(isolate);
|
| - }
|
| -
|
| - UNREACHABLE();
|
| - // Return a dummy value
|
| - return ExternalReference::isolate_address(isolate);
|
| -}
|
| -
|
| -
|
| -void LLinkObjectInList::PrintDataTo(StringStream* stream) {
|
| - object()->PrintTo(stream);
|
| - stream->Add(" offset %d", hydrogen()->store_field().offset());
|
| -}
|
| -
|
| -
|
| void LLoadContextSlot::PrintDataTo(StringStream* stream) {
|
| context()->PrintTo(stream);
|
| stream->Add("[%d]", slot_index());
|
| @@ -2191,14 +2173,6 @@ LInstruction* LChunkBuilder::DoStoreGlobalGeneric(HStoreGlobalGeneric* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoLinkObjectInList(HLinkObjectInList* instr) {
|
| - LOperand* object = UseRegister(instr->value());
|
| - LOperand* temp = TempRegister();
|
| - LLinkObjectInList* result = new(zone()) LLinkObjectInList(object, temp);
|
| - return result;
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) {
|
| LOperand* context = UseRegisterAtStart(instr->value());
|
| LInstruction* result =
|
|
|