blob: 1439942db8ae33785ce817ba91d3c669e34cddf9 [file] [log] [blame]
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001// Copyright 2012 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Leon Clarked91b9f72010-01-27 17:25:45 +00004
5#ifndef V8_FULL_CODEGEN_H_
6#define V8_FULL_CODEGEN_H_
7
Ben Murdochb8a8cc12014-11-26 15:28:44 +00008#include "src/v8.h"
Leon Clarked91b9f72010-01-27 17:25:45 +00009
Ben Murdochb8a8cc12014-11-26 15:28:44 +000010#include "src/allocation.h"
11#include "src/assert-scope.h"
12#include "src/ast.h"
Emily Bernierd0a1eb72015-03-24 16:35:39 -040013#include "src/bit-vector.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +000014#include "src/code-stubs.h"
15#include "src/codegen.h"
16#include "src/compiler.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +000017#include "src/globals.h"
18#include "src/objects.h"
Leon Clarked91b9f72010-01-27 17:25:45 +000019
20namespace v8 {
21namespace internal {
22
Ben Murdochb0fe1622011-05-05 13:52:32 +010023// Forward declarations.
24class JumpPatchSite;
25
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010026// AST node visitor which can tell whether a given statement will be breakable
27// when the code is compiled by the full compiler in the debugger. This means
28// that there will be an IC (load/store/call) in the code generated for the
29// debugger to piggybag on.
30class BreakableStatementChecker: public AstVisitor {
31 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +000032 explicit BreakableStatementChecker(Zone* zone) : is_breakable_(false) {
33 InitializeAstVisitor(zone);
34 }
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010035
36 void Check(Statement* stmt);
37 void Check(Expression* stmt);
38
39 bool is_breakable() { return is_breakable_; }
40
41 private:
42 // AST node visit functions.
Emily Bernierd0a1eb72015-03-24 16:35:39 -040043#define DECLARE_VISIT(type) virtual void Visit##type(type* node) OVERRIDE;
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010044 AST_NODE_LIST(DECLARE_VISIT)
45#undef DECLARE_VISIT
46
47 bool is_breakable_;
48
Ben Murdochb8a8cc12014-11-26 15:28:44 +000049 DEFINE_AST_VISITOR_SUBCLASS_MEMBERS();
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +010050 DISALLOW_COPY_AND_ASSIGN(BreakableStatementChecker);
51};
52
53
Leon Clarked91b9f72010-01-27 17:25:45 +000054// -----------------------------------------------------------------------------
55// Full code generator.
56
57class FullCodeGenerator: public AstVisitor {
58 public:
Ben Murdochb0fe1622011-05-05 13:52:32 +010059 enum State {
60 NO_REGISTERS,
61 TOS_REG
62 };
63
Ben Murdoch3ef787d2012-04-12 10:51:47 +010064 FullCodeGenerator(MacroAssembler* masm, CompilationInfo* info)
Leon Clarked91b9f72010-01-27 17:25:45 +000065 : masm_(masm),
Ben Murdoch3ef787d2012-04-12 10:51:47 +010066 info_(info),
67 scope_(info->scope()),
Leon Clarked91b9f72010-01-27 17:25:45 +000068 nesting_stack_(NULL),
69 loop_depth_(0),
Ben Murdochb8a8cc12014-11-26 15:28:44 +000070 globals_(NULL),
Ben Murdochb0fe1622011-05-05 13:52:32 +010071 context_(NULL),
Ben Murdoch3ef787d2012-04-12 10:51:47 +010072 bailout_entries_(info->HasDeoptimizationSupport()
Ben Murdochb8a8cc12014-11-26 15:28:44 +000073 ? info->function()->ast_node_count() : 0,
74 info->zone()),
75 back_edges_(2, info->zone()),
76 ic_total_count_(0) {
77 DCHECK(!info->IsStub());
78 Initialize();
79 }
80
81 void Initialize();
Leon Clarked91b9f72010-01-27 17:25:45 +000082
Ben Murdochf87a2032010-10-22 12:50:53 +010083 static bool MakeCode(CompilationInfo* info);
Leon Clarked91b9f72010-01-27 17:25:45 +000084
Ben Murdoch3ef787d2012-04-12 10:51:47 +010085 // Encode state and pc-offset as a BitField<type, start, size>.
86 // Only use 30 bits because we encode the result as a smi.
87 class StateField : public BitField<State, 0, 1> { };
88 class PcField : public BitField<unsigned, 1, 30-1> { };
Ben Murdochb0fe1622011-05-05 13:52:32 +010089
90 static const char* State2String(State state) {
91 switch (state) {
92 case NO_REGISTERS: return "NO_REGISTERS";
93 case TOS_REG: return "TOS_REG";
94 }
95 UNREACHABLE();
96 return NULL;
97 }
Leon Clarked91b9f72010-01-27 17:25:45 +000098
Ben Murdochb8a8cc12014-11-26 15:28:44 +000099 static const int kMaxBackEdgeWeight = 127;
100
101 // Platform-specific code size multiplier.
102#if V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X87
103 static const int kCodeSizeMultiplier = 105;
104 static const int kBootCodeSizeMultiplier = 100;
105#elif V8_TARGET_ARCH_X64
106 static const int kCodeSizeMultiplier = 170;
107 static const int kBootCodeSizeMultiplier = 140;
108#elif V8_TARGET_ARCH_ARM
109 static const int kCodeSizeMultiplier = 149;
110 static const int kBootCodeSizeMultiplier = 110;
111#elif V8_TARGET_ARCH_ARM64
112// TODO(all): Copied ARM value. Check this is sensible for ARM64.
113 static const int kCodeSizeMultiplier = 149;
114 static const int kBootCodeSizeMultiplier = 110;
115#elif V8_TARGET_ARCH_MIPS
116 static const int kCodeSizeMultiplier = 149;
117 static const int kBootCodeSizeMultiplier = 120;
118#elif V8_TARGET_ARCH_MIPS64
119 static const int kCodeSizeMultiplier = 149;
120 static const int kBootCodeSizeMultiplier = 120;
121#else
122#error Unsupported target architecture.
123#endif
124
Leon Clarked91b9f72010-01-27 17:25:45 +0000125 private:
126 class Breakable;
127 class Iteration;
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000128
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000129 class TestContext;
Leon Clarked91b9f72010-01-27 17:25:45 +0000130
131 class NestedStatement BASE_EMBEDDED {
132 public:
133 explicit NestedStatement(FullCodeGenerator* codegen) : codegen_(codegen) {
134 // Link into codegen's nesting stack.
135 previous_ = codegen->nesting_stack_;
136 codegen->nesting_stack_ = this;
137 }
138 virtual ~NestedStatement() {
139 // Unlink from codegen's nesting stack.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000140 DCHECK_EQ(this, codegen_->nesting_stack_);
Leon Clarked91b9f72010-01-27 17:25:45 +0000141 codegen_->nesting_stack_ = previous_;
142 }
143
144 virtual Breakable* AsBreakable() { return NULL; }
145 virtual Iteration* AsIteration() { return NULL; }
Leon Clarked91b9f72010-01-27 17:25:45 +0000146
147 virtual bool IsContinueTarget(Statement* target) { return false; }
148 virtual bool IsBreakTarget(Statement* target) { return false; }
149
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000150 // Notify the statement that we are exiting it via break, continue, or
151 // return and give it a chance to generate cleanup code. Return the
152 // next outer statement in the nesting stack. We accumulate in
153 // *stack_depth the amount to drop the stack and in *context_length the
154 // number of context chain links to unwind as we traverse the nesting
155 // stack from an exit to its target.
156 virtual NestedStatement* Exit(int* stack_depth, int* context_length) {
157 return previous_;
Leon Clarked91b9f72010-01-27 17:25:45 +0000158 }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000159
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100160 protected:
Leon Clarked91b9f72010-01-27 17:25:45 +0000161 MacroAssembler* masm() { return codegen_->masm(); }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000162
Leon Clarked91b9f72010-01-27 17:25:45 +0000163 FullCodeGenerator* codegen_;
164 NestedStatement* previous_;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100165
166 private:
Leon Clarked91b9f72010-01-27 17:25:45 +0000167 DISALLOW_COPY_AND_ASSIGN(NestedStatement);
168 };
169
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000170 // A breakable statement such as a block.
Leon Clarked91b9f72010-01-27 17:25:45 +0000171 class Breakable : public NestedStatement {
172 public:
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000173 Breakable(FullCodeGenerator* codegen, BreakableStatement* statement)
174 : NestedStatement(codegen), statement_(statement) {
Leon Clarked91b9f72010-01-27 17:25:45 +0000175 }
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000176 virtual ~Breakable() {}
177
178 virtual Breakable* AsBreakable() { return this; }
179 virtual bool IsBreakTarget(Statement* target) {
180 return statement() == target;
181 }
182
183 BreakableStatement* statement() { return statement_; }
184 Label* break_label() { return &break_label_; }
185
Leon Clarked91b9f72010-01-27 17:25:45 +0000186 private:
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000187 BreakableStatement* statement_;
188 Label break_label_;
Leon Clarked91b9f72010-01-27 17:25:45 +0000189 };
190
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000191 // An iteration statement such as a while, for, or do loop.
Leon Clarked91b9f72010-01-27 17:25:45 +0000192 class Iteration : public Breakable {
193 public:
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000194 Iteration(FullCodeGenerator* codegen, IterationStatement* statement)
195 : Breakable(codegen, statement) {
Leon Clarked91b9f72010-01-27 17:25:45 +0000196 }
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000197 virtual ~Iteration() {}
198
199 virtual Iteration* AsIteration() { return this; }
200 virtual bool IsContinueTarget(Statement* target) {
201 return statement() == target;
202 }
203
204 Label* continue_label() { return &continue_label_; }
205
Leon Clarked91b9f72010-01-27 17:25:45 +0000206 private:
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000207 Label continue_label_;
Leon Clarked91b9f72010-01-27 17:25:45 +0000208 };
209
Ben Murdoch589d6972011-11-30 16:04:58 +0000210 // A nested block statement.
211 class NestedBlock : public Breakable {
212 public:
213 NestedBlock(FullCodeGenerator* codegen, Block* block)
214 : Breakable(codegen, block) {
215 }
216 virtual ~NestedBlock() {}
217
218 virtual NestedStatement* Exit(int* stack_depth, int* context_length) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000219 if (statement()->AsBlock()->scope() != NULL) {
Ben Murdoch589d6972011-11-30 16:04:58 +0000220 ++(*context_length);
221 }
222 return previous_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000223 }
Ben Murdoch589d6972011-11-30 16:04:58 +0000224 };
225
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000226 // The try block of a try/catch statement.
Leon Clarked91b9f72010-01-27 17:25:45 +0000227 class TryCatch : public NestedStatement {
228 public:
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000229 explicit TryCatch(FullCodeGenerator* codegen) : NestedStatement(codegen) {
230 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000231 virtual ~TryCatch() {}
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000232
233 virtual NestedStatement* Exit(int* stack_depth, int* context_length);
Leon Clarked91b9f72010-01-27 17:25:45 +0000234 };
235
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000236 // The try block of a try/finally statement.
Leon Clarked91b9f72010-01-27 17:25:45 +0000237 class TryFinally : public NestedStatement {
238 public:
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000239 TryFinally(FullCodeGenerator* codegen, Label* finally_entry)
240 : NestedStatement(codegen), finally_entry_(finally_entry) {
241 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000242 virtual ~TryFinally() {}
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000243
244 virtual NestedStatement* Exit(int* stack_depth, int* context_length);
245
Leon Clarked91b9f72010-01-27 17:25:45 +0000246 private:
247 Label* finally_entry_;
Leon Clarked91b9f72010-01-27 17:25:45 +0000248 };
249
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000250 // The finally block of a try/finally statement.
Leon Clarked91b9f72010-01-27 17:25:45 +0000251 class Finally : public NestedStatement {
252 public:
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000253 static const int kElementCount = 5;
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000254
Leon Clarked91b9f72010-01-27 17:25:45 +0000255 explicit Finally(FullCodeGenerator* codegen) : NestedStatement(codegen) { }
256 virtual ~Finally() {}
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000257
258 virtual NestedStatement* Exit(int* stack_depth, int* context_length) {
259 *stack_depth += kElementCount;
260 return previous_;
Leon Clarked91b9f72010-01-27 17:25:45 +0000261 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000262 };
263
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000264 // The body of a for/in loop.
Leon Clarked91b9f72010-01-27 17:25:45 +0000265 class ForIn : public Iteration {
266 public:
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000267 static const int kElementCount = 5;
268
269 ForIn(FullCodeGenerator* codegen, ForInStatement* statement)
270 : Iteration(codegen, statement) {
Leon Clarked91b9f72010-01-27 17:25:45 +0000271 }
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000272 virtual ~ForIn() {}
273
274 virtual NestedStatement* Exit(int* stack_depth, int* context_length) {
275 *stack_depth += kElementCount;
276 return previous_;
277 }
278 };
279
280
281 // The body of a with or catch.
282 class WithOrCatch : public NestedStatement {
283 public:
284 explicit WithOrCatch(FullCodeGenerator* codegen)
285 : NestedStatement(codegen) {
286 }
287 virtual ~WithOrCatch() {}
288
289 virtual NestedStatement* Exit(int* stack_depth, int* context_length) {
290 ++(*context_length);
291 return previous_;
292 }
Leon Clarked91b9f72010-01-27 17:25:45 +0000293 };
294
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100295 // Type of a member function that generates inline code for a native function.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100296 typedef void (FullCodeGenerator::*InlineFunctionGenerator)(CallRuntime* expr);
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100297
298 static const InlineFunctionGenerator kInlineFunctionGenerators[];
299
Ben Murdochdb5a90a2011-01-06 18:27:03 +0000300 // A platform-specific utility to overwrite the accumulator register
301 // with a GC-safe value.
302 void ClearAccumulator();
303
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100304 // Determine whether or not to inline the smi case for the given
305 // operation.
306 bool ShouldInlineSmiCase(Token::Value op);
307
Leon Clarked91b9f72010-01-27 17:25:45 +0000308 // Helper function to convert a pure value into a test context. The value
309 // is expected on the stack or the accumulator, depending on the platform.
310 // See the platform-specific implementation for details.
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000311 void DoTest(Expression* condition,
312 Label* if_true,
313 Label* if_false,
314 Label* fall_through);
315 void DoTest(const TestContext* context);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100316
317 // Helper function to split control flow and avoid a branch to the
318 // fall-through label if it is set up.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000319#if V8_TARGET_ARCH_MIPS
320 void Split(Condition cc,
321 Register lhs,
322 const Operand& rhs,
323 Label* if_true,
324 Label* if_false,
325 Label* fall_through);
326#elif V8_TARGET_ARCH_MIPS64
Ben Murdoch257744e2011-11-30 15:57:28 +0000327 void Split(Condition cc,
328 Register lhs,
329 const Operand& rhs,
330 Label* if_true,
331 Label* if_false,
332 Label* fall_through);
333#else // All non-mips arch.
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100334 void Split(Condition cc,
335 Label* if_true,
336 Label* if_false,
337 Label* fall_through);
Ben Murdoch257744e2011-11-30 15:57:28 +0000338#endif // V8_TARGET_ARCH_MIPS
Leon Clarked91b9f72010-01-27 17:25:45 +0000339
Ben Murdoch589d6972011-11-30 16:04:58 +0000340 // Load the value of a known (PARAMETER, LOCAL, or CONTEXT) variable into
341 // a register. Emits a context chain walk if if necessary (so does
342 // SetVar) so avoid calling both on the same variable.
343 void GetVar(Register destination, Variable* var);
Leon Clarked91b9f72010-01-27 17:25:45 +0000344
Ben Murdoch589d6972011-11-30 16:04:58 +0000345 // Assign to a known (PARAMETER, LOCAL, or CONTEXT) variable. If it's in
346 // the context, the write barrier will be emitted and source, scratch0,
347 // scratch1 will be clobbered. Emits a context chain walk if if necessary
348 // (so does GetVar) so avoid calling both on the same variable.
349 void SetVar(Variable* var,
350 Register source,
351 Register scratch0,
352 Register scratch1);
353
354 // An operand used to read/write a stack-allocated (PARAMETER or LOCAL)
355 // variable. Writing does not need the write barrier.
356 MemOperand StackOperand(Variable* var);
357
358 // An operand used to read/write a known (PARAMETER, LOCAL, or CONTEXT)
359 // variable. May emit code to traverse the context chain, loading the
360 // found context into the scratch register. Writing to this operand will
361 // need the write barrier if location is CONTEXT.
362 MemOperand VarOperand(Variable* var, Register scratch);
Leon Clarked91b9f72010-01-27 17:25:45 +0000363
364 void VisitForEffect(Expression* expr) {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100365 EffectContext context(this);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100366 Visit(expr);
367 PrepareForBailout(expr, NO_REGISTERS);
Leon Clarked91b9f72010-01-27 17:25:45 +0000368 }
369
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100370 void VisitForAccumulatorValue(Expression* expr) {
371 AccumulatorValueContext context(this);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100372 Visit(expr);
373 PrepareForBailout(expr, TOS_REG);
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100374 }
375
376 void VisitForStackValue(Expression* expr) {
377 StackValueContext context(this);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100378 Visit(expr);
379 PrepareForBailout(expr, NO_REGISTERS);
Leon Clarked91b9f72010-01-27 17:25:45 +0000380 }
381
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100382 void VisitForControl(Expression* expr,
383 Label* if_true,
384 Label* if_false,
385 Label* fall_through) {
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000386 TestContext context(this, expr, if_true, if_false, fall_through);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100387 Visit(expr);
388 // For test contexts, we prepare for bailout before branching, not at
389 // the end of the entire expression. This happens as part of visiting
390 // the expression.
Leon Clarked91b9f72010-01-27 17:25:45 +0000391 }
392
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100393 void VisitInDuplicateContext(Expression* expr);
394
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400395 void VisitDeclarations(ZoneList<Declaration*>* declarations) OVERRIDE;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000396 void DeclareModules(Handle<FixedArray> descriptions);
Leon Clarked91b9f72010-01-27 17:25:45 +0000397 void DeclareGlobals(Handle<FixedArray> pairs);
Ben Murdoch589d6972011-11-30 16:04:58 +0000398 int DeclareGlobalsFlags();
Leon Clarked91b9f72010-01-27 17:25:45 +0000399
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000400 // Generate code to allocate all (including nested) modules and contexts.
401 // Because of recursive linking and the presence of module alias declarations,
402 // this has to be a separate pass _before_ populating or executing any module.
403 void AllocateModules(ZoneList<Declaration*>* declarations);
404
405 // Generate code to create an iterator result object. The "value" property is
406 // set to a value popped from the stack, and "done" is set according to the
407 // argument. The result object is left in the result register.
408 void EmitCreateIteratorResult(bool done);
409
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100410 // Try to perform a comparison as a fast inlined literal compare if
411 // the operands allow it. Returns true if the compare operations
412 // has been matched and all code generated; false otherwise.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100413 bool TryLiteralCompare(CompareOperation* compare);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100414
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000415 // Platform-specific code for comparing the type of a value with
416 // a given literal string.
417 void EmitLiteralCompareTypeof(Expression* expr,
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100418 Expression* sub_expr,
419 Handle<String> check);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000420
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100421 // Platform-specific code for equality comparison with a nil-like value.
422 void EmitLiteralCompareNil(CompareOperation* expr,
423 Expression* sub_expr,
424 NilValue nil);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000425
Ben Murdochb0fe1622011-05-05 13:52:32 +0100426 // Bailout support.
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000427 void PrepareForBailout(Expression* node, State state);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000428 void PrepareForBailoutForId(BailoutId id, State state);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100429
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000430 // Feedback slot support. The feedback vector will be cleared during gc and
431 // collected by the type-feedback oracle.
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400432 Handle<TypeFeedbackVector> FeedbackVector() const {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000433 return info_->feedback_vector();
434 }
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400435 void EnsureSlotContainsAllocationSite(FeedbackVectorSlot slot);
436 void EnsureSlotContainsAllocationSite(FeedbackVectorICSlot slot);
437
438 // Returns a smi for the index into the FixedArray that backs the feedback
439 // vector
440 Smi* SmiFromSlot(FeedbackVectorSlot slot) const {
441 return Smi::FromInt(FeedbackVector()->GetIndex(slot));
442 }
443
444 Smi* SmiFromSlot(FeedbackVectorICSlot slot) const {
445 return Smi::FromInt(FeedbackVector()->GetIndex(slot));
446 }
Ben Murdoch5d4cdbf2012-04-11 10:23:59 +0100447
Ben Murdochb0fe1622011-05-05 13:52:32 +0100448 // Record a call's return site offset, used to rebuild the frame if the
449 // called function was inlined at the site.
450 void RecordJSReturnSite(Call* call);
451
452 // Prepare for bailout before a test (or compare) and branch. If
453 // should_normalize, then the following comparison will not handle the
454 // canonical JS true value so we will insert a (dead) test against true at
455 // the actual bailout target from the optimized code. If not
456 // should_normalize, the true and false labels are ignored.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100457 void PrepareForBailoutBeforeSplit(Expression* expr,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100458 bool should_normalize,
459 Label* if_true,
460 Label* if_false);
461
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000462 // If enabled, emit debug code for checking that the current context is
463 // neither a with nor a catch context.
464 void EmitDebugCheckDeclarationContext(Variable* variable);
Leon Clarkef7060e22010-06-03 12:02:55 +0100465
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100466 // This is meant to be called at loop back edges, |back_edge_target| is
467 // the jump target of the back edge and is used to approximate the amount
468 // of code inside the loop.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000469 void EmitBackEdgeBookkeeping(IterationStatement* stmt,
470 Label* back_edge_target);
471 // Record the OSR AST id corresponding to a back edge in the code.
472 void RecordBackEdge(BailoutId osr_ast_id);
473 // Emit a table of back edge ids, pcs and loop depths into the code stream.
474 // Return the offset of the start of the table.
475 unsigned EmitBackEdgeTable();
Ben Murdochb0fe1622011-05-05 13:52:32 +0100476
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100477 void EmitProfilingCounterDecrement(int delta);
478 void EmitProfilingCounterReset();
479
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000480 // Emit code to pop values from the stack associated with nested statements
481 // like try/catch, try/finally, etc, running the finallies and unwinding the
482 // handlers as needed.
483 void EmitUnwindBeforeReturn();
484
Leon Clarked91b9f72010-01-27 17:25:45 +0000485 // Platform-specific return sequence
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100486 void EmitReturnSequence();
Leon Clarked91b9f72010-01-27 17:25:45 +0000487
488 // Platform-specific code sequences for calls
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000489 void EmitCall(Call* expr, CallICState::CallType = CallICState::FUNCTION);
490 void EmitCallWithLoadIC(Call* expr);
491 void EmitSuperCallWithLoadIC(Call* expr);
492 void EmitKeyedCallWithLoadIC(Call* expr, Expression* key);
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400493 void EmitKeyedSuperCallWithLoadIC(Call* expr);
Leon Clarked91b9f72010-01-27 17:25:45 +0000494
Leon Clarkef7060e22010-06-03 12:02:55 +0100495 // Platform-specific code for inline runtime calls.
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100496 InlineFunctionGenerator FindInlineFunctionGenerator(Runtime::FunctionId id);
497
Leon Clarkef7060e22010-06-03 12:02:55 +0100498 void EmitInlineRuntimeCall(CallRuntime* expr);
Steve Block791712a2010-08-27 10:21:07 +0100499
500#define EMIT_INLINE_RUNTIME_CALL(name, x, y) \
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100501 void Emit##name(CallRuntime* expr);
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100502 INLINE_FUNCTION_LIST(EMIT_INLINE_RUNTIME_CALL)
Steve Block791712a2010-08-27 10:21:07 +0100503#undef EMIT_INLINE_RUNTIME_CALL
Leon Clarkef7060e22010-06-03 12:02:55 +0100504
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000505 // Platform-specific code for resuming generators.
506 void EmitGeneratorResume(Expression *generator,
507 Expression *value,
508 JSGeneratorObject::ResumeMode resume_mode);
509
Leon Clarked91b9f72010-01-27 17:25:45 +0000510 // Platform-specific code for loading variables.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000511 void EmitLoadGlobalCheckExtensions(VariableProxy* proxy,
Ben Murdoch589d6972011-11-30 16:04:58 +0000512 TypeofState typeof_state,
513 Label* slow);
514 MemOperand ContextSlotOperandCheckExtensions(Variable* var, Label* slow);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000515 void EmitDynamicLookupFastCase(VariableProxy* proxy,
Ben Murdoch589d6972011-11-30 16:04:58 +0000516 TypeofState typeof_state,
517 Label* slow,
518 Label* done);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000519 void EmitVariableLoad(VariableProxy* proxy);
Leon Clarked91b9f72010-01-27 17:25:45 +0000520
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100521 void EmitAccessor(Expression* expression);
Ben Murdoch5d4cdbf2012-04-11 10:23:59 +0100522
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100523 // Expects the arguments and the function already pushed.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100524 void EmitResolvePossiblyDirectEval(int arg_count);
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100525
Leon Clarkef7060e22010-06-03 12:02:55 +0100526 // Platform-specific support for allocating a new closure based on
527 // the given function info.
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -0800528 void EmitNewClosure(Handle<SharedFunctionInfo> info, bool pretenure);
Leon Clarkef7060e22010-06-03 12:02:55 +0100529
Leon Clarked91b9f72010-01-27 17:25:45 +0000530 // Platform-specific support for compiling assignments.
531
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400532 // Left-hand side can only be a property, a global or a (parameter or local)
533 // slot.
534 enum LhsKind {
535 VARIABLE,
536 NAMED_PROPERTY,
537 KEYED_PROPERTY,
538 NAMED_SUPER_PROPERTY,
539 KEYED_SUPER_PROPERTY
540 };
541
542 static LhsKind GetAssignType(Property* property) {
543 if (property == NULL) return VARIABLE;
544 bool super_access = property->IsSuperAccess();
545 return (property->key()->IsPropertyName())
546 ? (super_access ? NAMED_SUPER_PROPERTY : NAMED_PROPERTY)
547 : (super_access ? KEYED_SUPER_PROPERTY : KEYED_PROPERTY);
548 }
549
Leon Clarked91b9f72010-01-27 17:25:45 +0000550 // Load a value from a named property.
551 // The receiver is left on the stack by the IC.
552 void EmitNamedPropertyLoad(Property* expr);
553
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400554 // Load a value from super.named property.
555 // Expect receiver ('this' value) and home_object on the stack.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000556 void EmitNamedSuperPropertyLoad(Property* expr);
557
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400558 // Load a value from super[keyed] property.
559 // Expect receiver ('this' value), home_object and key on the stack.
560 void EmitKeyedSuperPropertyLoad(Property* expr);
561
Leon Clarked91b9f72010-01-27 17:25:45 +0000562 // Load a value from a keyed property.
563 // The receiver and the key is left on the stack by the IC.
564 void EmitKeyedPropertyLoad(Property* expr);
565
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400566 // Adds the properties to the class (function) object and to its prototype.
567 // Expects the class (function) in the accumulator. The class (function) is
568 // in the accumulator after installing all the properties.
569 void EmitClassDefineProperties(ClassLiteral* lit);
570
Leon Clarked91b9f72010-01-27 17:25:45 +0000571 // Apply the compound assignment operator. Expects the left operand on top
572 // of the stack and the right one in the accumulator.
Ben Murdoch257744e2011-11-30 15:57:28 +0000573 void EmitBinaryOp(BinaryOperation* expr,
574 Token::Value op,
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100575 OverwriteMode mode);
576
577 // Helper functions for generating inlined smi code for certain
578 // binary operations.
Ben Murdoch257744e2011-11-30 15:57:28 +0000579 void EmitInlineSmiBinaryOp(BinaryOperation* expr,
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100580 Token::Value op,
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100581 OverwriteMode mode,
582 Expression* left,
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100583 Expression* right);
Leon Clarked91b9f72010-01-27 17:25:45 +0000584
Leon Clarkef7060e22010-06-03 12:02:55 +0100585 // Assign to the given expression as if via '='. The right-hand-side value
586 // is expected in the accumulator.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100587 void EmitAssignment(Expression* expr);
Leon Clarkef7060e22010-06-03 12:02:55 +0100588
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400589 // Shall an error be thrown if assignment with 'op' operation is perfomed
590 // on this variable in given language mode?
591 static bool IsSignallingAssignmentToConst(Variable* var, Token::Value op,
592 StrictMode strict_mode) {
593 if (var->mode() == CONST) return op != Token::INIT_CONST;
594
595 if (var->mode() == CONST_LEGACY) {
596 return strict_mode == STRICT && op != Token::INIT_CONST_LEGACY;
597 }
598
599 return false;
600 }
601
Leon Clarked91b9f72010-01-27 17:25:45 +0000602 // Complete a variable assignment. The right-hand-side value is expected
603 // in the accumulator.
Leon Clarkef7060e22010-06-03 12:02:55 +0100604 void EmitVariableAssignment(Variable* var,
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100605 Token::Value op);
Leon Clarked91b9f72010-01-27 17:25:45 +0000606
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000607 // Helper functions to EmitVariableAssignment
608 void EmitStoreToStackLocalOrContextSlot(Variable* var,
609 MemOperand location);
610
Leon Clarked91b9f72010-01-27 17:25:45 +0000611 // Complete a named property assignment. The receiver is expected on top
612 // of the stack and the right-hand-side value in the accumulator.
613 void EmitNamedPropertyAssignment(Assignment* expr);
614
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400615 // Complete a super named property assignment. The right-hand-side value
616 // is expected in accumulator.
617 void EmitNamedSuperPropertyStore(Property* prop);
618
619 // Complete a super named property assignment. The right-hand-side value
620 // is expected in accumulator.
621 void EmitKeyedSuperPropertyStore(Property* prop);
622
Leon Clarked91b9f72010-01-27 17:25:45 +0000623 // Complete a keyed property assignment. The receiver and key are
624 // expected on top of the stack and the right-hand-side value in the
625 // accumulator.
626 void EmitKeyedPropertyAssignment(Assignment* expr);
627
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000628 void EmitLoadHomeObject(SuperReference* expr);
629
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400630 static bool NeedsHomeObject(Expression* expr) {
631 return FunctionLiteral::NeedsHomeObject(expr);
632 }
633
634 // Adds the [[HomeObject]] to |initializer| if it is a FunctionLiteral.
635 // The value of the initializer is expected to be at the top of the stack.
636 // |offset| is the offset in the stack where the home object can be found.
637 void EmitSetHomeObjectIfNeeded(Expression* initializer, int offset);
638
639 void EmitLoadSuperConstructor(SuperReference* expr);
640
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100641 void CallIC(Handle<Code> code,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000642 TypeFeedbackId id = TypeFeedbackId::None());
643
644 void CallLoadIC(ContextualMode mode,
645 TypeFeedbackId id = TypeFeedbackId::None());
646 void CallStoreIC(TypeFeedbackId id = TypeFeedbackId::None());
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100647
Leon Clarked91b9f72010-01-27 17:25:45 +0000648 void SetFunctionPosition(FunctionLiteral* fun);
649 void SetReturnPosition(FunctionLiteral* fun);
650 void SetStatementPosition(Statement* stmt);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000651 void SetExpressionPosition(Expression* expr);
Ben Murdochb0fe1622011-05-05 13:52:32 +0100652 void SetSourcePosition(int pos);
Leon Clarked91b9f72010-01-27 17:25:45 +0000653
654 // Non-local control flow support.
655 void EnterFinallyBlock();
656 void ExitFinallyBlock();
657
658 // Loop nesting counter.
659 int loop_depth() { return loop_depth_; }
660 void increment_loop_depth() { loop_depth_++; }
661 void decrement_loop_depth() {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000662 DCHECK(loop_depth_ > 0);
Leon Clarked91b9f72010-01-27 17:25:45 +0000663 loop_depth_--;
664 }
665
666 MacroAssembler* masm() { return masm_; }
Andrei Popescu31002712010-02-23 13:46:05 +0000667
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100668 class ExpressionContext;
669 const ExpressionContext* context() { return context_; }
670 void set_new_context(const ExpressionContext* context) { context_ = context; }
671
Andrei Popescu31002712010-02-23 13:46:05 +0000672 Handle<Script> script() { return info_->script(); }
673 bool is_eval() { return info_->is_eval(); }
Ben Murdoch589d6972011-11-30 16:04:58 +0000674 bool is_native() { return info_->is_native(); }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000675 StrictMode strict_mode() { return function()->strict_mode(); }
Andrei Popescu31002712010-02-23 13:46:05 +0000676 FunctionLiteral* function() { return info_->function(); }
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000677 Scope* scope() { return scope_; }
Andrei Popescu31002712010-02-23 13:46:05 +0000678
Leon Clarked91b9f72010-01-27 17:25:45 +0000679 static Register result_register();
680 static Register context_register();
681
682 // Set fields in the stack frame. Offsets are the frame pointer relative
683 // offsets defined in, e.g., StandardFrameConstants.
684 void StoreToFrameField(int frame_offset, Register value);
685
686 // Load a value from the current context. Indices are defined as an enum
687 // in v8::internal::Context.
688 void LoadContextField(Register dst, int context_index);
689
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000690 // Push the function argument for the runtime functions PushWithContext
691 // and PushCatchContext.
692 void PushFunctionArgumentForContextAllocation();
693
Leon Clarked91b9f72010-01-27 17:25:45 +0000694 // AST node visit functions.
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400695#define DECLARE_VISIT(type) virtual void Visit##type(type* node) OVERRIDE;
Leon Clarked91b9f72010-01-27 17:25:45 +0000696 AST_NODE_LIST(DECLARE_VISIT)
697#undef DECLARE_VISIT
Ben Murdoch257744e2011-11-30 15:57:28 +0000698
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000699 void VisitComma(BinaryOperation* expr);
700 void VisitLogicalExpression(BinaryOperation* expr);
701 void VisitArithmeticExpression(BinaryOperation* expr);
Leon Clarked91b9f72010-01-27 17:25:45 +0000702
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100703 void VisitForTypeofValue(Expression* expr);
Kristian Monsen80d68ea2010-09-08 11:05:35 +0100704
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100705 void Generate();
706 void PopulateDeoptimizationData(Handle<Code> code);
707 void PopulateTypeFeedbackInfo(Handle<Code> code);
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100708
709 Handle<FixedArray> handler_table() { return handler_table_; }
710
Ben Murdochb0fe1622011-05-05 13:52:32 +0100711 struct BailoutEntry {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000712 BailoutId id;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100713 unsigned pc_and_state;
714 };
Leon Clarke4515c472010-02-03 11:58:03 +0000715
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000716 struct BackEdgeEntry {
717 BailoutId id;
718 unsigned pc;
719 uint32_t loop_depth;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100720 };
721
Ben Murdochb0fe1622011-05-05 13:52:32 +0100722 class ExpressionContext BASE_EMBEDDED {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100723 public:
724 explicit ExpressionContext(FullCodeGenerator* codegen)
725 : masm_(codegen->masm()), old_(codegen->context()), codegen_(codegen) {
726 codegen->set_new_context(this);
727 }
728
729 virtual ~ExpressionContext() {
730 codegen_->set_new_context(old_);
731 }
732
Steve Block44f0eee2011-05-26 01:26:41 +0100733 Isolate* isolate() const { return codegen_->isolate(); }
734
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100735 // Convert constant control flow (true or false) to the result expected for
736 // this expression context.
737 virtual void Plug(bool flag) const = 0;
738
Ben Murdoch589d6972011-11-30 16:04:58 +0000739 // Emit code to convert a pure value (in a register, known variable
740 // location, as a literal, or on top of the stack) into the result
741 // expected according to this expression context.
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100742 virtual void Plug(Register reg) const = 0;
Ben Murdoch589d6972011-11-30 16:04:58 +0000743 virtual void Plug(Variable* var) const = 0;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100744 virtual void Plug(Handle<Object> lit) const = 0;
745 virtual void Plug(Heap::RootListIndex index) const = 0;
746 virtual void PlugTOS() const = 0;
747
748 // Emit code to convert pure control flow to a pair of unbound labels into
749 // the result expected according to this expression context. The
Ben Murdochb0fe1622011-05-05 13:52:32 +0100750 // implementation will bind both labels unless it's a TestContext, which
751 // won't bind them at this point.
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100752 virtual void Plug(Label* materialize_true,
753 Label* materialize_false) const = 0;
754
755 // Emit code to discard count elements from the top of stack, then convert
756 // a pure value into the result expected according to this expression
757 // context.
758 virtual void DropAndPlug(int count, Register reg) const = 0;
759
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100760 // Set up branch labels for a test expression. The three Label** parameters
761 // are output parameters.
762 virtual void PrepareTest(Label* materialize_true,
763 Label* materialize_false,
764 Label** if_true,
765 Label** if_false,
766 Label** fall_through) const = 0;
767
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100768 // Returns true if we are evaluating only for side effects (i.e. if the
769 // result will be discarded).
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100770 virtual bool IsEffect() const { return false; }
771
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000772 // Returns true if we are evaluating for the value (in accu/on stack).
773 virtual bool IsAccumulatorValue() const { return false; }
774 virtual bool IsStackValue() const { return false; }
775
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100776 // Returns true if we are branching on the value rather than materializing
Ben Murdochb0fe1622011-05-05 13:52:32 +0100777 // it. Only used for asserts.
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100778 virtual bool IsTest() const { return false; }
779
780 protected:
781 FullCodeGenerator* codegen() const { return codegen_; }
782 MacroAssembler* masm() const { return masm_; }
783 MacroAssembler* masm_;
784
785 private:
786 const ExpressionContext* old_;
787 FullCodeGenerator* codegen_;
788 };
789
790 class AccumulatorValueContext : public ExpressionContext {
791 public:
792 explicit AccumulatorValueContext(FullCodeGenerator* codegen)
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100793 : ExpressionContext(codegen) { }
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100794
795 virtual void Plug(bool flag) const;
796 virtual void Plug(Register reg) const;
797 virtual void Plug(Label* materialize_true, Label* materialize_false) const;
Ben Murdoch589d6972011-11-30 16:04:58 +0000798 virtual void Plug(Variable* var) const;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100799 virtual void Plug(Handle<Object> lit) const;
800 virtual void Plug(Heap::RootListIndex) const;
801 virtual void PlugTOS() const;
802 virtual void DropAndPlug(int count, Register reg) const;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100803 virtual void PrepareTest(Label* materialize_true,
804 Label* materialize_false,
805 Label** if_true,
806 Label** if_false,
807 Label** fall_through) const;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000808 virtual bool IsAccumulatorValue() const { return true; }
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100809 };
810
811 class StackValueContext : public ExpressionContext {
812 public:
813 explicit StackValueContext(FullCodeGenerator* codegen)
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100814 : ExpressionContext(codegen) { }
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100815
816 virtual void Plug(bool flag) const;
817 virtual void Plug(Register reg) const;
818 virtual void Plug(Label* materialize_true, Label* materialize_false) const;
Ben Murdoch589d6972011-11-30 16:04:58 +0000819 virtual void Plug(Variable* var) const;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100820 virtual void Plug(Handle<Object> lit) const;
821 virtual void Plug(Heap::RootListIndex) const;
822 virtual void PlugTOS() const;
823 virtual void DropAndPlug(int count, Register reg) const;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100824 virtual void PrepareTest(Label* materialize_true,
825 Label* materialize_false,
826 Label** if_true,
827 Label** if_false,
828 Label** fall_through) const;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000829 virtual bool IsStackValue() const { return true; }
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100830 };
831
832 class TestContext : public ExpressionContext {
833 public:
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000834 TestContext(FullCodeGenerator* codegen,
835 Expression* condition,
836 Label* true_label,
837 Label* false_label,
838 Label* fall_through)
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100839 : ExpressionContext(codegen),
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000840 condition_(condition),
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100841 true_label_(true_label),
842 false_label_(false_label),
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100843 fall_through_(fall_through) { }
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100844
Ben Murdochf87a2032010-10-22 12:50:53 +0100845 static const TestContext* cast(const ExpressionContext* context) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000846 DCHECK(context->IsTest());
Ben Murdochf87a2032010-10-22 12:50:53 +0100847 return reinterpret_cast<const TestContext*>(context);
848 }
849
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000850 Expression* condition() const { return condition_; }
Ben Murdochf87a2032010-10-22 12:50:53 +0100851 Label* true_label() const { return true_label_; }
852 Label* false_label() const { return false_label_; }
853 Label* fall_through() const { return fall_through_; }
854
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100855 virtual void Plug(bool flag) const;
856 virtual void Plug(Register reg) const;
857 virtual void Plug(Label* materialize_true, Label* materialize_false) const;
Ben Murdoch589d6972011-11-30 16:04:58 +0000858 virtual void Plug(Variable* var) const;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100859 virtual void Plug(Handle<Object> lit) const;
860 virtual void Plug(Heap::RootListIndex) const;
861 virtual void PlugTOS() const;
862 virtual void DropAndPlug(int count, Register reg) const;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100863 virtual void PrepareTest(Label* materialize_true,
864 Label* materialize_false,
865 Label** if_true,
866 Label** if_false,
867 Label** fall_through) const;
868 virtual bool IsTest() const { return true; }
869
870 private:
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000871 Expression* condition_;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100872 Label* true_label_;
873 Label* false_label_;
874 Label* fall_through_;
875 };
876
877 class EffectContext : public ExpressionContext {
878 public:
879 explicit EffectContext(FullCodeGenerator* codegen)
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100880 : ExpressionContext(codegen) { }
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100881
882 virtual void Plug(bool flag) const;
883 virtual void Plug(Register reg) const;
884 virtual void Plug(Label* materialize_true, Label* materialize_false) const;
Ben Murdoch589d6972011-11-30 16:04:58 +0000885 virtual void Plug(Variable* var) const;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100886 virtual void Plug(Handle<Object> lit) const;
887 virtual void Plug(Heap::RootListIndex) const;
888 virtual void PlugTOS() const;
889 virtual void DropAndPlug(int count, Register reg) const;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100890 virtual void PrepareTest(Label* materialize_true,
891 Label* materialize_false,
892 Label** if_true,
893 Label** if_false,
894 Label** fall_through) const;
895 virtual bool IsEffect() const { return true; }
896 };
897
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400898 class EnterBlockScopeIfNeeded {
899 public:
900 EnterBlockScopeIfNeeded(FullCodeGenerator* codegen, Scope* scope,
901 BailoutId entry_id, BailoutId declarations_id,
902 BailoutId exit_id);
903 ~EnterBlockScopeIfNeeded();
904
905 private:
906 MacroAssembler* masm() const { return codegen_->masm(); }
907
908 FullCodeGenerator* codegen_;
909 Scope* scope_;
910 Scope* saved_scope_;
911 BailoutId exit_id_;
912 };
913
Ben Murdochb0fe1622011-05-05 13:52:32 +0100914 MacroAssembler* masm_;
915 CompilationInfo* info_;
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000916 Scope* scope_;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100917 Label return_label_;
918 NestedStatement* nesting_stack_;
919 int loop_depth_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000920 ZoneList<Handle<Object> >* globals_;
921 Handle<FixedArray> modules_;
922 int module_index_;
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100923 const ExpressionContext* context_;
Ben Murdochb0fe1622011-05-05 13:52:32 +0100924 ZoneList<BailoutEntry> bailout_entries_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000925 ZoneList<BackEdgeEntry> back_edges_;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100926 int ic_total_count_;
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100927 Handle<FixedArray> handler_table_;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000928 Handle<Cell> profiling_counter_;
929 bool generate_debug_code_;
Leon Clarked91b9f72010-01-27 17:25:45 +0000930
931 friend class NestedStatement;
932
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000933 DEFINE_AST_VISITOR_SUBCLASS_MEMBERS();
Leon Clarked91b9f72010-01-27 17:25:45 +0000934 DISALLOW_COPY_AND_ASSIGN(FullCodeGenerator);
935};
936
937
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100938// A map from property names to getter/setter pairs allocated in the zone.
939class AccessorTable: public TemplateHashMap<Literal,
940 ObjectLiteral::Accessors,
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000941 ZoneAllocationPolicy> {
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100942 public:
943 explicit AccessorTable(Zone* zone) :
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000944 TemplateHashMap<Literal, ObjectLiteral::Accessors,
945 ZoneAllocationPolicy>(Literal::Match,
946 ZoneAllocationPolicy(zone)),
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100947 zone_(zone) { }
948
949 Iterator lookup(Literal* literal) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000950 Iterator it = find(literal, true, ZoneAllocationPolicy(zone_));
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100951 if (it->second == NULL) it->second = new(zone_) ObjectLiteral::Accessors();
952 return it;
953 }
954
955 private:
956 Zone* zone_;
957};
958
959
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000960class BackEdgeTable {
961 public:
962 BackEdgeTable(Code* code, DisallowHeapAllocation* required) {
963 DCHECK(code->kind() == Code::FUNCTION);
964 instruction_start_ = code->instruction_start();
965 Address table_address = instruction_start_ + code->back_edge_table_offset();
966 length_ = Memory::uint32_at(table_address);
967 start_ = table_address + kTableLengthSize;
968 }
969
970 uint32_t length() { return length_; }
971
972 BailoutId ast_id(uint32_t index) {
973 return BailoutId(static_cast<int>(
974 Memory::uint32_at(entry_at(index) + kAstIdOffset)));
975 }
976
977 uint32_t loop_depth(uint32_t index) {
978 return Memory::uint32_at(entry_at(index) + kLoopDepthOffset);
979 }
980
981 uint32_t pc_offset(uint32_t index) {
982 return Memory::uint32_at(entry_at(index) + kPcOffsetOffset);
983 }
984
985 Address pc(uint32_t index) {
986 return instruction_start_ + pc_offset(index);
987 }
988
989 enum BackEdgeState {
990 INTERRUPT,
991 ON_STACK_REPLACEMENT,
992 OSR_AFTER_STACK_CHECK
993 };
994
995 // Increase allowed loop nesting level by one and patch those matching loops.
996 static void Patch(Isolate* isolate, Code* unoptimized_code);
997
998 // Patch the back edge to the target state, provided the correct callee.
999 static void PatchAt(Code* unoptimized_code,
1000 Address pc,
1001 BackEdgeState target_state,
1002 Code* replacement_code);
1003
1004 // Change all patched back edges back to normal interrupts.
1005 static void Revert(Isolate* isolate,
1006 Code* unoptimized_code);
1007
1008 // Change a back edge patched for on-stack replacement to perform a
1009 // stack check first.
1010 static void AddStackCheck(Handle<Code> code, uint32_t pc_offset);
1011
1012 // Revert the patch by AddStackCheck.
1013 static void RemoveStackCheck(Handle<Code> code, uint32_t pc_offset);
1014
1015 // Return the current patch state of the back edge.
1016 static BackEdgeState GetBackEdgeState(Isolate* isolate,
1017 Code* unoptimized_code,
1018 Address pc_after);
1019
1020#ifdef DEBUG
1021 // Verify that all back edges of a certain loop depth are patched.
1022 static bool Verify(Isolate* isolate, Code* unoptimized_code);
1023#endif // DEBUG
1024
1025 private:
1026 Address entry_at(uint32_t index) {
1027 DCHECK(index < length_);
1028 return start_ + index * kEntrySize;
1029 }
1030
1031 static const int kTableLengthSize = kIntSize;
1032 static const int kAstIdOffset = 0 * kIntSize;
1033 static const int kPcOffsetOffset = 1 * kIntSize;
1034 static const int kLoopDepthOffset = 2 * kIntSize;
1035 static const int kEntrySize = 3 * kIntSize;
1036
1037 Address start_;
1038 Address instruction_start_;
1039 uint32_t length_;
1040};
1041
1042
Leon Clarked91b9f72010-01-27 17:25:45 +00001043} } // namespace v8::internal
1044
1045#endif // V8_FULL_CODEGEN_H_