| Index: src/compiler/linkage.h
|
| diff --git a/src/compiler/linkage.h b/src/compiler/linkage.h
|
| index 07f835638680895fee3ba3fb3c049cfb181d72ad..8c6b6c7f95239120b1c969c551c4b903f84e0b86 100644
|
| --- a/src/compiler/linkage.h
|
| +++ b/src/compiler/linkage.h
|
| @@ -76,9 +76,9 @@ class LinkageLocation {
|
| kPointerSize);
|
| }
|
|
|
| - static LinkageLocation ForSavedCallerMarker() {
|
| + static LinkageLocation ForSavedCallerFunction() {
|
| return ForCalleeFrameSlot((StandardFrameConstants::kCallerPCOffset -
|
| - StandardFrameConstants::kMarkerOffset) /
|
| + StandardFrameConstants::kFunctionOffset) /
|
| kPointerSize);
|
| }
|
|
|
| @@ -164,6 +164,7 @@ class CallDescriptor final : public ZoneObject {
|
| kRestoreJSSP = 1u << 8,
|
| // Causes the code generator to initialize the root register.
|
| kInitializeRootRegister = 1u << 9,
|
| + kHasStandardFrameHeader = 1u << 10,
|
| kPatchableCallSiteWithNop = kPatchableCallSite | kNeedsNopAfterCall
|
| };
|
| typedef base::Flags<Flag> Flags;
|
|
|