Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: src/debug.h

Issue 7780033: Debugger: fix stepping next with trycatch recursion (Closed) Base URL: gh:indutny/v8@master
Patch Set: sort authors Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « AUTHORS ('k') | src/debug.cc » ('j') | src/debug.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 499
500 // Source statement position from last step next action. 500 // Source statement position from last step next action.
501 int last_statement_position_; 501 int last_statement_position_;
502 502
503 // Number of steps left to perform before debug event. 503 // Number of steps left to perform before debug event.
504 int step_count_; 504 int step_count_;
505 505
506 // Frame pointer from last step next action. 506 // Frame pointer from last step next action.
507 Address last_fp_; 507 Address last_fp_;
508 508
509 // Step action for queued step that needs to be performed.
510 StepAction queued_step_action_;
511
512 // Number of queued steps left to perform before debug event.
513 int queued_step_count_;
514
509 // Frame pointer for frame from which step in was performed. 515 // Frame pointer for frame from which step in was performed.
510 Address step_into_fp_; 516 Address step_into_fp_;
511 517
512 // Frame pointer for the frame where debugger should be called when current 518 // Frame pointer for the frame where debugger should be called when current
513 // step out action is completed. 519 // step out action is completed.
514 Address step_out_fp_; 520 Address step_out_fp_;
515 521
516 // Storage location for jump when exiting debug break calls. 522 // Storage location for jump when exiting debug break calls.
517 Address after_break_target_; 523 Address after_break_target_;
518 524
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
1051 1057
1052 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); 1058 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread);
1053 }; 1059 };
1054 1060
1055 1061
1056 } } // namespace v8::internal 1062 } } // namespace v8::internal
1057 1063
1058 #endif // ENABLE_DEBUGGER_SUPPORT 1064 #endif // ENABLE_DEBUGGER_SUPPORT
1059 1065
1060 #endif // V8_DEBUG_H_ 1066 #endif // V8_DEBUG_H_
OLDNEW
« no previous file with comments | « AUTHORS ('k') | src/debug.cc » ('j') | src/debug.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698