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

Side by Side Diff: src/mips64/assembler-mips64.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/mips/assembler-mips.h ('k') | src/objects.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 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 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
1084 } 1084 }
1085 1085
1086 private: 1086 private:
1087 Assembler* assem_; 1087 Assembler* assem_;
1088 1088
1089 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope); 1089 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope);
1090 }; 1090 };
1091 1091
1092 // Debugging. 1092 // Debugging.
1093 1093
1094 // Mark generator continuation.
1095 void RecordGeneratorContinuation();
1096
1097 // Mark address of a debug break slot. 1094 // Mark address of a debug break slot.
1098 void RecordDebugBreakSlot(RelocInfo::Mode mode); 1095 void RecordDebugBreakSlot(RelocInfo::Mode mode);
1099 1096
1100 // Record the AST id of the CallIC being compiled, so that it can be placed 1097 // Record the AST id of the CallIC being compiled, so that it can be placed
1101 // in the relocation information. 1098 // in the relocation information.
1102 void SetRecordedAstId(TypeFeedbackId ast_id) { 1099 void SetRecordedAstId(TypeFeedbackId ast_id) {
1103 DCHECK(recorded_ast_id_.IsNone()); 1100 DCHECK(recorded_ast_id_.IsNone());
1104 recorded_ast_id_ = ast_id; 1101 recorded_ast_id_ = ast_id;
1105 } 1102 }
1106 1103
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
1525 public: 1522 public:
1526 explicit EnsureSpace(Assembler* assembler) { 1523 explicit EnsureSpace(Assembler* assembler) {
1527 assembler->CheckBuffer(); 1524 assembler->CheckBuffer();
1528 } 1525 }
1529 }; 1526 };
1530 1527
1531 } // namespace internal 1528 } // namespace internal
1532 } // namespace v8 1529 } // namespace v8
1533 1530
1534 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1531 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/mips/assembler-mips.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698