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

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

Issue 3117006: Handle overwriting valueOf on String objects correctly when adding... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « src/contexts.h ('k') | src/full-codegen.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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 void EmitInlineRuntimeCall(CallRuntime* expr); 401 void EmitInlineRuntimeCall(CallRuntime* expr);
402 void EmitIsSmi(ZoneList<Expression*>* arguments); 402 void EmitIsSmi(ZoneList<Expression*>* arguments);
403 void EmitIsNonNegativeSmi(ZoneList<Expression*>* arguments); 403 void EmitIsNonNegativeSmi(ZoneList<Expression*>* arguments);
404 void EmitIsObject(ZoneList<Expression*>* arguments); 404 void EmitIsObject(ZoneList<Expression*>* arguments);
405 void EmitIsSpecObject(ZoneList<Expression*>* arguments); 405 void EmitIsSpecObject(ZoneList<Expression*>* arguments);
406 void EmitIsUndetectableObject(ZoneList<Expression*>* arguments); 406 void EmitIsUndetectableObject(ZoneList<Expression*>* arguments);
407 void EmitIsFunction(ZoneList<Expression*>* arguments); 407 void EmitIsFunction(ZoneList<Expression*>* arguments);
408 void EmitIsArray(ZoneList<Expression*>* arguments); 408 void EmitIsArray(ZoneList<Expression*>* arguments);
409 void EmitIsRegExp(ZoneList<Expression*>* arguments); 409 void EmitIsRegExp(ZoneList<Expression*>* arguments);
410 void EmitIsConstructCall(ZoneList<Expression*>* arguments); 410 void EmitIsConstructCall(ZoneList<Expression*>* arguments);
411 void EmitIsStringWrapperSafeForDefaultValueOf(
412 ZoneList<Expression*>* arguments);
411 void EmitObjectEquals(ZoneList<Expression*>* arguments); 413 void EmitObjectEquals(ZoneList<Expression*>* arguments);
412 void EmitArguments(ZoneList<Expression*>* arguments); 414 void EmitArguments(ZoneList<Expression*>* arguments);
413 void EmitArgumentsLength(ZoneList<Expression*>* arguments); 415 void EmitArgumentsLength(ZoneList<Expression*>* arguments);
414 void EmitClassOf(ZoneList<Expression*>* arguments); 416 void EmitClassOf(ZoneList<Expression*>* arguments);
415 void EmitValueOf(ZoneList<Expression*>* arguments); 417 void EmitValueOf(ZoneList<Expression*>* arguments);
416 void EmitSetValueOf(ZoneList<Expression*>* arguments); 418 void EmitSetValueOf(ZoneList<Expression*>* arguments);
417 void EmitNumberToString(ZoneList<Expression*>* arguments); 419 void EmitNumberToString(ZoneList<Expression*>* arguments);
418 void EmitStringCharFromCode(ZoneList<Expression*>* arguments); 420 void EmitStringCharFromCode(ZoneList<Expression*>* arguments);
419 void EmitStringCharCodeAt(ZoneList<Expression*>* arguments); 421 void EmitStringCharCodeAt(ZoneList<Expression*>* arguments);
420 void EmitStringCharAt(ZoneList<Expression*>* arguments); 422 void EmitStringCharAt(ZoneList<Expression*>* arguments);
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 542
541 friend class NestedStatement; 543 friend class NestedStatement;
542 544
543 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator); 545 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator);
544 }; 546 };
545 547
546 548
547 } } // namespace v8::internal 549 } } // namespace v8::internal
548 550
549 #endif // V8_FULL_CODEGEN_H_ 551 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698