| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index a016cfb036af81f7c69bdf946515d03a55450475..9bca809ec279b4eaa3d1678eb45ffe751442f2ef 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -62,6 +62,7 @@ class LCodeGen;
|
| V(CallNewArray) \
|
| V(CallRuntime) \
|
| V(CallStub) \
|
| + V(CallExternal) \
|
| V(CheckInstanceType) \
|
| V(CheckMaps) \
|
| V(CheckMapValue) \
|
| @@ -498,6 +499,19 @@ class LCallStub V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| +class LCallExternal V8_FINAL : public LTemplateInstruction<0, 2, 0> {
|
| + public:
|
| + LCallExternal() { }
|
| + DECLARE_CONCRETE_INSTRUCTION(CallExternal, "call-external")
|
| + DECLARE_HYDROGEN_ACCESSOR(CallExternal)
|
| +
|
| + int arity() const { return hydrogen()->argument_count(); }
|
| + ExternalReference external_reference() const {
|
| + return hydrogen()->external_reference();
|
| + }
|
| +};
|
| +
|
| +
|
| class LUnknownOSRValue V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| public:
|
| virtual bool HasInterestingComment(LCodeGen* gen) const V8_OVERRIDE {
|
|
|