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

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

Issue 1490413002: PPC: [debugger] simplify reloc info for debug break slots. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/full-codegen/ppc/full-codegen-ppc.cc ('k') | no next file » | 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 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are 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 1156 matching lines...) Expand 10 before | Expand all | Expand 10 after
1167 1167
1168 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstantPoolEntrySharingScope); 1168 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstantPoolEntrySharingScope);
1169 }; 1169 };
1170 1170
1171 // Debugging 1171 // Debugging
1172 1172
1173 // Mark generator continuation. 1173 // Mark generator continuation.
1174 void RecordGeneratorContinuation(); 1174 void RecordGeneratorContinuation();
1175 1175
1176 // Mark address of a debug break slot. 1176 // Mark address of a debug break slot.
1177 void RecordDebugBreakSlot(RelocInfo::Mode mode, int argc = 0); 1177 void RecordDebugBreakSlot(RelocInfo::Mode mode);
1178 1178
1179 // Record the AST id of the CallIC being compiled, so that it can be placed 1179 // Record the AST id of the CallIC being compiled, so that it can be placed
1180 // in the relocation information. 1180 // in the relocation information.
1181 void SetRecordedAstId(TypeFeedbackId ast_id) { 1181 void SetRecordedAstId(TypeFeedbackId ast_id) {
1182 // Causes compiler to fail 1182 // Causes compiler to fail
1183 // DCHECK(recorded_ast_id_.IsNone()); 1183 // DCHECK(recorded_ast_id_.IsNone());
1184 recorded_ast_id_ = ast_id; 1184 recorded_ast_id_ = ast_id;
1185 } 1185 }
1186 1186
1187 TypeFeedbackId RecordedAstId() { 1187 TypeFeedbackId RecordedAstId() {
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
1461 1461
1462 1462
1463 class EnsureSpace BASE_EMBEDDED { 1463 class EnsureSpace BASE_EMBEDDED {
1464 public: 1464 public:
1465 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } 1465 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); }
1466 }; 1466 };
1467 } // namespace internal 1467 } // namespace internal
1468 } // namespace v8 1468 } // namespace v8
1469 1469
1470 #endif // V8_PPC_ASSEMBLER_PPC_H_ 1470 #endif // V8_PPC_ASSEMBLER_PPC_H_
OLDNEW
« no previous file with comments | « src/full-codegen/ppc/full-codegen-ppc.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698