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

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

Issue 2161543002: [turbofan] Add support for eager/soft deoptimization reasons. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Do the ports properly Created 4 years, 5 months 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/profiler/profiler-listener.cc ('k') | src/v8.gyp » ('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 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 } 1234 }
1235 1235
1236 void ClearRecordedAstId() { recorded_ast_id_ = TypeFeedbackId::None(); } 1236 void ClearRecordedAstId() { recorded_ast_id_ = TypeFeedbackId::None(); }
1237 1237
1238 // Record a comment relocation entry that can be used by a disassembler. 1238 // Record a comment relocation entry that can be used by a disassembler.
1239 // Use --code-comments to enable. 1239 // Use --code-comments to enable.
1240 void RecordComment(const char* msg); 1240 void RecordComment(const char* msg);
1241 1241
1242 // Record a deoptimization reason that can be used by a log or cpu profiler. 1242 // Record a deoptimization reason that can be used by a log or cpu profiler.
1243 // Use --trace-deopt to enable. 1243 // Use --trace-deopt to enable.
1244 void RecordDeoptReason(const int reason, int raw_position, int id); 1244 void RecordDeoptReason(DeoptimizeReason reason, int raw_position, int id);
1245 1245
1246 // Writes a single byte or word of data in the code stream. Used 1246 // Writes a single byte or word of data in the code stream. Used
1247 // for inline tables, e.g., jump-tables. 1247 // for inline tables, e.g., jump-tables.
1248 void db(uint8_t data); 1248 void db(uint8_t data);
1249 void dd(uint32_t data); 1249 void dd(uint32_t data);
1250 void dq(uint64_t data); 1250 void dq(uint64_t data);
1251 void dp(uintptr_t data); 1251 void dp(uintptr_t data);
1252 1252
1253 void PatchConstantPoolAccessInstruction(int pc_offset, int offset, 1253 void PatchConstantPoolAccessInstruction(int pc_offset, int offset,
1254 ConstantPoolEntry::Access access, 1254 ConstantPoolEntry::Access access,
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1450 1450
1451 class EnsureSpace BASE_EMBEDDED { 1451 class EnsureSpace BASE_EMBEDDED {
1452 public: 1452 public:
1453 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } 1453 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); }
1454 }; 1454 };
1455 1455
1456 } // namespace internal 1456 } // namespace internal
1457 } // namespace v8 1457 } // namespace v8
1458 1458
1459 #endif // V8_S390_ASSEMBLER_S390_H_ 1459 #endif // V8_S390_ASSEMBLER_S390_H_
OLDNEW
« no previous file with comments | « src/profiler/profiler-listener.cc ('k') | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698