Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1616)

Side by Side Diff: src/arm/codegen-arm.h

Issue 5437002: Add generated code to calculate Math.log and to search Transcendental cache f... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/arm/codegen-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 void GenerateSwapElements(ZoneList<Expression*>* args); 509 void GenerateSwapElements(ZoneList<Expression*>* args);
510 510
511 // Fast call for custom callbacks. 511 // Fast call for custom callbacks.
512 void GenerateCallFunction(ZoneList<Expression*>* args); 512 void GenerateCallFunction(ZoneList<Expression*>* args);
513 513
514 // Fast call to math functions. 514 // Fast call to math functions.
515 void GenerateMathPow(ZoneList<Expression*>* args); 515 void GenerateMathPow(ZoneList<Expression*>* args);
516 void GenerateMathSin(ZoneList<Expression*>* args); 516 void GenerateMathSin(ZoneList<Expression*>* args);
517 void GenerateMathCos(ZoneList<Expression*>* args); 517 void GenerateMathCos(ZoneList<Expression*>* args);
518 void GenerateMathSqrt(ZoneList<Expression*>* args); 518 void GenerateMathSqrt(ZoneList<Expression*>* args);
519 void GenerateMathLog(ZoneList<Expression*>* args);
519 520
520 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args); 521 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args);
521 522
522 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args); 523 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args);
523 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args); 524 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args);
524 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args); 525 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args);
525 526
526 // Simple condition analysis. 527 // Simple condition analysis.
527 enum ConditionAnalysis { 528 enum ConditionAnalysis {
528 ALWAYS_TRUE, 529 ALWAYS_TRUE,
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 friend class FullCodeGenerator; 580 friend class FullCodeGenerator;
580 friend class FullCodeGenSyntaxChecker; 581 friend class FullCodeGenSyntaxChecker;
581 582
582 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); 583 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
583 }; 584 };
584 585
585 586
586 } } // namespace v8::internal 587 } } // namespace v8::internal
587 588
588 #endif // V8_ARM_CODEGEN_ARM_H_ 589 #endif // V8_ARM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/arm/codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698