OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 955 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
966 case CodeStub::RegExpExec: { | 966 case CodeStub::RegExpExec: { |
967 RegExpExecStub stub; | 967 RegExpExecStub stub; |
968 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); | 968 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
969 break; | 969 break; |
970 } | 970 } |
971 case CodeStub::SubString: { | 971 case CodeStub::SubString: { |
972 SubStringStub stub; | 972 SubStringStub stub; |
973 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); | 973 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
974 break; | 974 break; |
975 } | 975 } |
| 976 case CodeStub::NumberToString: { |
| 977 NumberToStringStub stub; |
| 978 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
| 979 break; |
| 980 } |
976 case CodeStub::StringCompare: { | 981 case CodeStub::StringCompare: { |
977 StringCompareStub stub; | 982 StringCompareStub stub; |
978 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); | 983 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
979 break; | 984 break; |
980 } | 985 } |
981 case CodeStub::TranscendentalCache: { | 986 case CodeStub::TranscendentalCache: { |
982 TranscendentalCacheStub stub(instr->transcendental_type(), | 987 TranscendentalCacheStub stub(instr->transcendental_type(), |
983 TranscendentalCacheStub::TAGGED); | 988 TranscendentalCacheStub::TAGGED); |
984 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); | 989 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
985 break; | 990 break; |
(...skipping 4525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5511 FixedArray::kHeaderSize - kPointerSize)); | 5516 FixedArray::kHeaderSize - kPointerSize)); |
5512 __ bind(&done); | 5517 __ bind(&done); |
5513 } | 5518 } |
5514 | 5519 |
5515 | 5520 |
5516 #undef __ | 5521 #undef __ |
5517 | 5522 |
5518 } } // namespace v8::internal | 5523 } } // namespace v8::internal |
5519 | 5524 |
5520 #endif // V8_TARGET_ARCH_X64 | 5525 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |