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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) { | 900 void CodeGenerator::GenerateObjectEquals(ZoneList<Expression*>* args) { |
901 UNIMPLEMENTED_MIPS(); | 901 UNIMPLEMENTED_MIPS(); |
902 } | 902 } |
903 | 903 |
904 | 904 |
905 void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) { | 905 void CodeGenerator::GenerateIsObject(ZoneList<Expression*>* args) { |
906 UNIMPLEMENTED_MIPS(); | 906 UNIMPLEMENTED_MIPS(); |
907 } | 907 } |
908 | 908 |
909 | 909 |
| 910 void CodeGenerator::GenerateIsSpecObject(ZoneList<Expression*>* args) { |
| 911 UNIMPLEMENTED_MIPS(); |
| 912 } |
| 913 |
| 914 |
910 void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) { | 915 void CodeGenerator::GenerateIsFunction(ZoneList<Expression*>* args) { |
911 UNIMPLEMENTED_MIPS(); | 916 UNIMPLEMENTED_MIPS(); |
912 } | 917 } |
913 | 918 |
914 | 919 |
915 void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) { | 920 void CodeGenerator::GenerateIsUndetectableObject(ZoneList<Expression*>* args) { |
916 UNIMPLEMENTED_MIPS(); | 921 UNIMPLEMENTED_MIPS(); |
917 } | 922 } |
918 | 923 |
919 | 924 |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1423 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15)); | 1428 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15)); |
1424 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0); | 1429 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0); |
1425 } | 1430 } |
1426 | 1431 |
1427 | 1432 |
1428 #undef __ | 1433 #undef __ |
1429 | 1434 |
1430 } } // namespace v8::internal | 1435 } } // namespace v8::internal |
1431 | 1436 |
1432 #endif // V8_TARGET_ARCH_MIPS | 1437 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |