Chromium Code Reviews| Index: src/x64/fast-codegen-x64.cc |
| =================================================================== |
| --- src/x64/fast-codegen-x64.cc (revision 3428) |
| +++ src/x64/fast-codegen-x64.cc (working copy) |
| @@ -1654,6 +1654,12 @@ |
| } |
| +void FastCodeGenerator::VisitThisFunction(ThisFunction* expr) { |
| + __ movq(rax, Operand(rbp, JavaScriptFrameConstants::kFunctionOffset)); |
| + Move(expr->context(), rax); |
| +} |
| + |
| + |
| #undef __ |