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

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

Issue 5862002: Version 3.0.2. (Closed)
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
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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 bool left_is_constant_smi, 474 bool left_is_constant_smi,
475 Smi* value); 475 Smi* value);
476 476
477 void EmitConstantSmiSub(Expression* expr, 477 void EmitConstantSmiSub(Expression* expr,
478 OverwriteMode mode, 478 OverwriteMode mode,
479 bool left_is_constant_smi, 479 bool left_is_constant_smi,
480 Smi* value); 480 Smi* value);
481 481
482 // Assign to the given expression as if via '='. The right-hand-side value 482 // Assign to the given expression as if via '='. The right-hand-side value
483 // is expected in the accumulator. 483 // is expected in the accumulator.
484 void EmitAssignment(Expression* expr, int bailout_ast_id); 484 void EmitAssignment(Expression* expr);
485 485
486 // Complete a variable assignment. The right-hand-side value is expected 486 // Complete a variable assignment. The right-hand-side value is expected
487 // in the accumulator. 487 // in the accumulator.
488 void EmitVariableAssignment(Variable* var, 488 void EmitVariableAssignment(Variable* var,
489 Token::Value op); 489 Token::Value op);
490 490
491 // Complete a named property assignment. The receiver is expected on top 491 // Complete a named property assignment. The receiver is expected on top
492 // of the stack and the right-hand-side value in the accumulator. 492 // of the stack and the right-hand-side value in the accumulator.
493 void EmitNamedPropertyAssignment(Assignment* expr); 493 void EmitNamedPropertyAssignment(Assignment* expr);
494 494
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 756
757 friend class NestedStatement; 757 friend class NestedStatement;
758 758
759 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator); 759 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator);
760 }; 760 };
761 761
762 762
763 } } // namespace v8::internal 763 } } // namespace v8::internal
764 764
765 #endif // V8_FULL_CODEGEN_H_ 765 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« ChangeLog ('K') | « src/flag-definitions.h ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698