| Index: src/a64/lithium-a64.cc
|
| diff --git a/src/a64/lithium-a64.cc b/src/a64/lithium-a64.cc
|
| index 5863fd34a776cff80df18d56f756c62d72bef425..fb65d042766e6831c0be37f98f5fbf598692925f 100644
|
| --- a/src/a64/lithium-a64.cc
|
| +++ b/src/a64/lithium-a64.cc
|
| @@ -263,6 +263,24 @@ void LGap::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());
|
| @@ -1601,6 +1619,14 @@ LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* 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 =
|
|
|