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

Unified Diff: src/s390/assembler-s390-inl.h

Issue 2949103005: PPC/s390: Remove TypeFeedbackId parameters from assembler and full-code. (Closed)
Patch Set: Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/s390/assembler-s390.cc ('k') | src/s390/macro-assembler-s390.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/s390/assembler-s390-inl.h
diff --git a/src/s390/assembler-s390-inl.h b/src/s390/assembler-s390-inl.h
index 9fbe14396fd8eb611dd129143eb0a71ac5478f08..c7648c00d0664993dbe406b2f4590e5b333985cd 100644
--- a/src/s390/assembler-s390-inl.h
+++ b/src/s390/assembler-s390-inl.h
@@ -371,15 +371,10 @@ void Assembler::CheckBuffer() {
}
}
-int32_t Assembler::emit_code_target(Handle<Code> target, RelocInfo::Mode rmode,
- TypeFeedbackId ast_id) {
+int32_t Assembler::emit_code_target(Handle<Code> target,
+ RelocInfo::Mode rmode) {
DCHECK(RelocInfo::IsCodeTarget(rmode));
- if (rmode == RelocInfo::CODE_TARGET && !ast_id.IsNone()) {
- SetRecordedAstId(ast_id);
- RecordRelocInfo(RelocInfo::CODE_TARGET_WITH_ID);
- } else {
- RecordRelocInfo(rmode);
- }
+ RecordRelocInfo(rmode);
int current = code_targets_.length();
if (current > 0 && code_targets_.last().is_identical_to(target)) {
« no previous file with comments | « src/s390/assembler-s390.cc ('k') | src/s390/macro-assembler-s390.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698