blob: 85b27b4a99922d230d9373ad4406c1def4abfe79 [file] [log] [blame]
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +00001// Copyright 2010 the V8 project authors. All rights reserved.
ager@chromium.org7c537e22008-10-16 08:43:32 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
ager@chromium.org5ec48922009-05-05 07:25:34 +000028#ifndef V8_ARM_CODEGEN_ARM_H_
29#define V8_ARM_CODEGEN_ARM_H_
ager@chromium.org7c537e22008-10-16 08:43:32 +000030
ager@chromium.org357bf652010-04-12 11:30:10 +000031#include "ic-inl.h"
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000032#include "ast.h"
ager@chromium.org357bf652010-04-12 11:30:10 +000033
kasperl@chromium.org71affb52009-05-26 05:44:31 +000034namespace v8 {
35namespace internal {
ager@chromium.org7c537e22008-10-16 08:43:32 +000036
37// Forward declarations
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000038class CompilationInfo;
ager@chromium.org7c537e22008-10-16 08:43:32 +000039class DeferredCode;
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +000040class JumpTarget;
ager@chromium.orgbb29dc92009-03-24 13:25:23 +000041class RegisterAllocator;
42class RegisterFile;
ager@chromium.org7c537e22008-10-16 08:43:32 +000043
ager@chromium.org3bf7b912008-11-17 09:09:45 +000044enum InitState { CONST_INIT, NOT_CONST_INIT };
45enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF };
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +000046enum GenerateInlineSmi { DONT_GENERATE_INLINE_SMI, GENERATE_INLINE_SMI };
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +000047enum WriteBarrierCharacter { UNLIKELY_SMI, LIKELY_SMI, NEVER_NEWSPACE };
ager@chromium.org7c537e22008-10-16 08:43:32 +000048
ager@chromium.org3bf7b912008-11-17 09:09:45 +000049
50// -------------------------------------------------------------------------
ager@chromium.org7c537e22008-10-16 08:43:32 +000051// Reference support
52
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000053// A reference is a C++ stack-allocated object that puts a
54// reference on the virtual frame. The reference may be consumed
55// by GetValue, TakeValue, SetValue, and Codegen::UnloadReference.
56// When the lifetime (scope) of a valid reference ends, it must have
57// been consumed, and be in state UNLOADED.
ager@chromium.org7c537e22008-10-16 08:43:32 +000058class Reference BASE_EMBEDDED {
59 public:
60 // The values of the types is important, see size().
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000061 enum Type { UNLOADED = -2, ILLEGAL = -1, SLOT = 0, NAMED = 1, KEYED = 2 };
62 Reference(CodeGenerator* cgen,
63 Expression* expression,
64 bool persist_after_get = false);
ager@chromium.org7c537e22008-10-16 08:43:32 +000065 ~Reference();
66
67 Expression* expression() const { return expression_; }
68 Type type() const { return type_; }
69 void set_type(Type value) {
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000070 ASSERT_EQ(ILLEGAL, type_);
ager@chromium.org7c537e22008-10-16 08:43:32 +000071 type_ = value;
72 }
73
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000074 void set_unloaded() {
75 ASSERT_NE(ILLEGAL, type_);
76 ASSERT_NE(UNLOADED, type_);
77 type_ = UNLOADED;
78 }
ager@chromium.org3bf7b912008-11-17 09:09:45 +000079 // The size the reference takes up on the stack.
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000080 int size() const {
81 return (type_ < SLOT) ? 0 : type_;
82 }
ager@chromium.org7c537e22008-10-16 08:43:32 +000083
84 bool is_illegal() const { return type_ == ILLEGAL; }
85 bool is_slot() const { return type_ == SLOT; }
86 bool is_property() const { return type_ == NAMED || type_ == KEYED; }
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000087 bool is_unloaded() const { return type_ == UNLOADED; }
ager@chromium.org7c537e22008-10-16 08:43:32 +000088
89 // Return the name. Only valid for named property references.
90 Handle<String> GetName();
91
92 // Generate code to push the value of the reference on top of the
93 // expression stack. The reference is expected to be already on top of
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +000094 // the expression stack, and it is consumed by the call unless the
95 // reference is for a compound assignment.
96 // If the reference is not consumed, it is left in place under its value.
ager@chromium.orgc4c92722009-11-18 14:12:51 +000097 void GetValue();
ager@chromium.org7c537e22008-10-16 08:43:32 +000098
99 // Generate code to store the value on top of the expression stack in the
100 // reference. The reference is expected to be immediately below the value
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000101 // on the expression stack. The value is stored in the location specified
102 // by the reference, and is left on top of the stack, after the reference
103 // is popped from beneath it (unloaded).
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000104 void SetValue(InitState init_state, WriteBarrierCharacter wb);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000105
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000106 // This is in preparation for something that uses the reference on the stack.
107 // If we need this reference afterwards get then dup it now. Otherwise mark
108 // it as used.
109 inline void DupIfPersist();
110
ager@chromium.org7c537e22008-10-16 08:43:32 +0000111 private:
112 CodeGenerator* cgen_;
113 Expression* expression_;
114 Type type_;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000115 // Keep the reference on the stack after get, so it can be used by set later.
116 bool persist_after_get_;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000117};
118
119
120// -------------------------------------------------------------------------
121// Code generation state
122
123// The state is passed down the AST by the code generator (and back up, in
124// the form of the state of the label pair). It is threaded through the
125// call stack. Constructing a state implicitly pushes it on the owning code
126// generator's stack of states, and destroying one implicitly pops it.
127
128class CodeGenState BASE_EMBEDDED {
129 public:
130 // Create an initial code generator state. Destroying the initial state
131 // leaves the code generator with a NULL state.
132 explicit CodeGenState(CodeGenerator* owner);
133
ager@chromium.org7c537e22008-10-16 08:43:32 +0000134 // Destroy a code generator state and restore the owning code generator's
135 // previous state.
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000136 virtual ~CodeGenState();
ager@chromium.org7c537e22008-10-16 08:43:32 +0000137
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000138 virtual JumpTarget* true_target() const { return NULL; }
139 virtual JumpTarget* false_target() const { return NULL; }
140
141 protected:
142 inline CodeGenerator* owner() { return owner_; }
143 inline CodeGenState* previous() const { return previous_; }
ager@chromium.org7c537e22008-10-16 08:43:32 +0000144
145 private:
146 CodeGenerator* owner_;
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000147 CodeGenState* previous_;
148};
149
150
151class ConditionCodeGenState : public CodeGenState {
152 public:
153 // Create a code generator state based on a code generator's current
154 // state. The new state has its own pair of branch labels.
155 ConditionCodeGenState(CodeGenerator* owner,
156 JumpTarget* true_target,
157 JumpTarget* false_target);
158
159 virtual JumpTarget* true_target() const { return true_target_; }
160 virtual JumpTarget* false_target() const { return false_target_; }
161
162 private:
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000163 JumpTarget* true_target_;
164 JumpTarget* false_target_;
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000165};
166
167
168class TypeInfoCodeGenState : public CodeGenState {
169 public:
170 TypeInfoCodeGenState(CodeGenerator* owner,
171 Slot* slot_number,
172 TypeInfo info);
173 ~TypeInfoCodeGenState();
174
175 virtual JumpTarget* true_target() const { return previous()->true_target(); }
176 virtual JumpTarget* false_target() const {
177 return previous()->false_target();
178 }
179
180 private:
181 Slot* slot_;
182 TypeInfo old_type_info_;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000183};
184
185
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000186// -------------------------------------------------------------------------
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000187// Arguments allocation mode
188
189enum ArgumentsAllocationMode {
190 NO_ARGUMENTS_ALLOCATION,
191 EAGER_ARGUMENTS_ALLOCATION,
192 LAZY_ARGUMENTS_ALLOCATION
193};
194
195
196// Different nop operations are used by the code generator to detect certain
197// states of the generated code.
198enum NopMarkerTypes {
199 NON_MARKING_NOP = 0,
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000200 PROPERTY_ACCESS_INLINED
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000201};
202
203
204// -------------------------------------------------------------------------
ager@chromium.org7c537e22008-10-16 08:43:32 +0000205// CodeGenerator
206
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000207class CodeGenerator: public AstVisitor {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000208 public:
209 // Takes a function literal, generates code for it. This function should only
210 // be called by compiler.cc.
ager@chromium.org5c838252010-02-19 08:53:10 +0000211 static Handle<Code> MakeCode(CompilationInfo* info);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000212
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000213 // Printing of AST, etc. as requested by flags.
ager@chromium.org5c838252010-02-19 08:53:10 +0000214 static void MakeCodePrologue(CompilationInfo* info);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000215
216 // Allocate and install the code.
ager@chromium.org5c838252010-02-19 08:53:10 +0000217 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000218 Code::Flags flags,
ager@chromium.org5c838252010-02-19 08:53:10 +0000219 CompilationInfo* info);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000220
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +0000221#ifdef ENABLE_LOGGING_AND_PROFILING
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000222 static bool ShouldGenerateLog(Expression* type);
christian.plesner.hansen@gmail.comaca49682009-01-07 14:29:04 +0000223#endif
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000224
ager@chromium.org7c537e22008-10-16 08:43:32 +0000225 static void SetFunctionInfo(Handle<JSFunction> fun,
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000226 FunctionLiteral* lit,
ager@chromium.org7c537e22008-10-16 08:43:32 +0000227 bool is_toplevel,
sgjesse@chromium.org911335c2009-08-19 12:59:44 +0000228 Handle<Script> script);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000229
vegorov@chromium.org2356e6f2010-06-09 09:38:56 +0000230 static bool RecordPositions(MacroAssembler* masm,
231 int pos,
232 bool right_here = false);
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000233
ager@chromium.org7c537e22008-10-16 08:43:32 +0000234 // Accessors
235 MacroAssembler* masm() { return masm_; }
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000236 VirtualFrame* frame() const { return frame_; }
ager@chromium.org5c838252010-02-19 08:53:10 +0000237 inline Handle<Script> script();
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000238
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000239 bool has_valid_frame() const { return frame_ != NULL; }
240
241 // Set the virtual frame to be new_frame, with non-frame register
242 // reference counts given by non_frame_registers. The non-frame
243 // register reference counts of the old frame are returned in
244 // non_frame_registers.
245 void SetFrame(VirtualFrame* new_frame, RegisterFile* non_frame_registers);
246
247 void DeleteFrame();
248
249 RegisterAllocator* allocator() const { return allocator_; }
250
ager@chromium.org7c537e22008-10-16 08:43:32 +0000251 CodeGenState* state() { return state_; }
252 void set_state(CodeGenState* state) { state_ = state; }
253
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000254 TypeInfo type_info(Slot* slot) {
255 int index = NumberOfSlot(slot);
256 if (index == kInvalidSlotNumber) return TypeInfo::Unknown();
257 return (*type_info_)[index];
258 }
259
260 TypeInfo set_type_info(Slot* slot, TypeInfo info) {
261 int index = NumberOfSlot(slot);
262 ASSERT(index >= kInvalidSlotNumber);
263 if (index != kInvalidSlotNumber) {
264 TypeInfo previous_value = (*type_info_)[index];
265 (*type_info_)[index] = info;
266 return previous_value;
267 }
268 return TypeInfo::Unknown();
269 }
270
ager@chromium.org7c537e22008-10-16 08:43:32 +0000271 void AddDeferred(DeferredCode* code) { deferred_.Add(code); }
272
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000273 static const int kUnknownIntValue = -1;
274
vegorov@chromium.orgf8372902010-03-15 10:26:20 +0000275 // If the name is an inline runtime function call return the number of
276 // expected arguments. Otherwise return -1.
277 static int InlineRuntimeCallArgumentsCount(Handle<String> name);
278
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000279 // Constants related to patching of inlined load/store.
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000280 static int GetInlinedKeyedLoadInstructionsAfterPatch() {
ricow@chromium.org0b9f8502010-08-18 07:45:01 +0000281 return FLAG_debug_code ? 32 : 13;
fschneider@chromium.org40b9da32010-06-28 11:29:21 +0000282 }
erik.corry@gmail.com9dfbea42010-05-21 12:58:28 +0000283 static const int kInlinedKeyedStoreInstructionsAfterPatch = 5;
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +0000284 static int GetInlinedNamedStoreInstructionsAfterPatch() {
285 ASSERT(inlined_write_barrier_size_ != -1);
286 return inlined_write_barrier_size_ + 4;
287 }
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000288
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000289 static MemOperand ContextOperand(Register context, int index) {
290 return MemOperand(context, Context::SlotOffset(index));
291 }
292
ager@chromium.org7c537e22008-10-16 08:43:32 +0000293 private:
294 // Construction/Destruction
ager@chromium.org5c838252010-02-19 08:53:10 +0000295 explicit CodeGenerator(MacroAssembler* masm);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000296
297 // Accessors
ager@chromium.org5c838252010-02-19 08:53:10 +0000298 inline bool is_eval();
sgjesse@chromium.org833cdd72010-02-26 10:06:16 +0000299 inline Scope* scope();
ager@chromium.org7c537e22008-10-16 08:43:32 +0000300
sgjesse@chromium.org755c5b12009-05-29 11:04:38 +0000301 // Generating deferred code.
ager@chromium.org7c537e22008-10-16 08:43:32 +0000302 void ProcessDeferred();
303
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000304 static const int kInvalidSlotNumber = -1;
305
306 int NumberOfSlot(Slot* slot);
307
ager@chromium.org7c537e22008-10-16 08:43:32 +0000308 // State
309 bool has_cc() const { return cc_reg_ != al; }
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000310 JumpTarget* true_target() const { return state_->true_target(); }
311 JumpTarget* false_target() const { return state_->false_target(); }
ager@chromium.org7c537e22008-10-16 08:43:32 +0000312
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000313 // Track loop nesting level.
314 int loop_nesting() const { return loop_nesting_; }
315 void IncrementLoopNesting() { loop_nesting_++; }
316 void DecrementLoopNesting() { loop_nesting_--; }
ager@chromium.org7c537e22008-10-16 08:43:32 +0000317
318 // Node visitors.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000319 void VisitStatements(ZoneList<Statement*>* statements);
320
ager@chromium.org7c537e22008-10-16 08:43:32 +0000321#define DEF_VISIT(type) \
322 void Visit##type(type* node);
sgjesse@chromium.org0b6db592009-07-30 14:48:31 +0000323 AST_NODE_LIST(DEF_VISIT)
ager@chromium.org7c537e22008-10-16 08:43:32 +0000324#undef DEF_VISIT
325
326 // Main code generation function
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000327 void Generate(CompilationInfo* info);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000328
whesse@chromium.org2c186ca2010-06-16 11:32:39 +0000329 // Generate the return sequence code. Should be called no more than
330 // once per compiled function, immediately after binding the return
331 // target (which can not be done more than once). The return value should
332 // be in r0.
333 void GenerateReturnSequence();
334
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000335 // Returns the arguments allocation mode.
336 ArgumentsAllocationMode ArgumentsMode();
337
338 // Store the arguments object and allocate it if necessary.
339 void StoreArgumentsObject(bool initial);
340
ager@chromium.org7c537e22008-10-16 08:43:32 +0000341 // The following are used by class Reference.
342 void LoadReference(Reference* ref);
343 void UnloadReference(Reference* ref);
344
ager@chromium.org7c537e22008-10-16 08:43:32 +0000345 MemOperand SlotOperand(Slot* slot, Register tmp);
346
ager@chromium.org381abbb2009-02-25 13:23:22 +0000347 MemOperand ContextSlotOperandCheckExtensions(Slot* slot,
348 Register tmp,
349 Register tmp2,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000350 JumpTarget* slow);
ager@chromium.org381abbb2009-02-25 13:23:22 +0000351
ager@chromium.org7c537e22008-10-16 08:43:32 +0000352 // Expressions
ager@chromium.org3811b432009-10-28 14:53:37 +0000353 static MemOperand GlobalObject() {
ager@chromium.org7c537e22008-10-16 08:43:32 +0000354 return ContextOperand(cp, Context::GLOBAL_INDEX);
355 }
356
357 void LoadCondition(Expression* x,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000358 JumpTarget* true_target,
359 JumpTarget* false_target,
ager@chromium.org7c537e22008-10-16 08:43:32 +0000360 bool force_cc);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000361 void Load(Expression* expr);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000362 void LoadGlobal();
kasperl@chromium.org5a8ca6c2008-10-23 13:57:19 +0000363 void LoadGlobalReceiver(Register scratch);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000364
365 // Read a value from a slot and leave it on top of the expression stack.
366 void LoadFromSlot(Slot* slot, TypeofState typeof_state);
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000367 void LoadFromSlotCheckForArguments(Slot* slot, TypeofState state);
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000368
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000369 // Store the value on top of the stack to a slot.
370 void StoreToSlot(Slot* slot, InitState init_state);
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000371
ager@chromium.orgac091b72010-05-05 07:34:42 +0000372 // Support for compiling assignment expressions.
373 void EmitSlotAssignment(Assignment* node);
374 void EmitNamedPropertyAssignment(Assignment* node);
375 void EmitKeyedPropertyAssignment(Assignment* node);
376
377 // Load a named property, returning it in r0. The receiver is passed on the
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000378 // stack, and remains there.
379 void EmitNamedLoad(Handle<String> name, bool is_contextual);
380
ager@chromium.orgac091b72010-05-05 07:34:42 +0000381 // Store to a named property. If the store is contextual, value is passed on
382 // the frame and consumed. Otherwise, receiver and value are passed on the
383 // frame and consumed. The result is returned in r0.
384 void EmitNamedStore(Handle<String> name, bool is_contextual);
385
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000386 // Load a keyed property, leaving it in r0. The receiver and key are
387 // passed on the stack, and remain there.
lrn@chromium.orgc34f5802010-04-28 12:53:43 +0000388 void EmitKeyedLoad();
389
390 // Store a keyed property. Key and receiver are on the stack and the value is
391 // in r0. Result is returned in r0.
kmillikin@chromium.org69ea3962010-07-05 11:01:40 +0000392 void EmitKeyedStore(StaticType* key_type, WriteBarrierCharacter wb_info);
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000393
ager@chromium.org381abbb2009-02-25 13:23:22 +0000394 void LoadFromGlobalSlotCheckExtensions(Slot* slot,
395 TypeofState typeof_state,
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000396 JumpTarget* slow);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000397
vegorov@chromium.orgdff694e2010-05-17 09:10:26 +0000398 // Support for loading from local/global variables and arguments
399 // whose location is known unless they are shadowed by
400 // eval-introduced bindings. Generates no code for unsupported slot
401 // types and therefore expects to fall through to the slow jump target.
402 void EmitDynamicLoadFromSlotFastCase(Slot* slot,
403 TypeofState typeof_state,
404 JumpTarget* slow,
405 JumpTarget* done);
406
ager@chromium.org7c537e22008-10-16 08:43:32 +0000407 // Special code for typeof expressions: Unfortunately, we must
408 // be careful when loading the expression in 'typeof'
409 // expressions. We are not allowed to throw reference errors for
410 // non-existing properties of the global object, so we must make it
411 // look like an explicit property access, instead of an access
412 // through the context chain.
413 void LoadTypeofExpression(Expression* x);
414
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000415 void ToBoolean(JumpTarget* true_target, JumpTarget* false_target);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000416
ager@chromium.orgb26c50a2010-03-26 09:27:16 +0000417 // Generate code that computes a shortcutting logical operation.
418 void GenerateLogicalBooleanOperation(BinaryOperation* node);
419
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000420 void GenericBinaryOperation(Token::Value op,
421 OverwriteMode overwrite_mode,
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000422 GenerateInlineSmi inline_smi,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000423 int known_rhs = kUnknownIntValue);
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000424 void Comparison(Condition cc,
425 Expression* left,
426 Expression* right,
427 bool strict = false);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000428
ager@chromium.org65dad4b2009-04-23 08:48:43 +0000429 void SmiOperation(Token::Value op,
430 Handle<Object> value,
431 bool reversed,
432 OverwriteMode mode);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000433
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000434 void CallWithArguments(ZoneList<Expression*>* arguments,
435 CallFunctionFlags flags,
436 int position);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000437
fschneider@chromium.org013f3e12010-04-26 13:27:52 +0000438 // An optimized implementation of expressions of the form
439 // x.apply(y, arguments). We call x the applicand and y the receiver.
440 // The optimization avoids allocating an arguments object if possible.
441 void CallApplyLazy(Expression* applicand,
442 Expression* receiver,
443 VariableProxy* arguments,
444 int position);
445
ager@chromium.org7c537e22008-10-16 08:43:32 +0000446 // Control flow
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000447 void Branch(bool if_true, JumpTarget* target);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000448 void CheckStack();
ager@chromium.org7c537e22008-10-16 08:43:32 +0000449
ager@chromium.org9085a012009-05-11 19:22:57 +0000450 struct InlineRuntimeLUT {
451 void (CodeGenerator::*method)(ZoneList<Expression*>*);
452 const char* name;
vegorov@chromium.orgf8372902010-03-15 10:26:20 +0000453 int nargs;
ager@chromium.org9085a012009-05-11 19:22:57 +0000454 };
455
456 static InlineRuntimeLUT* FindInlineRuntimeLUT(Handle<String> name);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000457 bool CheckForInlineRuntimeCall(CallRuntime* node);
ager@chromium.org9085a012009-05-11 19:22:57 +0000458 static bool PatchInlineRuntimeEntry(Handle<String> name,
459 const InlineRuntimeLUT& new_entry,
460 InlineRuntimeLUT* old_entry);
461
ager@chromium.org3811b432009-10-28 14:53:37 +0000462 static Handle<Code> ComputeLazyCompile(int argc);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000463 void ProcessDeclarations(ZoneList<Declaration*>* declarations);
464
ager@chromium.org3811b432009-10-28 14:53:37 +0000465 static Handle<Code> ComputeCallInitialize(int argc, InLoopFlag in_loop);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000466
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000467 static Handle<Code> ComputeKeyedCallInitialize(int argc, InLoopFlag in_loop);
468
ager@chromium.org7c537e22008-10-16 08:43:32 +0000469 // Declare global variables and functions in the given array of
470 // name/value pairs.
471 void DeclareGlobals(Handle<FixedArray> pairs);
472
kmillikin@chromium.org5d8f0e62010-03-24 08:21:20 +0000473 // Instantiate the function based on the shared function info.
474 void InstantiateFunction(Handle<SharedFunctionInfo> function_info);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000475
476 // Support for type checks.
477 void GenerateIsSmi(ZoneList<Expression*>* args);
478 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args);
479 void GenerateIsArray(ZoneList<Expression*>* args);
fschneider@chromium.orgb95b98b2010-02-23 10:34:29 +0000480 void GenerateIsRegExp(ZoneList<Expression*>* args);
ager@chromium.org6141cbe2009-11-20 12:14:52 +0000481 void GenerateIsObject(ZoneList<Expression*>* args);
ricow@chromium.org4980dff2010-07-19 08:33:45 +0000482 void GenerateIsSpecObject(ZoneList<Expression*>* args);
ager@chromium.org6141cbe2009-11-20 12:14:52 +0000483 void GenerateIsFunction(ZoneList<Expression*>* args);
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000484 void GenerateIsUndetectableObject(ZoneList<Expression*>* args);
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000485 void GenerateIsStringWrapperSafeForDefaultValueOf(
486 ZoneList<Expression*>* args);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000487
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000488 // Support for construct call checks.
489 void GenerateIsConstructCall(ZoneList<Expression*>* args);
490
ager@chromium.org7c537e22008-10-16 08:43:32 +0000491 // Support for arguments.length and arguments[?].
492 void GenerateArgumentsLength(ZoneList<Expression*>* args);
vegorov@chromium.orgf8372902010-03-15 10:26:20 +0000493 void GenerateArguments(ZoneList<Expression*>* args);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000494
kasperl@chromium.org2abc4502009-07-02 07:00:29 +0000495 // Support for accessing the class and value fields of an object.
496 void GenerateClassOf(ZoneList<Expression*>* args);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000497 void GenerateValueOf(ZoneList<Expression*>* args);
498 void GenerateSetValueOf(ZoneList<Expression*>* args);
499
500 // Fast support for charCodeAt(n).
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000501 void GenerateStringCharCodeAt(ZoneList<Expression*>* args);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000502
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000503 // Fast support for string.charAt(n) and string[n].
ricow@chromium.org30ce4112010-05-31 10:38:25 +0000504 void GenerateStringCharFromCode(ZoneList<Expression*>* args);
505
506 // Fast support for string.charAt(n) and string[n].
507 void GenerateStringCharAt(ZoneList<Expression*>* args);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000508
ager@chromium.org7c537e22008-10-16 08:43:32 +0000509 // Fast support for object equality testing.
510 void GenerateObjectEquals(ZoneList<Expression*>* args);
511
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000512 void GenerateLog(ZoneList<Expression*>* args);
513
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000514 // Fast support for Math.random().
ager@chromium.org357bf652010-04-12 11:30:10 +0000515 void GenerateRandomHeapNumber(ZoneList<Expression*>* args);
ager@chromium.orgeadaf222009-06-16 09:43:10 +0000516
sgjesse@chromium.orgac6aa172009-12-04 12:29:05 +0000517 // Fast support for StringAdd.
518 void GenerateStringAdd(ZoneList<Expression*>* args);
519
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000520 // Fast support for SubString.
521 void GenerateSubString(ZoneList<Expression*>* args);
522
523 // Fast support for StringCompare.
524 void GenerateStringCompare(ZoneList<Expression*>* args);
525
526 // Support for direct calls from JavaScript to native RegExp code.
527 void GenerateRegExpExec(ZoneList<Expression*>* args);
528
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +0000529 void GenerateRegExpConstructResult(ZoneList<Expression*>* args);
530
erik.corry@gmail.com145eff52010-08-23 11:36:18 +0000531 void GenerateRegExpCloneResult(ZoneList<Expression*>* args);
532
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000533 // Support for fast native caches.
534 void GenerateGetFromCache(ZoneList<Expression*>* args);
535
ager@chromium.org5c838252010-02-19 08:53:10 +0000536 // Fast support for number to string.
537 void GenerateNumberToString(ZoneList<Expression*>* args);
538
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000539 // Fast swapping of elements.
540 void GenerateSwapElements(ZoneList<Expression*>* args);
541
ager@chromium.org357bf652010-04-12 11:30:10 +0000542 // Fast call for custom callbacks.
543 void GenerateCallFunction(ZoneList<Expression*>* args);
544
vegorov@chromium.orgf8372902010-03-15 10:26:20 +0000545 // Fast call to math functions.
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000546 void GenerateMathPow(ZoneList<Expression*>* args);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000547 void GenerateMathSin(ZoneList<Expression*>* args);
548 void GenerateMathCos(ZoneList<Expression*>* args);
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000549 void GenerateMathSqrt(ZoneList<Expression*>* args);
550
lrn@chromium.orgc4e51ac2010-08-09 09:47:21 +0000551 void GenerateIsRegExpEquivalent(ZoneList<Expression*>* args);
552
christian.plesner.hansen@gmail.com9d58c2b2009-10-16 11:48:38 +0000553 // Simple condition analysis.
554 enum ConditionAnalysis {
555 ALWAYS_TRUE,
556 ALWAYS_FALSE,
557 DONT_KNOW
558 };
559 ConditionAnalysis AnalyzeCondition(Expression* cond);
560
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000561 // Methods used to indicate which source code is generated for. Source
562 // positions are collected by the assembler and emitted with the relocation
563 // information.
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000564 void CodeForFunctionPosition(FunctionLiteral* fun);
kasperl@chromium.org8ccb0be2009-04-07 07:21:39 +0000565 void CodeForReturnPosition(FunctionLiteral* fun);
sgjesse@chromium.orgc5145742009-10-07 09:00:33 +0000566 void CodeForStatementPosition(Statement* node);
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000567 void CodeForDoWhileConditionPosition(DoWhileStatement* stmt);
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000568 void CodeForSourcePosition(int pos);
ager@chromium.org7c537e22008-10-16 08:43:32 +0000569
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000570#ifdef DEBUG
571 // True if the registers are valid for entry to a block.
572 bool HasValidEntryRegisters();
573#endif
574
ager@chromium.org7c537e22008-10-16 08:43:32 +0000575 List<DeferredCode*> deferred_;
576
577 // Assembler
578 MacroAssembler* masm_; // to generate code
579
ager@chromium.org5c838252010-02-19 08:53:10 +0000580 CompilationInfo* info_;
581
ager@chromium.org7c537e22008-10-16 08:43:32 +0000582 // Code generation state
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000583 VirtualFrame* frame_;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000584 RegisterAllocator* allocator_;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000585 Condition cc_reg_;
586 CodeGenState* state_;
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000587 int loop_nesting_;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000588
lrn@chromium.org1af7e1b2010-06-07 11:12:01 +0000589 Vector<TypeInfo>* type_info_;
590
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000591 // Jump targets
592 BreakTarget function_return_;
593
594 // True if the function return is shadowed (ie, jumping to the target
595 // function_return_ does not jump to the true function return, but rather
596 // to some unlinking code).
597 bool function_return_is_shadowed_;
598
whesse@chromium.orgba5a61b2010-07-26 11:44:40 +0000599 // Size of inlined write barriers generated by EmitNamedStore.
600 static int inlined_write_barrier_size_;
601
ager@chromium.org9085a012009-05-11 19:22:57 +0000602 static InlineRuntimeLUT kInlineRuntimeLUT[];
603
ager@chromium.org3bf7b912008-11-17 09:09:45 +0000604 friend class VirtualFrame;
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000605 friend class JumpTarget;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000606 friend class Reference;
ager@chromium.org3811b432009-10-28 14:53:37 +0000607 friend class FastCodeGenerator;
sgjesse@chromium.orgb302e562010-02-03 11:26:59 +0000608 friend class FullCodeGenerator;
609 friend class FullCodeGenSyntaxChecker;
ager@chromium.org7c537e22008-10-16 08:43:32 +0000610
611 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
612};
613
kasperl@chromium.org7be3c992009-03-12 07:19:55 +0000614
ager@chromium.org7c537e22008-10-16 08:43:32 +0000615} } // namespace v8::internal
616
ager@chromium.org5ec48922009-05-05 07:25:34 +0000617#endif // V8_ARM_CODEGEN_ARM_H_