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

Side by Side Diff: src/mips64/assembler-mips64.h

Issue 1222093007: Debugger: use debug break slot to break on call. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased and addressed comments Created 5 years, 5 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 | « src/mips/full-codegen-mips.cc ('k') | src/mips64/debug-mips64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1098 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope); 1098 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope);
1099 }; 1099 };
1100 1100
1101 // Debugging. 1101 // Debugging.
1102 1102
1103 // Mark address of the ExitJSFrame code. 1103 // Mark address of the ExitJSFrame code.
1104 void RecordJSReturn(); 1104 void RecordJSReturn();
1105 1105
1106 // Mark address of a debug break slot. 1106 // Mark address of a debug break slot.
1107 void RecordDebugBreakSlot(); 1107 void RecordDebugBreakSlot();
1108 void RecordDebugBreakSlotForCall(int argc);
1109 void RecordDebugBreakSlotForConstructCall();
1108 1110
1109 // Record the AST id of the CallIC being compiled, so that it can be placed 1111 // Record the AST id of the CallIC being compiled, so that it can be placed
1110 // in the relocation information. 1112 // in the relocation information.
1111 void SetRecordedAstId(TypeFeedbackId ast_id) { 1113 void SetRecordedAstId(TypeFeedbackId ast_id) {
1112 DCHECK(recorded_ast_id_.IsNone()); 1114 DCHECK(recorded_ast_id_.IsNone());
1113 recorded_ast_id_ = ast_id; 1115 recorded_ast_id_ = ast_id;
1114 } 1116 }
1115 1117
1116 TypeFeedbackId RecordedAstId() { 1118 TypeFeedbackId RecordedAstId() {
1117 DCHECK(!recorded_ast_id_.IsNone()); 1119 DCHECK(!recorded_ast_id_.IsNone());
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1503 class EnsureSpace BASE_EMBEDDED { 1505 class EnsureSpace BASE_EMBEDDED {
1504 public: 1506 public:
1505 explicit EnsureSpace(Assembler* assembler) { 1507 explicit EnsureSpace(Assembler* assembler) {
1506 assembler->CheckBuffer(); 1508 assembler->CheckBuffer();
1507 } 1509 }
1508 }; 1510 };
1509 1511
1510 } } // namespace v8::internal 1512 } } // namespace v8::internal
1511 1513
1512 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1514 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/full-codegen-mips.cc ('k') | src/mips64/debug-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698