| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 add(esp, Immediate(kDoubleSize)); | 246 add(esp, Immediate(kDoubleSize)); |
| 247 } | 247 } |
| 248 | 248 |
| 249 | 249 |
| 250 void MacroAssembler::X87TOSToI(Register result_reg, | 250 void MacroAssembler::X87TOSToI(Register result_reg, |
| 251 MinusZeroMode minus_zero_mode, | 251 MinusZeroMode minus_zero_mode, |
| 252 Label* conversion_failed, | 252 Label* conversion_failed, |
| 253 Label::Distance dst) { | 253 Label::Distance dst) { |
| 254 Label done; | 254 Label done; |
| 255 sub(esp, Immediate(kPointerSize)); | 255 sub(esp, Immediate(kPointerSize)); |
| 256 fld(0); |
| 256 fist_s(MemOperand(esp, 0)); | 257 fist_s(MemOperand(esp, 0)); |
| 257 fld(0); | |
| 258 fild_s(MemOperand(esp, 0)); | 258 fild_s(MemOperand(esp, 0)); |
| 259 pop(result_reg); | 259 pop(result_reg); |
| 260 FCmp(); | 260 FCmp(); |
| 261 j(not_equal, conversion_failed, dst); | 261 j(not_equal, conversion_failed, dst); |
| 262 j(parity_even, conversion_failed, dst); | 262 j(parity_even, conversion_failed, dst); |
| 263 if (minus_zero_mode == FAIL_ON_MINUS_ZERO) { | 263 if (minus_zero_mode == FAIL_ON_MINUS_ZERO) { |
| 264 test(result_reg, Operand(result_reg)); | 264 test(result_reg, Operand(result_reg)); |
| 265 j(not_zero, &done, Label::kNear); | 265 j(not_zero, &done, Label::kNear); |
| 266 // To check for minus zero, we load the value again as float, and check | 266 // To check for minus zero, we load the value again as float, and check |
| 267 // if that is still 0. | 267 // if that is still 0. |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 | 446 |
| 447 | 447 |
| 448 | 448 |
| 449 static double kUint32Bias = | 449 static double kUint32Bias = |
| 450 static_cast<double>(static_cast<uint32_t>(0xFFFFFFFF)) + 1; | 450 static_cast<double>(static_cast<uint32_t>(0xFFFFFFFF)) + 1; |
| 451 | 451 |
| 452 | 452 |
| 453 void MacroAssembler::LoadUint32(XMMRegister dst, | 453 void MacroAssembler::LoadUint32(XMMRegister dst, |
| 454 Register src, | 454 Register src, |
| 455 XMMRegister scratch) { | 455 XMMRegister scratch) { |
| 456 ASSERT(!Serializer::enabled()); |
| 456 Label done; | 457 Label done; |
| 457 cmp(src, Immediate(0)); | 458 cmp(src, Immediate(0)); |
| 458 movdbl(scratch, | 459 movdbl(scratch, |
| 459 Operand(reinterpret_cast<int32_t>(&kUint32Bias), RelocInfo::NONE32)); | 460 Operand(reinterpret_cast<int32_t>(&kUint32Bias), RelocInfo::NONE32)); |
| 460 Cvtsi2sd(dst, src); | 461 Cvtsi2sd(dst, src); |
| 461 j(not_sign, &done, Label::kNear); | 462 j(not_sign, &done, Label::kNear); |
| 462 addsd(dst, scratch); | 463 addsd(dst, scratch); |
| 463 bind(&done); | 464 bind(&done); |
| 464 } | 465 } |
| 465 | 466 |
| 466 | 467 |
| 468 void MacroAssembler::LoadUint32NoSSE2(Register src) { |
| 469 ASSERT(!Serializer::enabled()); |
| 470 Label done; |
| 471 push(src); |
| 472 fild_s(Operand(esp, 0)); |
| 473 cmp(src, Immediate(0)); |
| 474 j(not_sign, &done, Label::kNear); |
| 475 fld_d(Operand(reinterpret_cast<int32_t>(&kUint32Bias), RelocInfo::NONE32)); |
| 476 faddp(1); |
| 477 bind(&done); |
| 478 add(esp, Immediate(kPointerSize)); |
| 479 } |
| 480 |
| 481 |
| 467 void MacroAssembler::RecordWriteArray(Register object, | 482 void MacroAssembler::RecordWriteArray(Register object, |
| 468 Register value, | 483 Register value, |
| 469 Register index, | 484 Register index, |
| 470 SaveFPRegsMode save_fp, | 485 SaveFPRegsMode save_fp, |
| 471 RememberedSetAction remembered_set_action, | 486 RememberedSetAction remembered_set_action, |
| 472 SmiCheck smi_check) { | 487 SmiCheck smi_check) { |
| 473 // First, check if a write barrier is even needed. The tests below | 488 // First, check if a write barrier is even needed. The tests below |
| 474 // catch stores of Smis. | 489 // catch stores of Smis. |
| 475 Label done; | 490 Label done; |
| 476 | 491 |
| (...skipping 3036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3513 j(greater, &no_memento_available); | 3528 j(greater, &no_memento_available); |
| 3514 cmp(MemOperand(scratch_reg, -AllocationMemento::kSize), | 3529 cmp(MemOperand(scratch_reg, -AllocationMemento::kSize), |
| 3515 Immediate(isolate()->factory()->allocation_memento_map())); | 3530 Immediate(isolate()->factory()->allocation_memento_map())); |
| 3516 bind(&no_memento_available); | 3531 bind(&no_memento_available); |
| 3517 } | 3532 } |
| 3518 | 3533 |
| 3519 | 3534 |
| 3520 } } // namespace v8::internal | 3535 } } // namespace v8::internal |
| 3521 | 3536 |
| 3522 #endif // V8_TARGET_ARCH_IA32 | 3537 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |