| Index: src/a64/ic-a64.cc
|
| diff --git a/src/a64/ic-a64.cc b/src/a64/ic-a64.cc
|
| index 6e5da2139a01d25ae6be581cecea26f0e013f3af..701f7ec848cf8bb193665df548896aa7ba622196 100644
|
| --- a/src/a64/ic-a64.cc
|
| +++ b/src/a64/ic-a64.cc
|
| @@ -431,7 +431,7 @@ Object* CallIC_Miss(Arguments args);
|
| void CallICBase::GenerateMonomorphicCacheProbe(MacroAssembler* masm,
|
| int argc,
|
| Code::Kind kind,
|
| - Code::ExtraICState extra_state) {
|
| + ExtraICState extra_state) {
|
| // ----------- S t a t e -------------
|
| // -- x1 : receiver
|
| // -- x2 : name
|
| @@ -540,7 +540,7 @@ void CallICBase::GenerateNormal(MacroAssembler* masm, int argc) {
|
| void CallICBase::GenerateMiss(MacroAssembler* masm,
|
| int argc,
|
| IC::UtilityId id,
|
| - Code::ExtraICState extra_state) {
|
| + ExtraICState extra_state) {
|
| // ----------- S t a t e -------------
|
| // -- x2 : name
|
| // -- lr : return address
|
| @@ -605,7 +605,7 @@ void CallICBase::GenerateMiss(MacroAssembler* masm,
|
|
|
| void CallIC::GenerateMegamorphic(MacroAssembler* masm,
|
| int argc,
|
| - Code::ExtraICState extra_ic_state) {
|
| + ExtraICState extra_ic_state) {
|
| // ----------- S t a t e -------------
|
| // -- x2 : name
|
| // -- lr : return address
|
| @@ -744,7 +744,7 @@ void KeyedCallIC::GenerateMegamorphic(MacroAssembler* masm, int argc) {
|
| GenerateMonomorphicCacheProbe(masm,
|
| argc,
|
| Code::KEYED_CALL_IC,
|
| - Code::kNoExtraICState);
|
| + kNoExtraICState);
|
| // Fall through on miss.
|
|
|
| __ Bind(&slow_call);
|
| @@ -796,7 +796,7 @@ void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
|
|
|
| // Probe the stub cache.
|
| Code::Flags flags = Code::ComputeFlags(
|
| - Code::HANDLER, MONOMORPHIC, Code::kNoExtraICState,
|
| + Code::HANDLER, MONOMORPHIC, kNoExtraICState,
|
| Code::NORMAL, Code::LOAD_IC);
|
| masm->isolate()->stub_cache()->GenerateProbe(
|
| masm, flags, x0, x2, x3, x4, x5, x6);
|
| @@ -1779,12 +1779,10 @@ void PatchInlinedSmiCode(Address address, InlinedSmiCheck check) {
|
| return;
|
| }
|
|
|
| -#ifdef DEBUG
|
| if (FLAG_trace_ic) {
|
| PrintF("[ Patching ic at %p, marker=%p, SMI check=%p\n",
|
| address, info_address, reinterpret_cast<void*>(info.SmiCheck()));
|
| }
|
| -#endif
|
|
|
| // Patch and activate code generated by JumpPatchSite::EmitJumpIfNotSmi()
|
| // and JumpPatchSite::EmitJumpIfSmi().
|
|
|