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/full-codegen.h

Issue 39973003: Merge bleeding_edge. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: again Created 7 years, 2 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/frames.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
569 // accumulator. 569 // accumulator.
570 void EmitKeyedPropertyAssignment(Assignment* expr); 570 void EmitKeyedPropertyAssignment(Assignment* expr);
571 571
572 void CallIC(Handle<Code> code, 572 void CallIC(Handle<Code> code,
573 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET, 573 RelocInfo::Mode rmode = RelocInfo::CODE_TARGET,
574 TypeFeedbackId id = TypeFeedbackId::None()); 574 TypeFeedbackId id = TypeFeedbackId::None());
575 575
576 void SetFunctionPosition(FunctionLiteral* fun); 576 void SetFunctionPosition(FunctionLiteral* fun);
577 void SetReturnPosition(FunctionLiteral* fun); 577 void SetReturnPosition(FunctionLiteral* fun);
578 void SetStatementPosition(Statement* stmt); 578 void SetStatementPosition(Statement* stmt);
579 void SetExpressionPosition(Expression* expr, int pos); 579 void SetExpressionPosition(Expression* expr);
580 void SetStatementPosition(int pos); 580 void SetStatementPosition(int pos);
581 void SetSourcePosition(int pos); 581 void SetSourcePosition(int pos);
582 582
583 // Non-local control flow support. 583 // Non-local control flow support.
584 void EnterFinallyBlock(); 584 void EnterFinallyBlock();
585 void ExitFinallyBlock(); 585 void ExitFinallyBlock();
586 586
587 // Loop nesting counter. 587 // Loop nesting counter.
588 int loop_depth() { return loop_depth_; } 588 int loop_depth() { return loop_depth_; }
589 void increment_loop_depth() { loop_depth_++; } 589 void increment_loop_depth() { loop_depth_++; }
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
964 964
965 Address start_; 965 Address start_;
966 Address instruction_start_; 966 Address instruction_start_;
967 uint32_t length_; 967 uint32_t length_;
968 }; 968 };
969 969
970 970
971 } } // namespace v8::internal 971 } } // namespace v8::internal
972 972
973 #endif // V8_FULL_CODEGEN_H_ 973 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/frames.h ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698