| 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 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 } | 221 } |
| 222 | 222 |
| 223 | 223 |
| 224 void LIsObjectAndBranch::PrintDataTo(StringStream* stream) { | 224 void LIsObjectAndBranch::PrintDataTo(StringStream* stream) { |
| 225 stream->Add("if is_object("); | 225 stream->Add("if is_object("); |
| 226 InputAt(0)->PrintTo(stream); | 226 InputAt(0)->PrintTo(stream); |
| 227 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); | 227 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); |
| 228 } | 228 } |
| 229 | 229 |
| 230 | 230 |
| 231 void LIsStringAndBranch::PrintDataTo(StringStream* stream) { |
| 232 stream->Add("if is_string("); |
| 233 InputAt(0)->PrintTo(stream); |
| 234 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); |
| 235 } |
| 236 |
| 237 |
| 231 void LIsSmiAndBranch::PrintDataTo(StringStream* stream) { | 238 void LIsSmiAndBranch::PrintDataTo(StringStream* stream) { |
| 232 stream->Add("if is_smi("); | 239 stream->Add("if is_smi("); |
| 233 InputAt(0)->PrintTo(stream); | 240 InputAt(0)->PrintTo(stream); |
| 234 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); | 241 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); |
| 235 } | 242 } |
| 236 | 243 |
| 237 | 244 |
| 238 void LIsUndetectableAndBranch::PrintDataTo(StringStream* stream) { | 245 void LIsUndetectableAndBranch::PrintDataTo(StringStream* stream) { |
| 239 stream->Add("if is_undetectable("); | 246 stream->Add("if is_undetectable("); |
| 240 InputAt(0)->PrintTo(stream); | 247 InputAt(0)->PrintTo(stream); |
| 241 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); | 248 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); |
| 242 } | 249 } |
| 243 | 250 |
| 244 | 251 |
| 252 void LCompareGenericAndBranch::PrintDataTo(StringStream* stream) { |
| 253 stream->Add("if compare_generic("); |
| 254 InputAt(0)->PrintTo(stream); |
| 255 InputAt(1)->PrintTo(stream); |
| 256 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); |
| 257 } |
| 258 |
| 259 |
| 245 void LHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) { | 260 void LHasInstanceTypeAndBranch::PrintDataTo(StringStream* stream) { |
| 246 stream->Add("if has_instance_type("); | 261 stream->Add("if has_instance_type("); |
| 247 InputAt(0)->PrintTo(stream); | 262 InputAt(0)->PrintTo(stream); |
| 248 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); | 263 stream->Add(") then B%d else B%d", true_block_id(), false_block_id()); |
| 249 } | 264 } |
| 250 | 265 |
| 251 | 266 |
| 252 void LHasCachedArrayIndexAndBranch::PrintDataTo(StringStream* stream) { | 267 void LHasCachedArrayIndexAndBranch::PrintDataTo(StringStream* stream) { |
| 253 stream->Add("if has_cached_array_index("); | 268 stream->Add("if has_cached_array_index("); |
| 254 InputAt(0)->PrintTo(stream); | 269 InputAt(0)->PrintTo(stream); |
| (...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1408 CAN_DEOPTIMIZE_EAGERLY); | 1423 CAN_DEOPTIMIZE_EAGERLY); |
| 1409 } | 1424 } |
| 1410 | 1425 |
| 1411 | 1426 |
| 1412 LInstruction* LChunkBuilder::DoCompareGeneric(HCompareGeneric* instr) { | 1427 LInstruction* LChunkBuilder::DoCompareGeneric(HCompareGeneric* instr) { |
| 1413 ASSERT(instr->left()->representation().IsTagged()); | 1428 ASSERT(instr->left()->representation().IsTagged()); |
| 1414 ASSERT(instr->right()->representation().IsTagged()); | 1429 ASSERT(instr->right()->representation().IsTagged()); |
| 1415 LOperand* left = UseFixed(instr->left(), r1); | 1430 LOperand* left = UseFixed(instr->left(), r1); |
| 1416 LOperand* right = UseFixed(instr->right(), r0); | 1431 LOperand* right = UseFixed(instr->right(), r0); |
| 1417 LCmpT* result = new LCmpT(left, right); | 1432 LCmpT* result = new LCmpT(left, right); |
| 1418 return MarkAsCall(DefineFixed(result, r0), instr); | 1433 return AssignEnvironment(MarkAsCall(DefineFixed(result, r0), instr)); |
| 1419 } | 1434 } |
| 1420 | 1435 |
| 1421 | 1436 |
| 1422 LInstruction* LChunkBuilder::DoCompareIDAndBranch( | 1437 LInstruction* LChunkBuilder::DoCompareIDAndBranch( |
| 1423 HCompareIDAndBranch* instr) { | 1438 HCompareIDAndBranch* instr) { |
| 1424 Representation r = instr->GetInputRepresentation(); | 1439 Representation r = instr->GetInputRepresentation(); |
| 1425 if (r.IsInteger32()) { | 1440 if (r.IsInteger32()) { |
| 1426 ASSERT(instr->left()->representation().IsInteger32()); | 1441 ASSERT(instr->left()->representation().IsInteger32()); |
| 1427 ASSERT(instr->right()->representation().IsInteger32()); | 1442 ASSERT(instr->right()->representation().IsInteger32()); |
| 1428 LOperand* left = UseRegisterOrConstantAtStart(instr->left()); | 1443 LOperand* left = UseRegisterOrConstantAtStart(instr->left()); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 1459 } | 1474 } |
| 1460 | 1475 |
| 1461 | 1476 |
| 1462 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { | 1477 LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { |
| 1463 ASSERT(instr->value()->representation().IsTagged()); | 1478 ASSERT(instr->value()->representation().IsTagged()); |
| 1464 LOperand* temp = TempRegister(); | 1479 LOperand* temp = TempRegister(); |
| 1465 return new LIsObjectAndBranch(UseRegisterAtStart(instr->value()), temp); | 1480 return new LIsObjectAndBranch(UseRegisterAtStart(instr->value()), temp); |
| 1466 } | 1481 } |
| 1467 | 1482 |
| 1468 | 1483 |
| 1484 LInstruction* LChunkBuilder::DoIsStringAndBranch(HIsStringAndBranch* instr) { |
| 1485 ASSERT(instr->value()->representation().IsTagged()); |
| 1486 LOperand* temp = TempRegister(); |
| 1487 return new LIsStringAndBranch(UseRegisterAtStart(instr->value()), temp); |
| 1488 } |
| 1489 |
| 1490 |
| 1469 LInstruction* LChunkBuilder::DoIsSmiAndBranch(HIsSmiAndBranch* instr) { | 1491 LInstruction* LChunkBuilder::DoIsSmiAndBranch(HIsSmiAndBranch* instr) { |
| 1470 ASSERT(instr->value()->representation().IsTagged()); | 1492 ASSERT(instr->value()->representation().IsTagged()); |
| 1471 return new LIsSmiAndBranch(Use(instr->value())); | 1493 return new LIsSmiAndBranch(Use(instr->value())); |
| 1472 } | 1494 } |
| 1473 | 1495 |
| 1474 | 1496 |
| 1475 LInstruction* LChunkBuilder::DoIsUndetectableAndBranch( | 1497 LInstruction* LChunkBuilder::DoIsUndetectableAndBranch( |
| 1476 HIsUndetectableAndBranch* instr) { | 1498 HIsUndetectableAndBranch* instr) { |
| 1477 ASSERT(instr->value()->representation().IsTagged()); | 1499 ASSERT(instr->value()->representation().IsTagged()); |
| 1478 return new LIsUndetectableAndBranch(UseRegisterAtStart(instr->value()), | 1500 return new LIsUndetectableAndBranch(UseRegisterAtStart(instr->value()), |
| 1479 TempRegister()); | 1501 TempRegister()); |
| 1480 } | 1502 } |
| 1481 | 1503 |
| 1482 | 1504 |
| 1505 LInstruction* LChunkBuilder::DoCompareGenericAndBranch( |
| 1506 HCompareGenericAndBranch* instr) { |
| 1507 |
| 1508 ASSERT(instr->left()->representation().IsTagged()); |
| 1509 ASSERT(instr->right()->representation().IsTagged()); |
| 1510 LOperand* left = UseFixed(instr->left(), r1); |
| 1511 LOperand* right = UseFixed(instr->right(), r0); |
| 1512 LCompareGenericAndBranch* result = new LCompareGenericAndBranch(left, right); |
| 1513 return AssignEnvironment(MarkAsCall(result, instr)); |
| 1514 } |
| 1515 |
| 1516 |
| 1483 LInstruction* LChunkBuilder::DoHasInstanceTypeAndBranch( | 1517 LInstruction* LChunkBuilder::DoHasInstanceTypeAndBranch( |
| 1484 HHasInstanceTypeAndBranch* instr) { | 1518 HHasInstanceTypeAndBranch* instr) { |
| 1485 ASSERT(instr->value()->representation().IsTagged()); | 1519 ASSERT(instr->value()->representation().IsTagged()); |
| 1486 return new LHasInstanceTypeAndBranch(UseRegisterAtStart(instr->value())); | 1520 return new LHasInstanceTypeAndBranch(UseRegisterAtStart(instr->value())); |
| 1487 } | 1521 } |
| 1488 | 1522 |
| 1489 | 1523 |
| 1490 LInstruction* LChunkBuilder::DoGetCachedArrayIndex( | 1524 LInstruction* LChunkBuilder::DoGetCachedArrayIndex( |
| 1491 HGetCachedArrayIndex* instr) { | 1525 HGetCachedArrayIndex* instr) { |
| 1492 ASSERT(instr->value()->representation().IsTagged()); | 1526 ASSERT(instr->value()->representation().IsTagged()); |
| (...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2208 | 2242 |
| 2209 LInstruction* LChunkBuilder::DoIn(HIn* instr) { | 2243 LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
| 2210 LOperand* key = UseRegisterAtStart(instr->key()); | 2244 LOperand* key = UseRegisterAtStart(instr->key()); |
| 2211 LOperand* object = UseRegisterAtStart(instr->object()); | 2245 LOperand* object = UseRegisterAtStart(instr->object()); |
| 2212 LIn* result = new LIn(key, object); | 2246 LIn* result = new LIn(key, object); |
| 2213 return MarkAsCall(DefineFixed(result, r0), instr); | 2247 return MarkAsCall(DefineFixed(result, r0), instr); |
| 2214 } | 2248 } |
| 2215 | 2249 |
| 2216 | 2250 |
| 2217 } } // namespace v8::internal | 2251 } } // namespace v8::internal |
| OLD | NEW |