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

Unified Diff: src/crankshaft/arm/lithium-codegen-arm.cc

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/arm64/macro-assembler-arm64.cc ('k') | src/crankshaft/arm64/lithium-codegen-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/crankshaft/arm/lithium-codegen-arm.cc
diff --git a/src/crankshaft/arm/lithium-codegen-arm.cc b/src/crankshaft/arm/lithium-codegen-arm.cc
index bcf25ccdd2dd89b1d773c254ed6e639f79617caf..0a1bfbf96e1633cdfcc9d0be99317bddbb168667 100644
--- a/src/crankshaft/arm/lithium-codegen-arm.cc
+++ b/src/crankshaft/arm/lithium-codegen-arm.cc
@@ -671,7 +671,7 @@ void LCodeGen::CallCodeGeneric(Handle<Code> code,
// Block literal pool emission to ensure nop indicating no inlined smi code
// is in the correct position.
Assembler::BlockConstPoolScope block_const_pool(masm());
- __ Call(code, mode, TypeFeedbackId::None(), al, storage_mode, false);
+ __ Call(code, mode, al, storage_mode, false);
RecordSafepointWithLazyDeopt(instr, safepoint_mode);
// Signal that we don't inline smi code before these stubs in the
@@ -3558,10 +3558,10 @@ void LCodeGen::DoCallWithDescriptor(LCallWithDescriptor* instr) {
PlatformInterfaceDescriptor* call_descriptor =
instr->descriptor().platform_specific_descriptor();
if (call_descriptor != NULL) {
- __ Call(code, RelocInfo::CODE_TARGET, TypeFeedbackId::None(), al,
+ __ Call(code, RelocInfo::CODE_TARGET, al,
call_descriptor->storage_mode());
} else {
- __ Call(code, RelocInfo::CODE_TARGET, TypeFeedbackId::None(), al);
+ __ Call(code, RelocInfo::CODE_TARGET, al);
}
} else {
DCHECK(instr->target()->IsRegister());
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/crankshaft/arm64/lithium-codegen-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698