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

Unified Diff: src/arm64/macro-assembler-arm64.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/arm64/assembler-arm64-inl.h ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/macro-assembler-arm64.h
diff --git a/src/arm64/macro-assembler-arm64.h b/src/arm64/macro-assembler-arm64.h
index bd953f1c6ae58c683b026e3b04b4cbc9609ca0ce..783ba53f8b2b3b8795ef216dda2f6ba10614c20f 100644
--- a/src/arm64/macro-assembler-arm64.h
+++ b/src/arm64/macro-assembler-arm64.h
@@ -1679,7 +1679,7 @@ class MacroAssembler : public Assembler {
// This is required for compatibility in architecture indepenedant code.
inline void jmp(Label* L);
- void CallStub(CodeStub* stub, TypeFeedbackId ast_id = TypeFeedbackId::None());
+ void CallStub(CodeStub* stub);
void TailCallStub(CodeStub* stub);
void CallRuntime(const Runtime::Function* f,
@@ -1739,9 +1739,7 @@ class MacroAssembler : public Assembler {
void Call(Register target);
void Call(Label* target);
void Call(Address target, RelocInfo::Mode rmode);
- void Call(Handle<Code> code,
- RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
- TypeFeedbackId ast_id = TypeFeedbackId::None());
+ void Call(Handle<Code> code, RelocInfo::Mode rmode = RelocInfo::CODE_TARGET);
// For every Call variant, there is a matching CallSize function that returns
// the size (in bytes) of the call sequence.
@@ -1749,8 +1747,7 @@ class MacroAssembler : public Assembler {
static int CallSize(Label* target);
static int CallSize(Address target, RelocInfo::Mode rmode);
static int CallSize(Handle<Code> code,
- RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
- TypeFeedbackId ast_id = TypeFeedbackId::None());
+ RelocInfo::Mode rmode = RelocInfo::CODE_TARGET);
// Removes current frame and its arguments from the stack preserving
// the arguments and a return address pushed to the stack for the next call.
« no previous file with comments | « src/arm64/assembler-arm64-inl.h ('k') | src/arm64/macro-assembler-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698