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

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

Issue 1563005: Introduce fast native caches and use it in String.search. (Closed)
Patch Set: Last 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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 void GenerateSubString(ZoneList<Expression*>* args); 402 void GenerateSubString(ZoneList<Expression*>* args);
403 403
404 // Fast support for StringCompare. 404 // Fast support for StringCompare.
405 void GenerateStringCompare(ZoneList<Expression*>* args); 405 void GenerateStringCompare(ZoneList<Expression*>* args);
406 406
407 // Support for direct calls from JavaScript to native RegExp code. 407 // Support for direct calls from JavaScript to native RegExp code.
408 void GenerateRegExpExec(ZoneList<Expression*>* args); 408 void GenerateRegExpExec(ZoneList<Expression*>* args);
409 409
410 void GenerateRegExpConstructResult(ZoneList<Expression*>* args); 410 void GenerateRegExpConstructResult(ZoneList<Expression*>* args);
411 411
412 // Support for fast native caches.
413 void GenerateGetFromCache(ZoneList<Expression*>* args);
414
412 // Fast support for number to string. 415 // Fast support for number to string.
413 void GenerateNumberToString(ZoneList<Expression*>* args); 416 void GenerateNumberToString(ZoneList<Expression*>* args);
414 417
415 // Fast call for custom callbacks. 418 // Fast call for custom callbacks.
416 void GenerateCallFunction(ZoneList<Expression*>* args); 419 void GenerateCallFunction(ZoneList<Expression*>* args);
417 420
418 // Fast call to math functions. 421 // Fast call to math functions.
419 void GenerateMathPow(ZoneList<Expression*>* args); 422 void GenerateMathPow(ZoneList<Expression*>* args);
420 void GenerateMathSin(ZoneList<Expression*>* args); 423 void GenerateMathSin(ZoneList<Expression*>* args);
421 void GenerateMathCos(ZoneList<Expression*>* args); 424 void GenerateMathCos(ZoneList<Expression*>* args);
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 void Print() { 813 void Print() {
811 PrintF("NumberToStringStub\n"); 814 PrintF("NumberToStringStub\n");
812 } 815 }
813 #endif 816 #endif
814 }; 817 };
815 818
816 819
817 } } // namespace v8::internal 820 } } // namespace v8::internal
818 821
819 #endif // V8_ARM_CODEGEN_ARM_H_ 822 #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