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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) { | 285 void CodeGenerator::GenerateLog(ZoneList<Expression*>* args) { |
286 UNIMPLEMENTED_MIPS(); | 286 UNIMPLEMENTED_MIPS(); |
287 } | 287 } |
288 | 288 |
289 | 289 |
290 void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) { | 290 void CodeGenerator::GenerateIsNonNegativeSmi(ZoneList<Expression*>* args) { |
291 UNIMPLEMENTED_MIPS(); | 291 UNIMPLEMENTED_MIPS(); |
292 } | 292 } |
293 | 293 |
294 | 294 |
295 void CodeGenerator::GeneratePow(ZoneList<Expression*>* args) { | 295 void CodeGenerator::GenerateMathPow(ZoneList<Expression*>* args) { |
| 296 UNIMPLEMENTED_MIPS(); |
| 297 } |
| 298 |
| 299 |
| 300 void CodeGenerator::GenerateMathSqrt(ZoneList<Expression*>* args) { |
296 UNIMPLEMENTED_MIPS(); | 301 UNIMPLEMENTED_MIPS(); |
297 } | 302 } |
298 | 303 |
299 | 304 |
300 // This should generate code that performs a charCodeAt() call or returns | 305 // This should generate code that performs a charCodeAt() call or returns |
301 // undefined in order to trigger the slow case, Runtime_StringCharCodeAt. | 306 // undefined in order to trigger the slow case, Runtime_StringCharCodeAt. |
302 // It is not yet implemented on ARM, so it always goes to the slow case. | 307 // It is not yet implemented on ARM, so it always goes to the slow case. |
303 void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) { | 308 void CodeGenerator::GenerateFastCharCodeAt(ZoneList<Expression*>* args) { |
304 UNIMPLEMENTED_MIPS(); | 309 UNIMPLEMENTED_MIPS(); |
305 } | 310 } |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 int CompareStub::MinorKey() { | 544 int CompareStub::MinorKey() { |
540 // Encode the two parameters in a unique 16 bit value. | 545 // Encode the two parameters in a unique 16 bit value. |
541 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15)); | 546 ASSERT(static_cast<unsigned>(cc_) >> 28 < (1 << 15)); |
542 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0); | 547 return (static_cast<unsigned>(cc_) >> 27) | (strict_ ? 1 : 0); |
543 } | 548 } |
544 | 549 |
545 | 550 |
546 #undef __ | 551 #undef __ |
547 | 552 |
548 } } // namespace v8::internal | 553 } } // namespace v8::internal |
OLD | NEW |