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

Side by Side Diff: src/mips/assembler-mips.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/ia32/assembler-ia32.h ('k') | src/mips64/assembler-mips64.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 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after
1022 } 1022 }
1023 1023
1024 private: 1024 private:
1025 Assembler* assem_; 1025 Assembler* assem_;
1026 1026
1027 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope); 1027 DISALLOW_IMPLICIT_CONSTRUCTORS(BlockGrowBufferScope);
1028 }; 1028 };
1029 1029
1030 // Debugging. 1030 // Debugging.
1031 1031
1032 // Mark generator continuation.
1033 void RecordGeneratorContinuation();
1034
1035 // Mark address of a debug break slot. 1032 // Mark address of a debug break slot.
1036 void RecordDebugBreakSlot(RelocInfo::Mode mode); 1033 void RecordDebugBreakSlot(RelocInfo::Mode mode);
1037 1034
1038 // Record the AST id of the CallIC being compiled, so that it can be placed 1035 // Record the AST id of the CallIC being compiled, so that it can be placed
1039 // in the relocation information. 1036 // in the relocation information.
1040 void SetRecordedAstId(TypeFeedbackId ast_id) { 1037 void SetRecordedAstId(TypeFeedbackId ast_id) {
1041 DCHECK(recorded_ast_id_.IsNone()); 1038 DCHECK(recorded_ast_id_.IsNone());
1042 recorded_ast_id_ = ast_id; 1039 recorded_ast_id_ = ast_id;
1043 } 1040 }
1044 1041
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
1475 public: 1472 public:
1476 explicit EnsureSpace(Assembler* assembler) { 1473 explicit EnsureSpace(Assembler* assembler) {
1477 assembler->CheckBuffer(); 1474 assembler->CheckBuffer();
1478 } 1475 }
1479 }; 1476 };
1480 1477
1481 } // namespace internal 1478 } // namespace internal
1482 } // namespace v8 1479 } // namespace v8
1483 1480
1484 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1481 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32.h ('k') | src/mips64/assembler-mips64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698