| Index: src/crankshaft/ia32/lithium-ia32.h
|
| diff --git a/src/crankshaft/ia32/lithium-ia32.h b/src/crankshaft/ia32/lithium-ia32.h
|
| index ab7a4b55167192f1da84bf2b1ce670aa928c9c35..f22fac379b5f0b03eec780bacaec8a67d033e23e 100644
|
| --- a/src/crankshaft/ia32/lithium-ia32.h
|
| +++ b/src/crankshaft/ia32/lithium-ia32.h
|
| @@ -64,6 +64,7 @@
|
| V(ConstantT) \
|
| V(ConstructDouble) \
|
| V(Context) \
|
| + V(DateField) \
|
| V(DebugBreak) \
|
| V(DeclareGlobals) \
|
| V(Deoptimize) \
|
| @@ -1350,6 +1351,27 @@
|
| };
|
|
|
|
|
| +class LDateField final : public LTemplateInstruction<1, 1, 1> {
|
| + public:
|
| + LDateField(LOperand* date, LOperand* temp, Smi* index)
|
| + : index_(index) {
|
| + inputs_[0] = date;
|
| + temps_[0] = temp;
|
| + }
|
| +
|
| + LOperand* date() { return inputs_[0]; }
|
| + LOperand* temp() { return temps_[0]; }
|
| +
|
| + DECLARE_CONCRETE_INSTRUCTION(DateField, "date-field")
|
| + DECLARE_HYDROGEN_ACCESSOR(DateField)
|
| +
|
| + Smi* index() const { return index_; }
|
| +
|
| + private:
|
| + Smi* index_;
|
| +};
|
| +
|
| +
|
| class LSeqStringGetChar final : public LTemplateInstruction<1, 2, 0> {
|
| public:
|
| LSeqStringGetChar(LOperand* string, LOperand* index) {
|
|
|