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

Side by Side Diff: src/ia32/lithium-codegen-ia32.cc

Issue 6613015: ARM: Implement MathPowStub and DoMathPowHalf. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Minor edits. Created 9 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after
741 case CodeStub::SubString: { 741 case CodeStub::SubString: {
742 SubStringStub stub; 742 SubStringStub stub;
743 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); 743 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
744 break; 744 break;
745 } 745 }
746 case CodeStub::StringCharAt: { 746 case CodeStub::StringCharAt: {
747 StringCharAtStub stub; 747 StringCharAtStub stub;
748 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); 748 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
749 break; 749 break;
750 } 750 }
751 case CodeStub::MathPow: {
752 MathPowStub stub;
753 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
754 break;
755 }
756 case CodeStub::NumberToString: { 751 case CodeStub::NumberToString: {
757 NumberToStringStub stub; 752 NumberToStringStub stub;
758 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); 753 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
759 break; 754 break;
760 } 755 }
761 case CodeStub::StringAdd: { 756 case CodeStub::StringAdd: {
762 StringAddStub stub(NO_STRING_ADD_FLAGS); 757 StringAddStub stub(NO_STRING_ADD_FLAGS);
763 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); 758 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr);
764 break; 759 break;
765 } 760 }
(...skipping 3108 matching lines...) Expand 10 before | Expand all | Expand 10 after
3874 ASSERT(osr_pc_offset_ == -1); 3869 ASSERT(osr_pc_offset_ == -1);
3875 osr_pc_offset_ = masm()->pc_offset(); 3870 osr_pc_offset_ = masm()->pc_offset();
3876 } 3871 }
3877 3872
3878 3873
3879 #undef __ 3874 #undef __
3880 3875
3881 } } // namespace v8::internal 3876 } } // namespace v8::internal
3882 3877
3883 #endif // V8_TARGET_ARCH_IA32 3878 #endif // V8_TARGET_ARCH_IA32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698