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

Side by Side Diff: src/ia32/codegen-ia32.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/ia32/code-stubs-ia32.cc ('k') | src/ia32/codegen-ia32.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 687 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 void GenerateSwapElements(ZoneList<Expression*>* args); 698 void GenerateSwapElements(ZoneList<Expression*>* args);
699 699
700 // Fast call for custom callbacks. 700 // Fast call for custom callbacks.
701 void GenerateCallFunction(ZoneList<Expression*>* args); 701 void GenerateCallFunction(ZoneList<Expression*>* args);
702 702
703 // Fast call to math functions. 703 // Fast call to math functions.
704 void GenerateMathPow(ZoneList<Expression*>* args); 704 void GenerateMathPow(ZoneList<Expression*>* args);
705 void GenerateMathSin(ZoneList<Expression*>* args); 705 void GenerateMathSin(ZoneList<Expression*>* args);
706 void GenerateMathCos(ZoneList<Expression*>* args); 706 void GenerateMathCos(ZoneList<Expression*>* args);
707 void GenerateMathSqrt(ZoneList<Expression*>* args); 707 void GenerateMathSqrt(ZoneList<Expression*>* args);
708 void GenerateMathLog(ZoneList<Expression*>* args);
708 709
709 // Check whether two RegExps are equivalent 710 // Check whether two RegExps are equivalent.
710 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args); 711 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args);
711 712
712 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args); 713 void GenerateHasCachedArrayIndex(ZoneList<Expression*>* args);
713 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args); 714 void GenerateGetCachedArrayIndex(ZoneList<Expression*>* args);
714 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args); 715 void GenerateFastAsciiArrayJoin(ZoneList<Expression*>* args);
715 716
716 // Simple condition analysis. 717 // Simple condition analysis.
717 enum ConditionAnalysis { 718 enum ConditionAnalysis {
718 ALWAYS_TRUE, 719 ALWAYS_TRUE,
719 ALWAYS_FALSE, 720 ALWAYS_FALSE,
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 786
786 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc 787 friend class CodeGeneratorPatcher; // Used in test-log-stack-tracer.cc
787 788
788 DISALLOW_COPY_AND_ASSIGN(CodeGenerator); 789 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
789 }; 790 };
790 791
791 792
792 } } // namespace v8::internal 793 } } // namespace v8::internal
793 794
794 #endif // V8_IA32_CODEGEN_IA32_H_ 795 #endif // V8_IA32_CODEGEN_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/ia32/codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698