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

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

Issue 596122: Some string optimizations: (Closed)
Patch Set: Undo unnecessary optimizations. Created 10 years, 10 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') | src/macros.py » ('J')
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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 // name/value pairs. 352 // name/value pairs.
353 void DeclareGlobals(Handle<FixedArray> pairs); 353 void DeclareGlobals(Handle<FixedArray> pairs);
354 354
355 // Instantiate the function boilerplate. 355 // Instantiate the function boilerplate.
356 void InstantiateBoilerplate(Handle<JSFunction> boilerplate); 356 void InstantiateBoilerplate(Handle<JSFunction> boilerplate);
357 357
358 // Support for type checks. 358 // Support for type checks.
359 void GenerateIsSmi(ZoneList<Expression*>* args); 359 void GenerateIsSmi(ZoneList<Expression*>* args);
360 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args); 360 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args);
361 void GenerateIsArray(ZoneList<Expression*>* args); 361 void GenerateIsArray(ZoneList<Expression*>* args);
362 void GenerateIsRegExp(ZoneList<Expression*>* args);
362 void GenerateIsObject(ZoneList<Expression*>* args); 363 void GenerateIsObject(ZoneList<Expression*>* args);
363 void GenerateIsFunction(ZoneList<Expression*>* args); 364 void GenerateIsFunction(ZoneList<Expression*>* args);
364 void GenerateIsUndetectableObject(ZoneList<Expression*>* args); 365 void GenerateIsUndetectableObject(ZoneList<Expression*>* args);
365 366
366 // Support for construct call checks. 367 // Support for construct call checks.
367 void GenerateIsConstructCall(ZoneList<Expression*>* args); 368 void GenerateIsConstructCall(ZoneList<Expression*>* args);
368 369
369 // Support for arguments.length and arguments[?]. 370 // Support for arguments.length and arguments[?].
370 void GenerateArgumentsLength(ZoneList<Expression*>* args); 371 void GenerateArgumentsLength(ZoneList<Expression*>* args);
371 void GenerateArgumentsAccess(ZoneList<Expression*>* args); 372 void GenerateArgumentsAccess(ZoneList<Expression*>* args);
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 Major MajorKey() { return StringCompare; } 621 Major MajorKey() { return StringCompare; }
621 int MinorKey() { return 0; } 622 int MinorKey() { return 0; }
622 623
623 void Generate(MacroAssembler* masm); 624 void Generate(MacroAssembler* masm);
624 }; 625 };
625 626
626 627
627 } } // namespace v8::internal 628 } } // namespace v8::internal
628 629
629 #endif // V8_ARM_CODEGEN_ARM_H_ 630 #endif // V8_ARM_CODEGEN_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/codegen-arm.cc » ('j') | src/macros.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698