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

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

Issue 2517143003: Remove some leftovers of full-codegen's generators implementation. (Closed)
Patch Set: Address feedback. Created 4 years, 1 month 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/s390/assembler-s390.h ('k') | src/x87/assembler-x87.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 1963 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 void rorxq(Register dst, Register src, byte imm8); 1974 void rorxq(Register dst, Register src, byte imm8);
1975 void rorxq(Register dst, const Operand& src, byte imm8); 1975 void rorxq(Register dst, const Operand& src, byte imm8);
1976 void rorxl(Register dst, Register src, byte imm8); 1976 void rorxl(Register dst, Register src, byte imm8);
1977 void rorxl(Register dst, const Operand& src, byte imm8); 1977 void rorxl(Register dst, const Operand& src, byte imm8);
1978 1978
1979 // Check the code size generated from label to here. 1979 // Check the code size generated from label to here.
1980 int SizeOfCodeGeneratedSince(Label* label) { 1980 int SizeOfCodeGeneratedSince(Label* label) {
1981 return pc_offset() - label->pos(); 1981 return pc_offset() - label->pos();
1982 } 1982 }
1983 1983
1984 // Mark generator continuation.
1985 void RecordGeneratorContinuation();
1986
1987 // Mark address of a debug break slot. 1984 // Mark address of a debug break slot.
1988 void RecordDebugBreakSlot(RelocInfo::Mode mode); 1985 void RecordDebugBreakSlot(RelocInfo::Mode mode);
1989 1986
1990 // Record a comment relocation entry that can be used by a disassembler. 1987 // Record a comment relocation entry that can be used by a disassembler.
1991 // Use --code-comments to enable. 1988 // Use --code-comments to enable.
1992 void RecordComment(const char* msg); 1989 void RecordComment(const char* msg);
1993 1990
1994 // Record a deoptimization reason that can be used by a log or cpu profiler. 1991 // Record a deoptimization reason that can be used by a log or cpu profiler.
1995 // Use --trace-deopt to enable. 1992 // Use --trace-deopt to enable.
1996 void RecordDeoptReason(DeoptimizeReason reason, SourcePosition position, 1993 void RecordDeoptReason(DeoptimizeReason reason, SourcePosition position,
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
2531 Assembler* assembler_; 2528 Assembler* assembler_;
2532 #ifdef DEBUG 2529 #ifdef DEBUG
2533 int space_before_; 2530 int space_before_;
2534 #endif 2531 #endif
2535 }; 2532 };
2536 2533
2537 } // namespace internal 2534 } // namespace internal
2538 } // namespace v8 2535 } // namespace v8
2539 2536
2540 #endif // V8_X64_ASSEMBLER_X64_H_ 2537 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/s390/assembler-s390.h ('k') | src/x87/assembler-x87.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698