| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 // name/value pairs. | 352 // name/value pairs. |
| 353 void DeclareGlobals(Handle<FixedArray> pairs); | 353 void DeclareGlobals(Handle<FixedArray> pairs); |
| 354 | 354 |
| 355 // Instantiate the function boilerplate. | 355 // Instantiate the function boilerplate. |
| 356 void InstantiateBoilerplate(Handle<JSFunction> boilerplate); | 356 void InstantiateBoilerplate(Handle<JSFunction> boilerplate); |
| 357 | 357 |
| 358 // Support for type checks. | 358 // Support for type checks. |
| 359 void GenerateIsSmi(ZoneList<Expression*>* args); | 359 void GenerateIsSmi(ZoneList<Expression*>* args); |
| 360 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args); | 360 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args); |
| 361 void GenerateIsArray(ZoneList<Expression*>* args); | 361 void GenerateIsArray(ZoneList<Expression*>* args); |
| 362 void GenerateIsRegExp(ZoneList<Expression*>* args); |
| 362 void GenerateIsObject(ZoneList<Expression*>* args); | 363 void GenerateIsObject(ZoneList<Expression*>* args); |
| 363 void GenerateIsFunction(ZoneList<Expression*>* args); | 364 void GenerateIsFunction(ZoneList<Expression*>* args); |
| 364 void GenerateIsUndetectableObject(ZoneList<Expression*>* args); | 365 void GenerateIsUndetectableObject(ZoneList<Expression*>* args); |
| 365 | 366 |
| 366 // Support for construct call checks. | 367 // Support for construct call checks. |
| 367 void GenerateIsConstructCall(ZoneList<Expression*>* args); | 368 void GenerateIsConstructCall(ZoneList<Expression*>* args); |
| 368 | 369 |
| 369 // Support for arguments.length and arguments[?]. | 370 // Support for arguments.length and arguments[?]. |
| 370 void GenerateArgumentsLength(ZoneList<Expression*>* args); | 371 void GenerateArgumentsLength(ZoneList<Expression*>* args); |
| 371 void GenerateArgumentsAccess(ZoneList<Expression*>* args); | 372 void GenerateArgumentsAccess(ZoneList<Expression*>* args); |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 Major MajorKey() { return StringCompare; } | 621 Major MajorKey() { return StringCompare; } |
| 621 int MinorKey() { return 0; } | 622 int MinorKey() { return 0; } |
| 622 | 623 |
| 623 void Generate(MacroAssembler* masm); | 624 void Generate(MacroAssembler* masm); |
| 624 }; | 625 }; |
| 625 | 626 |
| 626 | 627 |
| 627 } } // namespace v8::internal | 628 } } // namespace v8::internal |
| 628 | 629 |
| 629 #endif // V8_ARM_CODEGEN_ARM_H_ | 630 #endif // V8_ARM_CODEGEN_ARM_H_ |
| OLD | NEW |