Native construction of RegExp result objects, with in-object index and input.
[platform/upstream/v8.git] / src / arm / codegen-arm.h
1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // 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
28 #ifndef V8_ARM_CODEGEN_ARM_H_
29 #define V8_ARM_CODEGEN_ARM_H_
30
31 #include "ic-inl.h"
32
33 namespace v8 {
34 namespace internal {
35
36 // Forward declarations
37 class CompilationInfo;
38 class DeferredCode;
39 class RegisterAllocator;
40 class RegisterFile;
41
42 enum InitState { CONST_INIT, NOT_CONST_INIT };
43 enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF };
44
45
46 // -------------------------------------------------------------------------
47 // Reference support
48
49 // A reference is a C++ stack-allocated object that puts a
50 // reference on the virtual frame.  The reference may be consumed
51 // by GetValue, TakeValue, SetValue, and Codegen::UnloadReference.
52 // When the lifetime (scope) of a valid reference ends, it must have
53 // been consumed, and be in state UNLOADED.
54 class Reference BASE_EMBEDDED {
55  public:
56   // The values of the types is important, see size().
57   enum Type { UNLOADED = -2, ILLEGAL = -1, SLOT = 0, NAMED = 1, KEYED = 2 };
58   Reference(CodeGenerator* cgen,
59             Expression* expression,
60             bool persist_after_get = false);
61   ~Reference();
62
63   Expression* expression() const { return expression_; }
64   Type type() const { return type_; }
65   void set_type(Type value) {
66     ASSERT_EQ(ILLEGAL, type_);
67     type_ = value;
68   }
69
70   void set_unloaded() {
71     ASSERT_NE(ILLEGAL, type_);
72     ASSERT_NE(UNLOADED, type_);
73     type_ = UNLOADED;
74   }
75   // The size the reference takes up on the stack.
76   int size() const {
77     return (type_ < SLOT) ? 0 : type_;
78   }
79
80   bool is_illegal() const { return type_ == ILLEGAL; }
81   bool is_slot() const { return type_ == SLOT; }
82   bool is_property() const { return type_ == NAMED || type_ == KEYED; }
83   bool is_unloaded() const { return type_ == UNLOADED; }
84
85   // Return the name.  Only valid for named property references.
86   Handle<String> GetName();
87
88   // Generate code to push the value of the reference on top of the
89   // expression stack.  The reference is expected to be already on top of
90   // the expression stack, and it is consumed by the call unless the
91   // reference is for a compound assignment.
92   // If the reference is not consumed, it is left in place under its value.
93   void GetValue();
94
95   // Generate code to store the value on top of the expression stack in the
96   // reference.  The reference is expected to be immediately below the value
97   // on the expression stack.  The  value is stored in the location specified
98   // by the reference, and is left on top of the stack, after the reference
99   // is popped from beneath it (unloaded).
100   void SetValue(InitState init_state);
101
102  private:
103   CodeGenerator* cgen_;
104   Expression* expression_;
105   Type type_;
106   // Keep the reference on the stack after get, so it can be used by set later.
107   bool persist_after_get_;
108 };
109
110
111 // -------------------------------------------------------------------------
112 // Code generation state
113
114 // The state is passed down the AST by the code generator (and back up, in
115 // the form of the state of the label pair).  It is threaded through the
116 // call stack.  Constructing a state implicitly pushes it on the owning code
117 // generator's stack of states, and destroying one implicitly pops it.
118
119 class CodeGenState BASE_EMBEDDED {
120  public:
121   // Create an initial code generator state.  Destroying the initial state
122   // leaves the code generator with a NULL state.
123   explicit CodeGenState(CodeGenerator* owner);
124
125   // Create a code generator state based on a code generator's current
126   // state.  The new state has its own pair of branch labels.
127   CodeGenState(CodeGenerator* owner,
128                JumpTarget* true_target,
129                JumpTarget* false_target);
130
131   // Destroy a code generator state and restore the owning code generator's
132   // previous state.
133   ~CodeGenState();
134
135   JumpTarget* true_target() const { return true_target_; }
136   JumpTarget* false_target() const { return false_target_; }
137
138  private:
139   CodeGenerator* owner_;
140   JumpTarget* true_target_;
141   JumpTarget* false_target_;
142   CodeGenState* previous_;
143 };
144
145
146 // -------------------------------------------------------------------------
147 // CodeGenerator
148
149 class CodeGenerator: public AstVisitor {
150  public:
151   // Takes a function literal, generates code for it. This function should only
152   // be called by compiler.cc.
153   static Handle<Code> MakeCode(CompilationInfo* info);
154
155   // Printing of AST, etc. as requested by flags.
156   static void MakeCodePrologue(CompilationInfo* info);
157
158   // Allocate and install the code.
159   static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
160                                        Code::Flags flags,
161                                        CompilationInfo* info);
162
163 #ifdef ENABLE_LOGGING_AND_PROFILING
164   static bool ShouldGenerateLog(Expression* type);
165 #endif
166
167   static void SetFunctionInfo(Handle<JSFunction> fun,
168                               FunctionLiteral* lit,
169                               bool is_toplevel,
170                               Handle<Script> script);
171
172   static void RecordPositions(MacroAssembler* masm, int pos);
173
174   // Accessors
175   MacroAssembler* masm() { return masm_; }
176   VirtualFrame* frame() const { return frame_; }
177   inline Handle<Script> script();
178
179   bool has_valid_frame() const { return frame_ != NULL; }
180
181   // Set the virtual frame to be new_frame, with non-frame register
182   // reference counts given by non_frame_registers.  The non-frame
183   // register reference counts of the old frame are returned in
184   // non_frame_registers.
185   void SetFrame(VirtualFrame* new_frame, RegisterFile* non_frame_registers);
186
187   void DeleteFrame();
188
189   RegisterAllocator* allocator() const { return allocator_; }
190
191   CodeGenState* state() { return state_; }
192   void set_state(CodeGenState* state) { state_ = state; }
193
194   void AddDeferred(DeferredCode* code) { deferred_.Add(code); }
195
196   static const int kUnknownIntValue = -1;
197
198   // If the name is an inline runtime function call return the number of
199   // expected arguments. Otherwise return -1.
200   static int InlineRuntimeCallArgumentsCount(Handle<String> name);
201
202  private:
203   // Construction/Destruction
204   explicit CodeGenerator(MacroAssembler* masm);
205
206   // Accessors
207   inline bool is_eval();
208   inline Scope* scope();
209
210   // Generating deferred code.
211   void ProcessDeferred();
212
213   // State
214   bool has_cc() const  { return cc_reg_ != al; }
215   JumpTarget* true_target() const  { return state_->true_target(); }
216   JumpTarget* false_target() const  { return state_->false_target(); }
217
218   // We don't track loop nesting level on ARM yet.
219   int loop_nesting() const { return 0; }
220
221   // Node visitors.
222   void VisitStatements(ZoneList<Statement*>* statements);
223
224 #define DEF_VISIT(type) \
225   void Visit##type(type* node);
226   AST_NODE_LIST(DEF_VISIT)
227 #undef DEF_VISIT
228
229   // Visit a statement and then spill the virtual frame if control flow can
230   // reach the end of the statement (ie, it does not exit via break,
231   // continue, return, or throw).  This function is used temporarily while
232   // the code generator is being transformed.
233   inline void VisitAndSpill(Statement* statement);
234
235   // Visit a list of statements and then spill the virtual frame if control
236   // flow can reach the end of the list.
237   inline void VisitStatementsAndSpill(ZoneList<Statement*>* statements);
238
239   // Main code generation function
240   void Generate(CompilationInfo* info);
241
242   // The following are used by class Reference.
243   void LoadReference(Reference* ref);
244   void UnloadReference(Reference* ref);
245
246   static MemOperand ContextOperand(Register context, int index) {
247     return MemOperand(context, Context::SlotOffset(index));
248   }
249
250   MemOperand SlotOperand(Slot* slot, Register tmp);
251
252   MemOperand ContextSlotOperandCheckExtensions(Slot* slot,
253                                                Register tmp,
254                                                Register tmp2,
255                                                JumpTarget* slow);
256
257   // Expressions
258   static MemOperand GlobalObject()  {
259     return ContextOperand(cp, Context::GLOBAL_INDEX);
260   }
261
262   void LoadCondition(Expression* x,
263                      JumpTarget* true_target,
264                      JumpTarget* false_target,
265                      bool force_cc);
266   void Load(Expression* expr);
267   void LoadGlobal();
268   void LoadGlobalReceiver(Register scratch);
269
270   // Generate code to push the value of an expression on top of the frame
271   // and then spill the frame fully to memory.  This function is used
272   // temporarily while the code generator is being transformed.
273   inline void LoadAndSpill(Expression* expression);
274
275   // Call LoadCondition and then spill the virtual frame unless control flow
276   // cannot reach the end of the expression (ie, by emitting only
277   // unconditional jumps to the control targets).
278   inline void LoadConditionAndSpill(Expression* expression,
279                                     JumpTarget* true_target,
280                                     JumpTarget* false_target,
281                                     bool force_control);
282
283   // Read a value from a slot and leave it on top of the expression stack.
284   void LoadFromSlot(Slot* slot, TypeofState typeof_state);
285   // Store the value on top of the stack to a slot.
286   void StoreToSlot(Slot* slot, InitState init_state);
287   // Load a keyed property, leaving it in r0.  The receiver and key are
288   // passed on the stack, and remain there.
289   void EmitKeyedLoad(bool is_global);
290
291   void LoadFromGlobalSlotCheckExtensions(Slot* slot,
292                                          TypeofState typeof_state,
293                                          Register tmp,
294                                          Register tmp2,
295                                          JumpTarget* slow);
296
297   // Special code for typeof expressions: Unfortunately, we must
298   // be careful when loading the expression in 'typeof'
299   // expressions. We are not allowed to throw reference errors for
300   // non-existing properties of the global object, so we must make it
301   // look like an explicit property access, instead of an access
302   // through the context chain.
303   void LoadTypeofExpression(Expression* x);
304
305   void ToBoolean(JumpTarget* true_target, JumpTarget* false_target);
306
307   // Generate code that computes a shortcutting logical operation.
308   void GenerateLogicalBooleanOperation(BinaryOperation* node);
309
310   void GenericBinaryOperation(Token::Value op,
311                               OverwriteMode overwrite_mode,
312                               int known_rhs = kUnknownIntValue);
313   void VirtualFrameBinaryOperation(Token::Value op,
314                                    OverwriteMode overwrite_mode,
315                                    int known_rhs = kUnknownIntValue);
316   void Comparison(Condition cc,
317                   Expression* left,
318                   Expression* right,
319                   bool strict = false);
320
321   void SmiOperation(Token::Value op,
322                     Handle<Object> value,
323                     bool reversed,
324                     OverwriteMode mode);
325
326   void VirtualFrameSmiOperation(Token::Value op,
327                                 Handle<Object> value,
328                                 bool reversed,
329                                 OverwriteMode mode);
330
331   void CallWithArguments(ZoneList<Expression*>* arguments,
332                          CallFunctionFlags flags,
333                          int position);
334
335   // Control flow
336   void Branch(bool if_true, JumpTarget* target);
337   void CheckStack();
338
339   struct InlineRuntimeLUT {
340     void (CodeGenerator::*method)(ZoneList<Expression*>*);
341     const char* name;
342     int nargs;
343   };
344
345   static InlineRuntimeLUT* FindInlineRuntimeLUT(Handle<String> name);
346   bool CheckForInlineRuntimeCall(CallRuntime* node);
347   static bool PatchInlineRuntimeEntry(Handle<String> name,
348                                       const InlineRuntimeLUT& new_entry,
349                                       InlineRuntimeLUT* old_entry);
350
351   static Handle<Code> ComputeLazyCompile(int argc);
352   void ProcessDeclarations(ZoneList<Declaration*>* declarations);
353
354   static Handle<Code> ComputeCallInitialize(int argc, InLoopFlag in_loop);
355
356   // Declare global variables and functions in the given array of
357   // name/value pairs.
358   void DeclareGlobals(Handle<FixedArray> pairs);
359
360   // Instantiate the function based on the shared function info.
361   void InstantiateFunction(Handle<SharedFunctionInfo> function_info);
362
363   // Support for type checks.
364   void GenerateIsSmi(ZoneList<Expression*>* args);
365   void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args);
366   void GenerateIsArray(ZoneList<Expression*>* args);
367   void GenerateIsRegExp(ZoneList<Expression*>* args);
368   void GenerateIsObject(ZoneList<Expression*>* args);
369   void GenerateIsFunction(ZoneList<Expression*>* args);
370   void GenerateIsUndetectableObject(ZoneList<Expression*>* args);
371
372   // Support for construct call checks.
373   void GenerateIsConstructCall(ZoneList<Expression*>* args);
374
375   // Support for arguments.length and arguments[?].
376   void GenerateArgumentsLength(ZoneList<Expression*>* args);
377   void GenerateArguments(ZoneList<Expression*>* args);
378
379   // Support for accessing the class and value fields of an object.
380   void GenerateClassOf(ZoneList<Expression*>* args);
381   void GenerateValueOf(ZoneList<Expression*>* args);
382   void GenerateSetValueOf(ZoneList<Expression*>* args);
383
384   // Fast support for charCodeAt(n).
385   void GenerateFastCharCodeAt(ZoneList<Expression*>* args);
386
387   // Fast support for string.charAt(n) and string[n].
388   void GenerateCharFromCode(ZoneList<Expression*>* args);
389
390   // Fast support for object equality testing.
391   void GenerateObjectEquals(ZoneList<Expression*>* args);
392
393   void GenerateLog(ZoneList<Expression*>* args);
394
395   // Fast support for Math.random().
396   void GenerateRandomHeapNumber(ZoneList<Expression*>* args);
397
398   // Fast support for StringAdd.
399   void GenerateStringAdd(ZoneList<Expression*>* args);
400
401   // Fast support for SubString.
402   void GenerateSubString(ZoneList<Expression*>* args);
403
404   // Fast support for StringCompare.
405   void GenerateStringCompare(ZoneList<Expression*>* args);
406
407   // Support for direct calls from JavaScript to native RegExp code.
408   void GenerateRegExpExec(ZoneList<Expression*>* args);
409
410   void GenerateRegExpConstructResult(ZoneList<Expression*>* args);
411
412   // Fast support for number to string.
413   void GenerateNumberToString(ZoneList<Expression*>* args);
414
415   // Fast call for custom callbacks.
416   void GenerateCallFunction(ZoneList<Expression*>* args);
417
418   // Fast call to math functions.
419   void GenerateMathPow(ZoneList<Expression*>* args);
420   void GenerateMathSin(ZoneList<Expression*>* args);
421   void GenerateMathCos(ZoneList<Expression*>* args);
422   void GenerateMathSqrt(ZoneList<Expression*>* args);
423
424   // Simple condition analysis.
425   enum ConditionAnalysis {
426     ALWAYS_TRUE,
427     ALWAYS_FALSE,
428     DONT_KNOW
429   };
430   ConditionAnalysis AnalyzeCondition(Expression* cond);
431
432   // Methods used to indicate which source code is generated for. Source
433   // positions are collected by the assembler and emitted with the relocation
434   // information.
435   void CodeForFunctionPosition(FunctionLiteral* fun);
436   void CodeForReturnPosition(FunctionLiteral* fun);
437   void CodeForStatementPosition(Statement* node);
438   void CodeForDoWhileConditionPosition(DoWhileStatement* stmt);
439   void CodeForSourcePosition(int pos);
440
441 #ifdef DEBUG
442   // True if the registers are valid for entry to a block.
443   bool HasValidEntryRegisters();
444 #endif
445
446   List<DeferredCode*> deferred_;
447
448   // Assembler
449   MacroAssembler* masm_;  // to generate code
450
451   CompilationInfo* info_;
452
453   // Code generation state
454   VirtualFrame* frame_;
455   RegisterAllocator* allocator_;
456   Condition cc_reg_;
457   CodeGenState* state_;
458
459   // Jump targets
460   BreakTarget function_return_;
461
462   // True if the function return is shadowed (ie, jumping to the target
463   // function_return_ does not jump to the true function return, but rather
464   // to some unlinking code).
465   bool function_return_is_shadowed_;
466
467   static InlineRuntimeLUT kInlineRuntimeLUT[];
468
469   friend class VirtualFrame;
470   friend class JumpTarget;
471   friend class Reference;
472   friend class FastCodeGenerator;
473   friend class FullCodeGenerator;
474   friend class FullCodeGenSyntaxChecker;
475
476   DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
477 };
478
479
480 class GenericBinaryOpStub : public CodeStub {
481  public:
482   GenericBinaryOpStub(Token::Value op,
483                       OverwriteMode mode,
484                       Register lhs,
485                       Register rhs,
486                       int constant_rhs = CodeGenerator::kUnknownIntValue)
487       : op_(op),
488         mode_(mode),
489         lhs_(lhs),
490         rhs_(rhs),
491         constant_rhs_(constant_rhs),
492         specialized_on_rhs_(RhsIsOneWeWantToOptimizeFor(op, constant_rhs)),
493         runtime_operands_type_(BinaryOpIC::DEFAULT),
494         name_(NULL) { }
495
496   GenericBinaryOpStub(int key, BinaryOpIC::TypeInfo type_info)
497       : op_(OpBits::decode(key)),
498         mode_(ModeBits::decode(key)),
499         lhs_(LhsRegister(RegisterBits::decode(key))),
500         rhs_(RhsRegister(RegisterBits::decode(key))),
501         constant_rhs_(KnownBitsForMinorKey(KnownIntBits::decode(key))),
502         specialized_on_rhs_(RhsIsOneWeWantToOptimizeFor(op_, constant_rhs_)),
503         runtime_operands_type_(type_info),
504         name_(NULL) { }
505
506  private:
507   Token::Value op_;
508   OverwriteMode mode_;
509   Register lhs_;
510   Register rhs_;
511   int constant_rhs_;
512   bool specialized_on_rhs_;
513   BinaryOpIC::TypeInfo runtime_operands_type_;
514   char* name_;
515
516   static const int kMaxKnownRhs = 0x40000000;
517   static const int kKnownRhsKeyBits = 6;
518
519   // Minor key encoding in 17 bits.
520   class ModeBits: public BitField<OverwriteMode, 0, 2> {};
521   class OpBits: public BitField<Token::Value, 2, 6> {};
522   class TypeInfoBits: public BitField<int, 8, 2> {};
523   class RegisterBits: public BitField<bool, 10, 1> {};
524   class KnownIntBits: public BitField<int, 11, kKnownRhsKeyBits> {};
525
526   Major MajorKey() { return GenericBinaryOp; }
527   int MinorKey() {
528     ASSERT((lhs_.is(r0) && rhs_.is(r1)) ||
529            (lhs_.is(r1) && rhs_.is(r0)));
530     // Encode the parameters in a unique 18 bit value.
531     return OpBits::encode(op_)
532            | ModeBits::encode(mode_)
533            | KnownIntBits::encode(MinorKeyForKnownInt())
534            | TypeInfoBits::encode(runtime_operands_type_)
535            | RegisterBits::encode(lhs_.is(r0));
536   }
537
538   void Generate(MacroAssembler* masm);
539   void HandleNonSmiBitwiseOp(MacroAssembler* masm, Register lhs, Register rhs);
540   void HandleBinaryOpSlowCases(MacroAssembler* masm,
541                                Label* not_smi,
542                                Register lhs,
543                                Register rhs,
544                                const Builtins::JavaScript& builtin);
545   void GenerateTypeTransition(MacroAssembler* masm);
546
547   static bool RhsIsOneWeWantToOptimizeFor(Token::Value op, int constant_rhs) {
548     if (constant_rhs == CodeGenerator::kUnknownIntValue) return false;
549     if (op == Token::DIV) return constant_rhs >= 2 && constant_rhs <= 3;
550     if (op == Token::MOD) {
551       if (constant_rhs <= 1) return false;
552       if (constant_rhs <= 10) return true;
553       if (constant_rhs <= kMaxKnownRhs && IsPowerOf2(constant_rhs)) return true;
554       return false;
555     }
556     return false;
557   }
558
559   int MinorKeyForKnownInt() {
560     if (!specialized_on_rhs_) return 0;
561     if (constant_rhs_ <= 10) return constant_rhs_ + 1;
562     ASSERT(IsPowerOf2(constant_rhs_));
563     int key = 12;
564     int d = constant_rhs_;
565     while ((d & 1) == 0) {
566       key++;
567       d >>= 1;
568     }
569     ASSERT(key >= 0 && key < (1 << kKnownRhsKeyBits));
570     return key;
571   }
572
573   int KnownBitsForMinorKey(int key) {
574     if (!key) return 0;
575     if (key <= 11) return key - 1;
576     int d = 1;
577     while (key != 12) {
578       key--;
579       d <<= 1;
580     }
581     return d;
582   }
583
584   Register LhsRegister(bool lhs_is_r0) {
585     return lhs_is_r0 ? r0 : r1;
586   }
587
588   Register RhsRegister(bool lhs_is_r0) {
589     return lhs_is_r0 ? r1 : r0;
590   }
591
592   bool ShouldGenerateSmiCode() {
593     return ((op_ != Token::DIV && op_ != Token::MOD) || specialized_on_rhs_) &&
594         runtime_operands_type_ != BinaryOpIC::HEAP_NUMBERS &&
595         runtime_operands_type_ != BinaryOpIC::STRINGS;
596   }
597
598   bool ShouldGenerateFPCode() {
599     return runtime_operands_type_ != BinaryOpIC::STRINGS;
600   }
601
602   virtual int GetCodeKind() { return Code::BINARY_OP_IC; }
603
604   virtual InlineCacheState GetICState() {
605     return BinaryOpIC::ToState(runtime_operands_type_);
606   }
607
608   const char* GetName();
609
610 #ifdef DEBUG
611   void Print() {
612     if (!specialized_on_rhs_) {
613       PrintF("GenericBinaryOpStub (%s)\n", Token::String(op_));
614     } else {
615       PrintF("GenericBinaryOpStub (%s by %d)\n",
616              Token::String(op_),
617              constant_rhs_);
618     }
619   }
620 #endif
621 };
622
623
624 class StringStubBase: public CodeStub {
625  public:
626   // Generate code for copying characters using a simple loop. This should only
627   // be used in places where the number of characters is small and the
628   // additional setup and checking in GenerateCopyCharactersLong adds too much
629   // overhead. Copying of overlapping regions is not supported.
630   // Dest register ends at the position after the last character written.
631   void GenerateCopyCharacters(MacroAssembler* masm,
632                               Register dest,
633                               Register src,
634                               Register count,
635                               Register scratch,
636                               bool ascii);
637
638   // Generate code for copying a large number of characters. This function
639   // is allowed to spend extra time setting up conditions to make copying
640   // faster. Copying of overlapping regions is not supported.
641   // Dest register ends at the position after the last character written.
642   void GenerateCopyCharactersLong(MacroAssembler* masm,
643                                   Register dest,
644                                   Register src,
645                                   Register count,
646                                   Register scratch1,
647                                   Register scratch2,
648                                   Register scratch3,
649                                   Register scratch4,
650                                   Register scratch5,
651                                   int flags);
652
653
654   // Probe the symbol table for a two character string. If the string is
655   // not found by probing a jump to the label not_found is performed. This jump
656   // does not guarantee that the string is not in the symbol table. If the
657   // string is found the code falls through with the string in register r0.
658   // Contents of both c1 and c2 registers are modified. At the exit c1 is
659   // guaranteed to contain halfword with low and high bytes equal to
660   // initial contents of c1 and c2 respectively.
661   void GenerateTwoCharacterSymbolTableProbe(MacroAssembler* masm,
662                                             Register c1,
663                                             Register c2,
664                                             Register scratch1,
665                                             Register scratch2,
666                                             Register scratch3,
667                                             Register scratch4,
668                                             Register scratch5,
669                                             Label* not_found);
670
671   // Generate string hash.
672   void GenerateHashInit(MacroAssembler* masm,
673                         Register hash,
674                         Register character);
675
676   void GenerateHashAddCharacter(MacroAssembler* masm,
677                                 Register hash,
678                                 Register character);
679
680   void GenerateHashGetHash(MacroAssembler* masm,
681                            Register hash);
682 };
683
684
685 // Flag that indicates how to generate code for the stub StringAddStub.
686 enum StringAddFlags {
687   NO_STRING_ADD_FLAGS = 0,
688   NO_STRING_CHECK_IN_STUB = 1 << 0  // Omit string check in stub.
689 };
690
691
692 class StringAddStub: public StringStubBase {
693  public:
694   explicit StringAddStub(StringAddFlags flags) {
695     string_check_ = ((flags & NO_STRING_CHECK_IN_STUB) == 0);
696   }
697
698  private:
699   Major MajorKey() { return StringAdd; }
700   int MinorKey() { return string_check_ ? 0 : 1; }
701
702   void Generate(MacroAssembler* masm);
703
704   // Should the stub check whether arguments are strings?
705   bool string_check_;
706 };
707
708
709 class SubStringStub: public StringStubBase {
710  public:
711   SubStringStub() {}
712
713  private:
714   Major MajorKey() { return SubString; }
715   int MinorKey() { return 0; }
716
717   void Generate(MacroAssembler* masm);
718 };
719
720
721
722 class StringCompareStub: public CodeStub {
723  public:
724   StringCompareStub() { }
725
726   // Compare two flat ASCII strings and returns result in r0.
727   // Does not use the stack.
728   static void GenerateCompareFlatAsciiStrings(MacroAssembler* masm,
729                                               Register left,
730                                               Register right,
731                                               Register scratch1,
732                                               Register scratch2,
733                                               Register scratch3,
734                                               Register scratch4);
735
736  private:
737   Major MajorKey() { return StringCompare; }
738   int MinorKey() { return 0; }
739
740   void Generate(MacroAssembler* masm);
741 };
742
743
744 // This stub can convert a signed int32 to a heap number (double).  It does
745 // not work for int32s that are in Smi range!  No GC occurs during this stub
746 // so you don't have to set up the frame.
747 class WriteInt32ToHeapNumberStub : public CodeStub {
748  public:
749   WriteInt32ToHeapNumberStub(Register the_int,
750                              Register the_heap_number,
751                              Register scratch)
752       : the_int_(the_int),
753         the_heap_number_(the_heap_number),
754         scratch_(scratch) { }
755
756  private:
757   Register the_int_;
758   Register the_heap_number_;
759   Register scratch_;
760
761   // Minor key encoding in 16 bits.
762   class IntRegisterBits: public BitField<int, 0, 4> {};
763   class HeapNumberRegisterBits: public BitField<int, 4, 4> {};
764   class ScratchRegisterBits: public BitField<int, 8, 4> {};
765
766   Major MajorKey() { return WriteInt32ToHeapNumber; }
767   int MinorKey() {
768     // Encode the parameters in a unique 16 bit value.
769     return IntRegisterBits::encode(the_int_.code())
770            | HeapNumberRegisterBits::encode(the_heap_number_.code())
771            | ScratchRegisterBits::encode(scratch_.code());
772   }
773
774   void Generate(MacroAssembler* masm);
775
776   const char* GetName() { return "WriteInt32ToHeapNumberStub"; }
777
778 #ifdef DEBUG
779   void Print() { PrintF("WriteInt32ToHeapNumberStub\n"); }
780 #endif
781 };
782
783
784 class NumberToStringStub: public CodeStub {
785  public:
786   NumberToStringStub() { }
787
788   // Generate code to do a lookup in the number string cache. If the number in
789   // the register object is found in the cache the generated code falls through
790   // with the result in the result register. The object and the result register
791   // can be the same. If the number is not found in the cache the code jumps to
792   // the label not_found with only the content of register object unchanged.
793   static void GenerateLookupNumberStringCache(MacroAssembler* masm,
794                                               Register object,
795                                               Register result,
796                                               Register scratch1,
797                                               Register scratch2,
798                                               bool object_is_smi,
799                                               Label* not_found);
800
801  private:
802   Major MajorKey() { return NumberToString; }
803   int MinorKey() { return 0; }
804
805   void Generate(MacroAssembler* masm);
806
807   const char* GetName() { return "NumberToStringStub"; }
808
809 #ifdef DEBUG
810   void Print() {
811     PrintF("NumberToStringStub\n");
812   }
813 #endif
814 };
815
816
817 } }  // namespace v8::internal
818
819 #endif  // V8_ARM_CODEGEN_ARM_H_