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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 | 348 |
349 // Fast support for object equality testing. | 349 // Fast support for object equality testing. |
350 void GenerateObjectEquals(ZoneList<Expression*>* args); | 350 void GenerateObjectEquals(ZoneList<Expression*>* args); |
351 | 351 |
352 void GenerateLog(ZoneList<Expression*>* args); | 352 void GenerateLog(ZoneList<Expression*>* args); |
353 | 353 |
354 // Fast support for Math.random(). | 354 // Fast support for Math.random(). |
355 void GenerateRandomHeapNumber(ZoneList<Expression*>* args); | 355 void GenerateRandomHeapNumber(ZoneList<Expression*>* args); |
356 | 356 |
357 void GenerateIsObject(ZoneList<Expression*>* args); | 357 void GenerateIsObject(ZoneList<Expression*>* args); |
| 358 void GenerateIsSpecObject(ZoneList<Expression*>* args); |
358 void GenerateIsFunction(ZoneList<Expression*>* args); | 359 void GenerateIsFunction(ZoneList<Expression*>* args); |
359 void GenerateIsUndetectableObject(ZoneList<Expression*>* args); | 360 void GenerateIsUndetectableObject(ZoneList<Expression*>* args); |
360 void GenerateStringAdd(ZoneList<Expression*>* args); | 361 void GenerateStringAdd(ZoneList<Expression*>* args); |
361 void GenerateSubString(ZoneList<Expression*>* args); | 362 void GenerateSubString(ZoneList<Expression*>* args); |
362 void GenerateStringCompare(ZoneList<Expression*>* args); | 363 void GenerateStringCompare(ZoneList<Expression*>* args); |
363 void GenerateRegExpExec(ZoneList<Expression*>* args); | 364 void GenerateRegExpExec(ZoneList<Expression*>* args); |
364 void GenerateNumberToString(ZoneList<Expression*>* args); | 365 void GenerateNumberToString(ZoneList<Expression*>* args); |
365 | 366 |
366 // Fast call to math functions. | 367 // Fast call to math functions. |
367 void GenerateMathPow(ZoneList<Expression*>* args); | 368 void GenerateMathPow(ZoneList<Expression*>* args); |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 friend class FullCodeGenerator; | 425 friend class FullCodeGenerator; |
425 friend class FullCodeGenSyntaxChecker; | 426 friend class FullCodeGenSyntaxChecker; |
426 | 427 |
427 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 428 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
428 }; | 429 }; |
429 | 430 |
430 | 431 |
431 } } // namespace v8::internal | 432 } } // namespace v8::internal |
432 | 433 |
433 #endif // V8_MIPS_CODEGEN_MIPS_H_ | 434 #endif // V8_MIPS_CODEGEN_MIPS_H_ |
OLD | NEW |