OLD | NEW |
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 1331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1342 case CodeStub::SubString: { | 1342 case CodeStub::SubString: { |
1343 SubStringStub stub; | 1343 SubStringStub stub; |
1344 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); | 1344 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
1345 break; | 1345 break; |
1346 } | 1346 } |
1347 case CodeStub::StringCompare: { | 1347 case CodeStub::StringCompare: { |
1348 StringCompareStub stub; | 1348 StringCompareStub stub; |
1349 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); | 1349 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); |
1350 break; | 1350 break; |
1351 } | 1351 } |
1352 case CodeStub::TranscendentalCache: { | |
1353 TranscendentalCacheStub stub(instr->transcendental_type(), | |
1354 TranscendentalCacheStub::TAGGED); | |
1355 CallCode(stub.GetCode(isolate()), RelocInfo::CODE_TARGET, instr); | |
1356 break; | |
1357 } | |
1358 default: | 1352 default: |
1359 UNREACHABLE(); | 1353 UNREACHABLE(); |
1360 } | 1354 } |
1361 } | 1355 } |
1362 | 1356 |
1363 | 1357 |
1364 void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) { | 1358 void LCodeGen::DoUnknownOSRValue(LUnknownOSRValue* instr) { |
1365 GenerateOsrPrologue(); | 1359 GenerateOsrPrologue(); |
1366 } | 1360 } |
1367 | 1361 |
(...skipping 5001 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6369 FixedArray::kHeaderSize - kPointerSize)); | 6363 FixedArray::kHeaderSize - kPointerSize)); |
6370 __ bind(&done); | 6364 __ bind(&done); |
6371 } | 6365 } |
6372 | 6366 |
6373 | 6367 |
6374 #undef __ | 6368 #undef __ |
6375 | 6369 |
6376 } } // namespace v8::internal | 6370 } } // namespace v8::internal |
6377 | 6371 |
6378 #endif // V8_TARGET_ARCH_IA32 | 6372 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |