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

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

Issue 1623004: Faster invocation of custom comparator function. (Closed)
Patch Set: Next round Created 10 years, 8 months 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
« no previous file with comments | « no previous file | 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 397
398 // Fast support for StringCompare. 398 // Fast support for StringCompare.
399 void GenerateStringCompare(ZoneList<Expression*>* args); 399 void GenerateStringCompare(ZoneList<Expression*>* args);
400 400
401 // Support for direct calls from JavaScript to native RegExp code. 401 // Support for direct calls from JavaScript to native RegExp code.
402 void GenerateRegExpExec(ZoneList<Expression*>* args); 402 void GenerateRegExpExec(ZoneList<Expression*>* args);
403 403
404 // Fast support for number to string. 404 // Fast support for number to string.
405 void GenerateNumberToString(ZoneList<Expression*>* args); 405 void GenerateNumberToString(ZoneList<Expression*>* args);
406 406
407 // Fast call for custom callbacks.
408 void GenerateCallFunction(ZoneList<Expression*>* args);
409
407 // Fast call to math functions. 410 // Fast call to math functions.
408 void GenerateMathPow(ZoneList<Expression*>* args); 411 void GenerateMathPow(ZoneList<Expression*>* args);
409 void GenerateMathSin(ZoneList<Expression*>* args); 412 void GenerateMathSin(ZoneList<Expression*>* args);
410 void GenerateMathCos(ZoneList<Expression*>* args); 413 void GenerateMathCos(ZoneList<Expression*>* args);
411 void GenerateMathSqrt(ZoneList<Expression*>* args); 414 void GenerateMathSqrt(ZoneList<Expression*>* args);
412 415
413 // Simple condition analysis. 416 // Simple condition analysis.
414 enum ConditionAnalysis { 417 enum ConditionAnalysis {
415 ALWAYS_TRUE, 418 ALWAYS_TRUE,
416 ALWAYS_FALSE, 419 ALWAYS_FALSE,
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 void Print() { 735 void Print() {
733 PrintF("NumberToStringStub\n"); 736 PrintF("NumberToStringStub\n");
734 } 737 }
735 #endif 738 #endif
736 }; 739 };
737 740
738 741
739 } } // namespace v8::internal 742 } } // namespace v8::internal
740 743
741 #endif // V8_ARM_CODEGEN_ARM_H_ 744 #endif // V8_ARM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698