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

Unified Diff: src/ia32/assembler-ia32.h

Issue 2944013002: Remove TypeFeedbackId parameters from assembler and full-code. (Closed)
Patch Set: REBASE+fixes. 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/full-codegen/full-codegen.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ia32/assembler-ia32.h
diff --git a/src/ia32/assembler-ia32.h b/src/ia32/assembler-ia32.h
index 466245dd558d4eb1b75f74b855c38073a3379da6..4b6a74be040936aadd6a576328c1eadbb0fc98f2 100644
--- a/src/ia32/assembler-ia32.h
+++ b/src/ia32/assembler-ia32.h
@@ -863,9 +863,7 @@ class Assembler : public AssemblerBase {
void call(Register reg) { call(Operand(reg)); }
void call(const Operand& adr);
int CallSize(Handle<Code> code, RelocInfo::Mode mode);
- void call(Handle<Code> code,
- RelocInfo::Mode rmode,
- TypeFeedbackId id = TypeFeedbackId::None());
+ void call(Handle<Code> code, RelocInfo::Mode rmode);
// Jumps
// unconditional jump to L
@@ -1746,12 +1744,8 @@ class Assembler : public AssemblerBase {
void GrowBuffer();
inline void emit(uint32_t x);
inline void emit(Handle<Object> handle);
- inline void emit(uint32_t x,
- RelocInfo::Mode rmode,
- TypeFeedbackId id = TypeFeedbackId::None());
- inline void emit(Handle<Code> code,
- RelocInfo::Mode rmode,
- TypeFeedbackId id = TypeFeedbackId::None());
+ inline void emit(uint32_t x, RelocInfo::Mode rmode);
+ inline void emit(Handle<Code> code, RelocInfo::Mode rmode);
inline void emit(const Immediate& x);
inline void emit_b(Immediate x);
inline void emit_w(const Immediate& x);
« no previous file with comments | « src/full-codegen/full-codegen.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698