| Index: src/a64/lithium-a64.h
|
| diff --git a/src/a64/lithium-a64.h b/src/a64/lithium-a64.h
|
| index d734317edeaceb3a08484d7a89882091075d4381..a8846f48b7dfaac5c9b64ccf276e06f687b6ffbf 100644
|
| --- a/src/a64/lithium-a64.h
|
| +++ b/src/a64/lithium-a64.h
|
| @@ -122,6 +122,7 @@ class LCodeGen;
|
| V(IsUndetectableAndBranch) \
|
| V(Label) \
|
| V(LazyBailout) \
|
| + V(LinkObjectInList) \
|
| V(LoadContextSlot) \
|
| V(LoadExternalArrayPointer) \
|
| V(LoadFunctionPrototype) \
|
| @@ -1530,6 +1531,25 @@ class LIsUndetectableAndBranch: public LControlInstruction<1, 1> {
|
| };
|
|
|
|
|
| +class LLinkObjectInList: public LTemplateInstruction<0, 1, 1> {
|
| + public:
|
| + explicit LLinkObjectInList(LOperand* object, LOperand* temp) {
|
| + inputs_[0] = object;
|
| + temps_[0] = temp;
|
| + }
|
| +
|
| + LOperand* object() { return inputs_[0]; }
|
| + LOperand* temp() { return temps_[0]; }
|
| +
|
| + ExternalReference GetReference(Isolate* isolate);
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(LinkObjectInList, "link-object-in-list")
|
| + DECLARE_HYDROGEN_ACCESSOR(LinkObjectInList)
|
| +
|
| + virtual void PrintDataTo(StringStream* stream);
|
| +};
|
| +
|
| +
|
| class LLoadContextSlot: public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| explicit LLoadContextSlot(LOperand* context) {
|
|
|