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

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

Issue 2517143003: Remove some leftovers of full-codegen's generators implementation. (Closed)
Patch Set: Address feedback. Created 4 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/parsing/parser.cc ('k') | src/s390/assembler-s390.h » ('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 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 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after
1181 } 1181 }
1182 1182
1183 private: 1183 private:
1184 Assembler* assem_; 1184 Assembler* assem_;
1185 1185
1186 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstantPoolEntrySharingScope); 1186 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockConstantPoolEntrySharingScope);
1187 }; 1187 };
1188 1188
1189 // Debugging 1189 // Debugging
1190 1190
1191 // Mark generator continuation.
1192 void RecordGeneratorContinuation();
1193
1194 // Mark address of a debug break slot. 1191 // Mark address of a debug break slot.
1195 void RecordDebugBreakSlot(RelocInfo::Mode mode); 1192 void RecordDebugBreakSlot(RelocInfo::Mode mode);
1196 1193
1197 // Record the AST id of the CallIC being compiled, so that it can be placed 1194 // Record the AST id of the CallIC being compiled, so that it can be placed
1198 // in the relocation information. 1195 // in the relocation information.
1199 void SetRecordedAstId(TypeFeedbackId ast_id) { 1196 void SetRecordedAstId(TypeFeedbackId ast_id) {
1200 // Causes compiler to fail 1197 // Causes compiler to fail
1201 // DCHECK(recorded_ast_id_.IsNone()); 1198 // DCHECK(recorded_ast_id_.IsNone());
1202 recorded_ast_id_ = ast_id; 1199 recorded_ast_id_ = ast_id;
1203 } 1200 }
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1476 1473
1477 1474
1478 class EnsureSpace BASE_EMBEDDED { 1475 class EnsureSpace BASE_EMBEDDED {
1479 public: 1476 public:
1480 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } 1477 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); }
1481 }; 1478 };
1482 } // namespace internal 1479 } // namespace internal
1483 } // namespace v8 1480 } // namespace v8
1484 1481
1485 #endif // V8_PPC_ASSEMBLER_PPC_H_ 1482 #endif // V8_PPC_ASSEMBLER_PPC_H_
OLDNEW
« no previous file with comments | « src/parsing/parser.cc ('k') | src/s390/assembler-s390.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698