| Index: src/x64/full-codegen-x64.cc
|
| ===================================================================
|
| --- src/x64/full-codegen-x64.cc (revision 5628)
|
| +++ src/x64/full-codegen-x64.cc (working copy)
|
| @@ -61,6 +61,12 @@
|
| SetFunctionPosition(function());
|
| Comment cmnt(masm_, "[ function compiled by full code generator");
|
|
|
| +#ifdef DEBUG
|
| + if (strlen(FLAG_stop_at) > 0 &&
|
| + info->function()->name()->IsEqualTo(CStrVector(FLAG_stop_at))) {
|
| + __ int3();
|
| + }
|
| +#endif
|
| __ push(rbp); // Caller's frame pointer.
|
| __ movq(rbp, rsp);
|
| __ push(rsi); // Callee's context.
|
|
|