| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args); | 333 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args); |
| 334 void GenerateIsArray(ZoneList<Expression*>* args); | 334 void GenerateIsArray(ZoneList<Expression*>* args); |
| 335 | 335 |
| 336 // Support for construct call checks. | 336 // Support for construct call checks. |
| 337 void GenerateIsConstructCall(ZoneList<Expression*>* args); | 337 void GenerateIsConstructCall(ZoneList<Expression*>* args); |
| 338 | 338 |
| 339 // Support for arguments.length and arguments[?]. | 339 // Support for arguments.length and arguments[?]. |
| 340 void GenerateArgumentsLength(ZoneList<Expression*>* args); | 340 void GenerateArgumentsLength(ZoneList<Expression*>* args); |
| 341 void GenerateArgumentsAccess(ZoneList<Expression*>* args); | 341 void GenerateArgumentsAccess(ZoneList<Expression*>* args); |
| 342 | 342 |
| 343 // Support for accessing the value field of an object (used by Date). | 343 // Support for accessing the class and value fields of an object. |
| 344 void GenerateClassOf(ZoneList<Expression*>* args); |
| 344 void GenerateValueOf(ZoneList<Expression*>* args); | 345 void GenerateValueOf(ZoneList<Expression*>* args); |
| 345 void GenerateSetValueOf(ZoneList<Expression*>* args); | 346 void GenerateSetValueOf(ZoneList<Expression*>* args); |
| 346 | 347 |
| 347 // Fast support for charCodeAt(n). | 348 // Fast support for charCodeAt(n). |
| 348 void GenerateFastCharCodeAt(ZoneList<Expression*>* args); | 349 void GenerateFastCharCodeAt(ZoneList<Expression*>* args); |
| 349 | 350 |
| 350 // Fast support for object equality testing. | 351 // Fast support for object equality testing. |
| 351 void GenerateObjectEquals(ZoneList<Expression*>* args); | 352 void GenerateObjectEquals(ZoneList<Expression*>* args); |
| 352 | 353 |
| 353 void GenerateLog(ZoneList<Expression*>* args); | 354 void GenerateLog(ZoneList<Expression*>* args); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 friend class JumpTarget; | 410 friend class JumpTarget; |
| 410 friend class Reference; | 411 friend class Reference; |
| 411 | 412 |
| 412 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); | 413 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); |
| 413 }; | 414 }; |
| 414 | 415 |
| 415 | 416 |
| 416 } } // namespace v8::internal | 417 } } // namespace v8::internal |
| 417 | 418 |
| 418 #endif // V8_ARM_CODEGEN_ARM_H_ | 419 #endif // V8_ARM_CODEGEN_ARM_H_ |
| OLD | NEW |