OLD | NEW |
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 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
718 case CodeStub::SubString: { | 718 case CodeStub::SubString: { |
719 SubStringStub stub; | 719 SubStringStub stub; |
720 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); | 720 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
721 break; | 721 break; |
722 } | 722 } |
723 case CodeStub::StringCharAt: { | 723 case CodeStub::StringCharAt: { |
724 StringCharAtStub stub; | 724 StringCharAtStub stub; |
725 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); | 725 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
726 break; | 726 break; |
727 } | 727 } |
728 case CodeStub::MathPow: { | |
729 MathPowStub stub; | |
730 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); | |
731 break; | |
732 } | |
733 case CodeStub::NumberToString: { | 728 case CodeStub::NumberToString: { |
734 NumberToStringStub stub; | 729 NumberToStringStub stub; |
735 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); | 730 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
736 break; | 731 break; |
737 } | 732 } |
738 case CodeStub::StringAdd: { | 733 case CodeStub::StringAdd: { |
739 StringAddStub stub(NO_STRING_ADD_FLAGS); | 734 StringAddStub stub(NO_STRING_ADD_FLAGS); |
740 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); | 735 CallCode(stub.GetCode(), RelocInfo::CODE_TARGET, instr); |
741 break; | 736 break; |
742 } | 737 } |
(...skipping 2921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3664 RegisterEnvironmentForDeoptimization(environment); | 3659 RegisterEnvironmentForDeoptimization(environment); |
3665 ASSERT(osr_pc_offset_ == -1); | 3660 ASSERT(osr_pc_offset_ == -1); |
3666 osr_pc_offset_ = masm()->pc_offset(); | 3661 osr_pc_offset_ = masm()->pc_offset(); |
3667 } | 3662 } |
3668 | 3663 |
3669 #undef __ | 3664 #undef __ |
3670 | 3665 |
3671 } } // namespace v8::internal | 3666 } } // namespace v8::internal |
3672 | 3667 |
3673 #endif // V8_TARGET_ARCH_X64 | 3668 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |