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

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

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: fixed gcmole issue 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
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 1236 matching lines...) Expand 10 before | Expand all | Expand 10 after
1247 } 1247 }
1248 1248
1249 void ClearRecordedAstId() { recorded_ast_id_ = TypeFeedbackId::None(); } 1249 void ClearRecordedAstId() { recorded_ast_id_ = TypeFeedbackId::None(); }
1250 1250
1251 // Record a comment relocation entry that can be used by a disassembler. 1251 // Record a comment relocation entry that can be used by a disassembler.
1252 // Use --code-comments to enable. 1252 // Use --code-comments to enable.
1253 void RecordComment(const char* msg); 1253 void RecordComment(const char* msg);
1254 1254
1255 // Record a deoptimization reason that can be used by a log or cpu profiler. 1255 // Record a deoptimization reason that can be used by a log or cpu profiler.
1256 // Use --trace-deopt to enable. 1256 // Use --trace-deopt to enable.
1257 void RecordDeoptReason(DeoptimizeReason reason, int raw_position, int id); 1257 void RecordDeoptReason(DeoptimizeReason reason, SourcePosition position,
1258 int id);
1258 1259
1259 // Writes a single byte or word of data in the code stream. Used 1260 // Writes a single byte or word of data in the code stream. Used
1260 // for inline tables, e.g., jump-tables. 1261 // for inline tables, e.g., jump-tables.
1261 void db(uint8_t data); 1262 void db(uint8_t data);
1262 void dd(uint32_t data); 1263 void dd(uint32_t data);
1263 void dq(uint64_t data); 1264 void dq(uint64_t data);
1264 void dp(uintptr_t data); 1265 void dp(uintptr_t data);
1265 1266
1266 void PatchConstantPoolAccessInstruction(int pc_offset, int offset, 1267 void PatchConstantPoolAccessInstruction(int pc_offset, int offset,
1267 ConstantPoolEntry::Access access, 1268 ConstantPoolEntry::Access access,
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1465 1466
1466 class EnsureSpace BASE_EMBEDDED { 1467 class EnsureSpace BASE_EMBEDDED {
1467 public: 1468 public:
1468 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } 1469 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); }
1469 }; 1470 };
1470 1471
1471 } // namespace internal 1472 } // namespace internal
1472 } // namespace v8 1473 } // namespace v8
1473 1474
1474 #endif // V8_S390_ASSEMBLER_S390_H_ 1475 #endif // V8_S390_ASSEMBLER_S390_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698