| 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 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1394 ASSERT(instr->left()->representation().IsTagged()); | 1394 ASSERT(instr->left()->representation().IsTagged()); |
| 1395 ASSERT(instr->right()->representation().IsTagged()); | 1395 ASSERT(instr->right()->representation().IsTagged()); |
| 1396 bool reversed = (op == Token::GT || op == Token::LTE); | 1396 bool reversed = (op == Token::GT || op == Token::LTE); |
| 1397 LOperand* left = UseFixed(instr->left(), reversed ? rax : rdx); | 1397 LOperand* left = UseFixed(instr->left(), reversed ? rax : rdx); |
| 1398 LOperand* right = UseFixed(instr->right(), reversed ? rdx : rax); | 1398 LOperand* right = UseFixed(instr->right(), reversed ? rdx : rax); |
| 1399 LCmpT* result = new LCmpT(left, right); | 1399 LCmpT* result = new LCmpT(left, right); |
| 1400 return MarkAsCall(DefineFixed(result, rax), instr); | 1400 return MarkAsCall(DefineFixed(result, rax), instr); |
| 1401 } | 1401 } |
| 1402 | 1402 |
| 1403 | 1403 |
| 1404 LInstruction* LChunkBuilder::DoCompareIDAndBranch( | 1404 LInstruction* LChunkBuilder::DoCompareNumbersAndBranch( |
| 1405 HCompareIDAndBranch* instr) { | 1405 HCompareNumbersAndBranch* instr) { |
| 1406 Representation r = instr->GetInputRepresentation(); | 1406 Representation r = instr->GetInputRepresentation(); |
| 1407 if (r.IsInteger32()) { | 1407 if (r.IsInteger32()) { |
| 1408 ASSERT(instr->left()->representation().IsInteger32()); | 1408 ASSERT(instr->left()->representation().IsInteger32()); |
| 1409 ASSERT(instr->right()->representation().IsInteger32()); | 1409 ASSERT(instr->right()->representation().IsInteger32()); |
| 1410 LOperand* left = UseRegisterAtStart(instr->left()); | 1410 LOperand* left = UseRegisterAtStart(instr->left()); |
| 1411 LOperand* right = UseOrConstantAtStart(instr->right()); | 1411 LOperand* right = UseOrConstantAtStart(instr->right()); |
| 1412 return new LCmpIDAndBranch(left, right); | 1412 return new LCmpIDAndBranch(left, right); |
| 1413 } else { | 1413 } else { |
| 1414 ASSERT(r.IsDouble()); | 1414 ASSERT(r.IsDouble()); |
| 1415 ASSERT(instr->left()->representation().IsDouble()); | 1415 ASSERT(instr->left()->representation().IsDouble()); |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2173 LOperand* key = UseOrConstantAtStart(instr->key()); | 2173 LOperand* key = UseOrConstantAtStart(instr->key()); |
| 2174 LOperand* object = UseOrConstantAtStart(instr->object()); | 2174 LOperand* object = UseOrConstantAtStart(instr->object()); |
| 2175 LIn* result = new LIn(key, object); | 2175 LIn* result = new LIn(key, object); |
| 2176 return MarkAsCall(DefineFixed(result, rax), instr); | 2176 return MarkAsCall(DefineFixed(result, rax), instr); |
| 2177 } | 2177 } |
| 2178 | 2178 |
| 2179 | 2179 |
| 2180 } } // namespace v8::internal | 2180 } } // namespace v8::internal |
| 2181 | 2181 |
| 2182 #endif // V8_TARGET_ARCH_X64 | 2182 #endif // V8_TARGET_ARCH_X64 |
| OLD | NEW |