| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 void Comparison(Condition cc, | 350 void Comparison(Condition cc, |
| 351 Expression* left, | 351 Expression* left, |
| 352 Expression* right, | 352 Expression* right, |
| 353 bool strict = false); | 353 bool strict = false); |
| 354 | 354 |
| 355 void SmiOperation(Token::Value op, | 355 void SmiOperation(Token::Value op, |
| 356 Handle<Object> value, | 356 Handle<Object> value, |
| 357 bool reversed, | 357 bool reversed, |
| 358 OverwriteMode mode); | 358 OverwriteMode mode); |
| 359 | 359 |
| 360 void VirtualFrameSmiOperation(Token::Value op, | |
| 361 Handle<Object> value, | |
| 362 bool reversed, | |
| 363 OverwriteMode mode); | |
| 364 | |
| 365 void CallWithArguments(ZoneList<Expression*>* arguments, | 360 void CallWithArguments(ZoneList<Expression*>* arguments, |
| 366 CallFunctionFlags flags, | 361 CallFunctionFlags flags, |
| 367 int position); | 362 int position); |
| 368 | 363 |
| 369 // An optimized implementation of expressions of the form | 364 // An optimized implementation of expressions of the form |
| 370 // x.apply(y, arguments). We call x the applicand and y the receiver. | 365 // x.apply(y, arguments). We call x the applicand and y the receiver. |
| 371 // The optimization avoids allocating an arguments object if possible. | 366 // The optimization avoids allocating an arguments object if possible. |
| 372 void CallApplyLazy(Expression* applicand, | 367 void CallApplyLazy(Expression* applicand, |
| 373 Expression* receiver, | 368 Expression* receiver, |
| 374 VariableProxy* arguments, | 369 VariableProxy* arguments, |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 void Print() { | 852 void Print() { |
| 858 PrintF("NumberToStringStub\n"); | 853 PrintF("NumberToStringStub\n"); |
| 859 } | 854 } |
| 860 #endif | 855 #endif |
| 861 }; | 856 }; |
| 862 | 857 |
| 863 | 858 |
| 864 } } // namespace v8::internal | 859 } } // namespace v8::internal |
| 865 | 860 |
| 866 #endif // V8_ARM_CODEGEN_ARM_H_ | 861 #endif // V8_ARM_CODEGEN_ARM_H_ |
| OLD | NEW |