OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1424 __ mov(r0, Operand(Factory::false_value()), LeaveCC, ne); | 1424 __ mov(r0, Operand(Factory::false_value()), LeaveCC, ne); |
1425 __ mov(r0, Operand(Factory::true_value()), LeaveCC, eq); | 1425 __ mov(r0, Operand(Factory::true_value()), LeaveCC, eq); |
1426 } | 1426 } |
1427 | 1427 |
1428 | 1428 |
1429 void LCodeGen::DoInstanceOfAndBranch(LInstanceOfAndBranch* instr) { | 1429 void LCodeGen::DoInstanceOfAndBranch(LInstanceOfAndBranch* instr) { |
1430 Abort("DoInstanceOfAndBranch unimplemented."); | 1430 Abort("DoInstanceOfAndBranch unimplemented."); |
1431 } | 1431 } |
1432 | 1432 |
1433 | 1433 |
| 1434 void LCodeGen::DoInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr) { |
| 1435 Abort("DoInstanceOfKnownGlobal unimplemented."); |
| 1436 } |
| 1437 |
1434 | 1438 |
1435 static Condition ComputeCompareCondition(Token::Value op) { | 1439 static Condition ComputeCompareCondition(Token::Value op) { |
1436 switch (op) { | 1440 switch (op) { |
1437 case Token::EQ_STRICT: | 1441 case Token::EQ_STRICT: |
1438 case Token::EQ: | 1442 case Token::EQ: |
1439 return eq; | 1443 return eq; |
1440 case Token::LT: | 1444 case Token::LT: |
1441 return lt; | 1445 return lt; |
1442 case Token::GT: | 1446 case Token::GT: |
1443 return gt; | 1447 return gt; |
(...skipping 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2364 | 2368 |
2365 | 2369 |
2366 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { | 2370 void LCodeGen::DoOsrEntry(LOsrEntry* instr) { |
2367 Abort("DoOsrEntry unimplemented."); | 2371 Abort("DoOsrEntry unimplemented."); |
2368 } | 2372 } |
2369 | 2373 |
2370 | 2374 |
2371 #undef __ | 2375 #undef __ |
2372 | 2376 |
2373 } } // namespace v8::internal | 2377 } } // namespace v8::internal |
OLD | NEW |