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

Unified Diff: src/ast/variables.cc

Issue 2955793002: Revert of Make some functions that are hit during renderer startup available for inlining (Closed)
Patch Set: Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ast/variables.h ('k') | src/heap/heap.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/variables.cc
diff --git a/src/ast/variables.cc b/src/ast/variables.cc
index bce552c2c16f6236ccebdc35fb8ed2437ea698bc..df839c5d8ccf21c95bc12f6c0e24686a2ff55c28 100644
--- a/src/ast/variables.cc
+++ b/src/ast/variables.cc
@@ -13,6 +13,26 @@
// ----------------------------------------------------------------------------
// Implementation Variable.
+
+Variable::Variable(Scope* scope, const AstRawString* name, VariableMode mode,
+ VariableKind kind, InitializationFlag initialization_flag,
+ MaybeAssignedFlag maybe_assigned_flag)
+ : scope_(scope),
+ name_(name),
+ local_if_not_shadowed_(nullptr),
+ next_(nullptr),
+ index_(-1),
+ initializer_position_(kNoSourcePosition),
+ bit_field_(MaybeAssignedFlagField::encode(maybe_assigned_flag) |
+ InitializationFlagField::encode(initialization_flag) |
+ VariableModeField::encode(mode) | IsUsedField::encode(false) |
+ ForceContextAllocationField::encode(false) |
+ ForceHoleInitializationField::encode(false) |
+ LocationField::encode(VariableLocation::UNALLOCATED) |
+ VariableKindField::encode(kind)) {
+ // Var declared variables never need initialization.
+ DCHECK(!(mode == VAR && initialization_flag == kNeedsInitialization));
+}
Variable::Variable(Variable* other)
: scope_(other->scope_),
« no previous file with comments | « src/ast/variables.h ('k') | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698