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

Side by Side Diff: src/mips/ic-mips.cc

Issue 91803003: Move responsibility for definition of ExtraICState bits into the ICs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comment response Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 602
603 GenerateDictionaryLoad(masm, &slow_load, a0, a2, a1, a3, t0); 603 GenerateDictionaryLoad(masm, &slow_load, a0, a2, a1, a3, t0);
604 __ IncrementCounter(counters->keyed_call_generic_lookup_dict(), 1, a0, a3); 604 __ IncrementCounter(counters->keyed_call_generic_lookup_dict(), 1, a0, a3);
605 __ jmp(&do_call); 605 __ jmp(&do_call);
606 606
607 __ bind(&lookup_monomorphic_cache); 607 __ bind(&lookup_monomorphic_cache);
608 __ IncrementCounter(counters->keyed_call_generic_lookup_cache(), 1, a0, a3); 608 __ IncrementCounter(counters->keyed_call_generic_lookup_cache(), 1, a0, a3);
609 GenerateMonomorphicCacheProbe(masm, 609 GenerateMonomorphicCacheProbe(masm,
610 argc, 610 argc,
611 Code::KEYED_CALL_IC, 611 Code::KEYED_CALL_IC,
612 Code::kNoExtraICState); 612 IC::kNoExtraICState);
613 // Fall through on miss. 613 // Fall through on miss.
614 614
615 __ bind(&slow_call); 615 __ bind(&slow_call);
616 // This branch is taken if: 616 // This branch is taken if:
617 // - the receiver requires boxing or access check, 617 // - the receiver requires boxing or access check,
618 // - the key is neither smi nor a unique name, 618 // - the key is neither smi nor a unique name,
619 // - the value loaded is not a function, 619 // - the value loaded is not a function,
620 // - there is hope that the runtime will create a monomorphic call stub, 620 // - there is hope that the runtime will create a monomorphic call stub,
621 // that will get fetched next time. 621 // that will get fetched next time.
622 __ IncrementCounter(counters->keyed_call_generic_slow(), 1, a0, a3); 622 __ IncrementCounter(counters->keyed_call_generic_slow(), 1, a0, a3);
(...skipping 25 matching lines...) Expand all
648 648
649 void LoadIC::GenerateMegamorphic(MacroAssembler* masm) { 649 void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
650 // ----------- S t a t e ------------- 650 // ----------- S t a t e -------------
651 // -- a2 : name 651 // -- a2 : name
652 // -- ra : return address 652 // -- ra : return address
653 // -- a0 : receiver 653 // -- a0 : receiver
654 // ----------------------------------- 654 // -----------------------------------
655 655
656 // Probe the stub cache. 656 // Probe the stub cache.
657 Code::Flags flags = Code::ComputeFlags( 657 Code::Flags flags = Code::ComputeFlags(
658 Code::HANDLER, MONOMORPHIC, Code::kNoExtraICState, 658 Code::HANDLER, MONOMORPHIC, IC::kNoExtraICState,
659 Code::NORMAL, Code::LOAD_IC); 659 Code::NORMAL, Code::LOAD_IC);
660 masm->isolate()->stub_cache()->GenerateProbe( 660 masm->isolate()->stub_cache()->GenerateProbe(
661 masm, flags, a0, a2, a3, t0, t1, t2); 661 masm, flags, a0, a2, a3, t0, t1, t2);
662 662
663 // Cache miss: Jump to runtime. 663 // Cache miss: Jump to runtime.
664 GenerateMiss(masm); 664 GenerateMiss(masm);
665 } 665 }
666 666
667 667
668 void LoadIC::GenerateNormal(MacroAssembler* masm) { 668 void LoadIC::GenerateNormal(MacroAssembler* masm) {
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1685 } else { 1685 } else {
1686 ASSERT(Assembler::IsBne(branch_instr)); 1686 ASSERT(Assembler::IsBne(branch_instr));
1687 patcher.ChangeBranchCondition(eq); 1687 patcher.ChangeBranchCondition(eq);
1688 } 1688 }
1689 } 1689 }
1690 1690
1691 1691
1692 } } // namespace v8::internal 1692 } } // namespace v8::internal
1693 1693
1694 #endif // V8_TARGET_ARCH_MIPS 1694 #endif // V8_TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698