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 1433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1444 | 1444 |
1445 | 1445 |
1446 void LCodeGen::DoBranch(LBranch* instr) { | 1446 void LCodeGen::DoBranch(LBranch* instr) { |
1447 int true_block = chunk_->LookupDestination(instr->true_block_id()); | 1447 int true_block = chunk_->LookupDestination(instr->true_block_id()); |
1448 int false_block = chunk_->LookupDestination(instr->false_block_id()); | 1448 int false_block = chunk_->LookupDestination(instr->false_block_id()); |
1449 | 1449 |
1450 Representation r = instr->hydrogen()->representation(); | 1450 Representation r = instr->hydrogen()->representation(); |
1451 if (r.IsInteger32()) { | 1451 if (r.IsInteger32()) { |
1452 Register reg = ToRegister(instr->input()); | 1452 Register reg = ToRegister(instr->input()); |
1453 __ cmp(reg, Operand(0)); | 1453 __ cmp(reg, Operand(0)); |
1454 EmitBranch(true_block, false_block, nz); | 1454 EmitBranch(true_block, false_block, ne); |
1455 } else if (r.IsDouble()) { | 1455 } else if (r.IsDouble()) { |
1456 DoubleRegister reg = ToDoubleRegister(instr->input()); | 1456 DoubleRegister reg = ToDoubleRegister(instr->input()); |
1457 Register scratch = scratch0(); | 1457 Register scratch = scratch0(); |
1458 | 1458 |
1459 // Test the double value. Zero and NaN are false. | 1459 // Test the double value. Zero and NaN are false. |
1460 __ VFPCompareAndLoadFlags(reg, 0.0, scratch); | 1460 __ VFPCompareAndLoadFlags(reg, 0.0, scratch); |
1461 __ tst(scratch, Operand(kVFPZConditionFlagBit | kVFPVConditionFlagBit)); | 1461 __ tst(scratch, Operand(kVFPZConditionFlagBit | kVFPVConditionFlagBit)); |
1462 EmitBranch(true_block, false_block, ne); | 1462 EmitBranch(true_block, false_block, ne); |
1463 } else { | 1463 } else { |
1464 ASSERT(r.IsTagged()); | 1464 ASSERT(r.IsTagged()); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1502 | 1502 |
1503 // The conversion stub doesn't cause garbage collections so it's | 1503 // The conversion stub doesn't cause garbage collections so it's |
1504 // safe to not record a safepoint after the call. | 1504 // safe to not record a safepoint after the call. |
1505 __ bind(&call_stub); | 1505 __ bind(&call_stub); |
1506 ToBooleanStub stub(reg); | 1506 ToBooleanStub stub(reg); |
1507 RegList saved_regs = kJSCallerSaved | kCalleeSaved; | 1507 RegList saved_regs = kJSCallerSaved | kCalleeSaved; |
1508 __ stm(db_w, sp, saved_regs); | 1508 __ stm(db_w, sp, saved_regs); |
1509 __ CallStub(&stub); | 1509 __ CallStub(&stub); |
1510 __ cmp(reg, Operand(0)); | 1510 __ cmp(reg, Operand(0)); |
1511 __ ldm(ia_w, sp, saved_regs); | 1511 __ ldm(ia_w, sp, saved_regs); |
1512 EmitBranch(true_block, false_block, nz); | 1512 EmitBranch(true_block, false_block, ne); |
1513 } | 1513 } |
1514 } | 1514 } |
1515 } | 1515 } |
1516 | 1516 |
1517 | 1517 |
1518 void LCodeGen::EmitGoto(int block, LDeferredCode* deferred_stack_check) { | 1518 void LCodeGen::EmitGoto(int block, LDeferredCode* deferred_stack_check) { |
1519 block = chunk_->LookupDestination(block); | 1519 block = chunk_->LookupDestination(block); |
1520 int next_block = GetNextEmittedBlock(current_block_); | 1520 int next_block = GetNextEmittedBlock(current_block_); |
1521 if (block != next_block) { | 1521 if (block != next_block) { |
1522 // Perform stack overflow check if this goto needs it before jumping. | 1522 // Perform stack overflow check if this goto needs it before jumping. |
(...skipping 1941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3464 | 3464 |
3465 | 3465 |
3466 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { | 3466 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { |
3467 Abort("DoOsrEntry unimplemented."); | 3467 Abort("DoOsrEntry unimplemented."); |
3468 } | 3468 } |
3469 | 3469 |
3470 | 3470 |
3471 #undef __ | 3471 #undef __ |
3472 | 3472 |
3473 } } // namespace v8::internal | 3473 } } // namespace v8::internal |
OLD | NEW |