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
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.
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.
28 #ifndef V8_ARM_CODEGEN_ARM_H_
29 #define V8_ARM_CODEGEN_ARM_H_
37 // Forward declarations
38 class CompilationInfo;
41 class RegisterAllocator;
44 enum InitState { CONST_INIT, NOT_CONST_INIT };
45 enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF };
46 enum GenerateInlineSmi { DONT_GENERATE_INLINE_SMI, GENERATE_INLINE_SMI };
47 enum WriteBarrierCharacter { UNLIKELY_SMI, LIKELY_SMI, NEVER_NEWSPACE };
50 // -------------------------------------------------------------------------
53 // 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.
58 class Reference BASE_EMBEDDED {
60 // The values of the types is important, see size().
61 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);
67 Expression* expression() const { return expression_; }
68 Type type() const { return type_; }
69 void set_type(Type value) {
70 ASSERT_EQ(ILLEGAL, type_);
75 ASSERT_NE(ILLEGAL, type_);
76 ASSERT_NE(UNLOADED, type_);
79 // The size the reference takes up on the stack.
81 return (type_ < SLOT) ? 0 : type_;
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; }
87 bool is_unloaded() const { return type_ == UNLOADED; }
89 // Return the name. Only valid for named property references.
90 Handle<String> GetName();
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
94 // 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.
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
101 // 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).
104 void SetValue(InitState init_state, WriteBarrierCharacter wb);
106 // 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
109 inline void DupIfPersist();
112 CodeGenerator* cgen_;
113 Expression* expression_;
115 // Keep the reference on the stack after get, so it can be used by set later.
116 bool persist_after_get_;
120 // -------------------------------------------------------------------------
121 // Code generation state
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.
128 class CodeGenState BASE_EMBEDDED {
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);
134 // Destroy a code generator state and restore the owning code generator's
136 virtual ~CodeGenState();
138 virtual JumpTarget* true_target() const { return NULL; }
139 virtual JumpTarget* false_target() const { return NULL; }
142 inline CodeGenerator* owner() { return owner_; }
143 inline CodeGenState* previous() const { return previous_; }
146 CodeGenerator* owner_;
147 CodeGenState* previous_;
151 class ConditionCodeGenState : public CodeGenState {
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);
159 virtual JumpTarget* true_target() const { return true_target_; }
160 virtual JumpTarget* false_target() const { return false_target_; }
163 JumpTarget* true_target_;
164 JumpTarget* false_target_;
168 class TypeInfoCodeGenState : public CodeGenState {
170 TypeInfoCodeGenState(CodeGenerator* owner,
173 ~TypeInfoCodeGenState();
175 virtual JumpTarget* true_target() const { return previous()->true_target(); }
176 virtual JumpTarget* false_target() const {
177 return previous()->false_target();
182 TypeInfo old_type_info_;
186 // -------------------------------------------------------------------------
187 // Arguments allocation mode
189 enum ArgumentsAllocationMode {
190 NO_ARGUMENTS_ALLOCATION,
191 EAGER_ARGUMENTS_ALLOCATION,
192 LAZY_ARGUMENTS_ALLOCATION
196 // Different nop operations are used by the code generator to detect certain
197 // states of the generated code.
198 enum NopMarkerTypes {
200 PROPERTY_ACCESS_INLINED
204 // -------------------------------------------------------------------------
207 class CodeGenerator: public AstVisitor {
209 // Takes a function literal, generates code for it. This function should only
210 // be called by compiler.cc.
211 static Handle<Code> MakeCode(CompilationInfo* info);
213 // Printing of AST, etc. as requested by flags.
214 static void MakeCodePrologue(CompilationInfo* info);
216 // Allocate and install the code.
217 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
219 CompilationInfo* info);
221 #ifdef ENABLE_LOGGING_AND_PROFILING
222 static bool ShouldGenerateLog(Expression* type);
225 static void SetFunctionInfo(Handle<JSFunction> fun,
226 FunctionLiteral* lit,
228 Handle<Script> script);
230 static bool RecordPositions(MacroAssembler* masm,
232 bool right_here = false);
235 MacroAssembler* masm() { return masm_; }
236 VirtualFrame* frame() const { return frame_; }
237 inline Handle<Script> script();
239 bool has_valid_frame() const { return frame_ != NULL; }
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);
249 RegisterAllocator* allocator() const { return allocator_; }
251 CodeGenState* state() { return state_; }
252 void set_state(CodeGenState* state) { state_ = state; }
254 TypeInfo type_info(Slot* slot) {
255 int index = NumberOfSlot(slot);
256 if (index == kInvalidSlotNumber) return TypeInfo::Unknown();
257 return (*type_info_)[index];
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;
268 return TypeInfo::Unknown();
271 void AddDeferred(DeferredCode* code) { deferred_.Add(code); }
273 static const int kUnknownIntValue = -1;
275 // 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);
279 // Constants related to patching of inlined load/store.
280 static int GetInlinedKeyedLoadInstructionsAfterPatch() {
281 return FLAG_debug_code ? 27 : 13;
283 static const int kInlinedKeyedStoreInstructionsAfterPatch = 5;
286 // Construction/Destruction
287 explicit CodeGenerator(MacroAssembler* masm);
290 inline bool is_eval();
291 inline Scope* scope();
293 // Generating deferred code.
294 void ProcessDeferred();
296 static const int kInvalidSlotNumber = -1;
298 int NumberOfSlot(Slot* slot);
301 bool has_cc() const { return cc_reg_ != al; }
302 JumpTarget* true_target() const { return state_->true_target(); }
303 JumpTarget* false_target() const { return state_->false_target(); }
305 // Track loop nesting level.
306 int loop_nesting() const { return loop_nesting_; }
307 void IncrementLoopNesting() { loop_nesting_++; }
308 void DecrementLoopNesting() { loop_nesting_--; }
311 void VisitStatements(ZoneList<Statement*>* statements);
313 #define DEF_VISIT(type) \
314 void Visit##type(type* node);
315 AST_NODE_LIST(DEF_VISIT)
318 // Main code generation function
319 void Generate(CompilationInfo* info);
321 // Generate the return sequence code. Should be called no more than
322 // once per compiled function, immediately after binding the return
323 // target (which can not be done more than once). The return value should
325 void GenerateReturnSequence();
327 // Returns the arguments allocation mode.
328 ArgumentsAllocationMode ArgumentsMode();
330 // Store the arguments object and allocate it if necessary.
331 void StoreArgumentsObject(bool initial);
333 // The following are used by class Reference.
334 void LoadReference(Reference* ref);
335 void UnloadReference(Reference* ref);
337 static MemOperand ContextOperand(Register context, int index) {
338 return MemOperand(context, Context::SlotOffset(index));
341 MemOperand SlotOperand(Slot* slot, Register tmp);
343 MemOperand ContextSlotOperandCheckExtensions(Slot* slot,
349 static MemOperand GlobalObject() {
350 return ContextOperand(cp, Context::GLOBAL_INDEX);
353 void LoadCondition(Expression* x,
354 JumpTarget* true_target,
355 JumpTarget* false_target,
357 void Load(Expression* expr);
359 void LoadGlobalReceiver(Register scratch);
361 // Read a value from a slot and leave it on top of the expression stack.
362 void LoadFromSlot(Slot* slot, TypeofState typeof_state);
363 void LoadFromSlotCheckForArguments(Slot* slot, TypeofState state);
365 // Store the value on top of the stack to a slot.
366 void StoreToSlot(Slot* slot, InitState init_state);
368 // Support for compiling assignment expressions.
369 void EmitSlotAssignment(Assignment* node);
370 void EmitNamedPropertyAssignment(Assignment* node);
371 void EmitKeyedPropertyAssignment(Assignment* node);
373 // Load a named property, returning it in r0. The receiver is passed on the
374 // stack, and remains there.
375 void EmitNamedLoad(Handle<String> name, bool is_contextual);
377 // Store to a named property. If the store is contextual, value is passed on
378 // the frame and consumed. Otherwise, receiver and value are passed on the
379 // frame and consumed. The result is returned in r0.
380 void EmitNamedStore(Handle<String> name, bool is_contextual);
382 // Load a keyed property, leaving it in r0. The receiver and key are
383 // passed on the stack, and remain there.
384 void EmitKeyedLoad();
386 // Store a keyed property. Key and receiver are on the stack and the value is
387 // in r0. Result is returned in r0.
388 void EmitKeyedStore(StaticType* key_type, WriteBarrierCharacter wb_info);
390 void LoadFromGlobalSlotCheckExtensions(Slot* slot,
391 TypeofState typeof_state,
394 // Support for loading from local/global variables and arguments
395 // whose location is known unless they are shadowed by
396 // eval-introduced bindings. Generates no code for unsupported slot
397 // types and therefore expects to fall through to the slow jump target.
398 void EmitDynamicLoadFromSlotFastCase(Slot* slot,
399 TypeofState typeof_state,
403 // Special code for typeof expressions: Unfortunately, we must
404 // be careful when loading the expression in 'typeof'
405 // expressions. We are not allowed to throw reference errors for
406 // non-existing properties of the global object, so we must make it
407 // look like an explicit property access, instead of an access
408 // through the context chain.
409 void LoadTypeofExpression(Expression* x);
411 void ToBoolean(JumpTarget* true_target, JumpTarget* false_target);
413 // Generate code that computes a shortcutting logical operation.
414 void GenerateLogicalBooleanOperation(BinaryOperation* node);
416 void GenericBinaryOperation(Token::Value op,
417 OverwriteMode overwrite_mode,
418 GenerateInlineSmi inline_smi,
419 int known_rhs = kUnknownIntValue);
420 void Comparison(Condition cc,
423 bool strict = false);
425 void SmiOperation(Token::Value op,
426 Handle<Object> value,
430 void CallWithArguments(ZoneList<Expression*>* arguments,
431 CallFunctionFlags flags,
434 // An optimized implementation of expressions of the form
435 // x.apply(y, arguments). We call x the applicand and y the receiver.
436 // The optimization avoids allocating an arguments object if possible.
437 void CallApplyLazy(Expression* applicand,
438 Expression* receiver,
439 VariableProxy* arguments,
443 void Branch(bool if_true, JumpTarget* target);
446 struct InlineRuntimeLUT {
447 void (CodeGenerator::*method)(ZoneList<Expression*>*);
452 static InlineRuntimeLUT* FindInlineRuntimeLUT(Handle<String> name);
453 bool CheckForInlineRuntimeCall(CallRuntime* node);
454 static bool PatchInlineRuntimeEntry(Handle<String> name,
455 const InlineRuntimeLUT& new_entry,
456 InlineRuntimeLUT* old_entry);
458 static Handle<Code> ComputeLazyCompile(int argc);
459 void ProcessDeclarations(ZoneList<Declaration*>* declarations);
461 static Handle<Code> ComputeCallInitialize(int argc, InLoopFlag in_loop);
463 static Handle<Code> ComputeKeyedCallInitialize(int argc, InLoopFlag in_loop);
465 // Declare global variables and functions in the given array of
467 void DeclareGlobals(Handle<FixedArray> pairs);
469 // Instantiate the function based on the shared function info.
470 void InstantiateFunction(Handle<SharedFunctionInfo> function_info);
472 // Support for type checks.
473 void GenerateIsSmi(ZoneList<Expression*>* args);
474 void GenerateIsNonNegativeSmi(ZoneList<Expression*>* args);
475 void GenerateIsArray(ZoneList<Expression*>* args);
476 void GenerateIsRegExp(ZoneList<Expression*>* args);
477 void GenerateIsObject(ZoneList<Expression*>* args);
478 void GenerateIsSpecObject(ZoneList<Expression*>* args);
479 void GenerateIsFunction(ZoneList<Expression*>* args);
480 void GenerateIsUndetectableObject(ZoneList<Expression*>* args);
482 // Support for construct call checks.
483 void GenerateIsConstructCall(ZoneList<Expression*>* args);
485 // Support for arguments.length and arguments[?].
486 void GenerateArgumentsLength(ZoneList<Expression*>* args);
487 void GenerateArguments(ZoneList<Expression*>* args);
489 // Support for accessing the class and value fields of an object.
490 void GenerateClassOf(ZoneList<Expression*>* args);
491 void GenerateValueOf(ZoneList<Expression*>* args);
492 void GenerateSetValueOf(ZoneList<Expression*>* args);
494 // Fast support for charCodeAt(n).
495 void GenerateStringCharCodeAt(ZoneList<Expression*>* args);
497 // Fast support for string.charAt(n) and string[n].
498 void GenerateStringCharFromCode(ZoneList<Expression*>* args);
500 // Fast support for string.charAt(n) and string[n].
501 void GenerateStringCharAt(ZoneList<Expression*>* args);
503 // Fast support for object equality testing.
504 void GenerateObjectEquals(ZoneList<Expression*>* args);
506 void GenerateLog(ZoneList<Expression*>* args);
508 // Fast support for Math.random().
509 void GenerateRandomHeapNumber(ZoneList<Expression*>* args);
511 // Fast support for StringAdd.
512 void GenerateStringAdd(ZoneList<Expression*>* args);
514 // Fast support for SubString.
515 void GenerateSubString(ZoneList<Expression*>* args);
517 // Fast support for StringCompare.
518 void GenerateStringCompare(ZoneList<Expression*>* args);
520 // Support for direct calls from JavaScript to native RegExp code.
521 void GenerateRegExpExec(ZoneList<Expression*>* args);
523 void GenerateRegExpConstructResult(ZoneList<Expression*>* args);
525 // Support for fast native caches.
526 void GenerateGetFromCache(ZoneList<Expression*>* args);
528 // Fast support for number to string.
529 void GenerateNumberToString(ZoneList<Expression*>* args);
531 // Fast swapping of elements.
532 void GenerateSwapElements(ZoneList<Expression*>* args);
534 // Fast call for custom callbacks.
535 void GenerateCallFunction(ZoneList<Expression*>* args);
537 // Fast call to math functions.
538 void GenerateMathPow(ZoneList<Expression*>* args);
539 void GenerateMathSin(ZoneList<Expression*>* args);
540 void GenerateMathCos(ZoneList<Expression*>* args);
541 void GenerateMathSqrt(ZoneList<Expression*>* args);
543 // Simple condition analysis.
544 enum ConditionAnalysis {
549 ConditionAnalysis AnalyzeCondition(Expression* cond);
551 // Methods used to indicate which source code is generated for. Source
552 // positions are collected by the assembler and emitted with the relocation
554 void CodeForFunctionPosition(FunctionLiteral* fun);
555 void CodeForReturnPosition(FunctionLiteral* fun);
556 void CodeForStatementPosition(Statement* node);
557 void CodeForDoWhileConditionPosition(DoWhileStatement* stmt);
558 void CodeForSourcePosition(int pos);
561 // True if the registers are valid for entry to a block.
562 bool HasValidEntryRegisters();
565 List<DeferredCode*> deferred_;
568 MacroAssembler* masm_; // to generate code
570 CompilationInfo* info_;
572 // Code generation state
573 VirtualFrame* frame_;
574 RegisterAllocator* allocator_;
576 CodeGenState* state_;
579 Vector<TypeInfo>* type_info_;
582 BreakTarget function_return_;
584 // True if the function return is shadowed (ie, jumping to the target
585 // function_return_ does not jump to the true function return, but rather
586 // to some unlinking code).
587 bool function_return_is_shadowed_;
589 static InlineRuntimeLUT kInlineRuntimeLUT[];
591 friend class VirtualFrame;
592 friend class JumpTarget;
593 friend class Reference;
594 friend class FastCodeGenerator;
595 friend class FullCodeGenerator;
596 friend class FullCodeGenSyntaxChecker;
598 DISALLOW_COPY_AND_ASSIGN(CodeGenerator);
602 // Compute a transcendental math function natively, or call the
603 // TranscendentalCache runtime function.
604 class TranscendentalCacheStub: public CodeStub {
606 explicit TranscendentalCacheStub(TranscendentalCache::Type type)
608 void Generate(MacroAssembler* masm);
610 TranscendentalCache::Type type_;
611 Major MajorKey() { return TranscendentalCache; }
612 int MinorKey() { return type_; }
613 Runtime::FunctionId RuntimeFunction();
617 class GenericBinaryOpStub : public CodeStub {
619 GenericBinaryOpStub(Token::Value op,
623 int constant_rhs = CodeGenerator::kUnknownIntValue)
628 constant_rhs_(constant_rhs),
629 specialized_on_rhs_(RhsIsOneWeWantToOptimizeFor(op, constant_rhs)),
630 runtime_operands_type_(BinaryOpIC::DEFAULT),
633 GenericBinaryOpStub(int key, BinaryOpIC::TypeInfo type_info)
634 : op_(OpBits::decode(key)),
635 mode_(ModeBits::decode(key)),
636 lhs_(LhsRegister(RegisterBits::decode(key))),
637 rhs_(RhsRegister(RegisterBits::decode(key))),
638 constant_rhs_(KnownBitsForMinorKey(KnownIntBits::decode(key))),
639 specialized_on_rhs_(RhsIsOneWeWantToOptimizeFor(op_, constant_rhs_)),
640 runtime_operands_type_(type_info),
649 bool specialized_on_rhs_;
650 BinaryOpIC::TypeInfo runtime_operands_type_;
653 static const int kMaxKnownRhs = 0x40000000;
654 static const int kKnownRhsKeyBits = 6;
656 // Minor key encoding in 17 bits.
657 class ModeBits: public BitField<OverwriteMode, 0, 2> {};
658 class OpBits: public BitField<Token::Value, 2, 6> {};
659 class TypeInfoBits: public BitField<int, 8, 2> {};
660 class RegisterBits: public BitField<bool, 10, 1> {};
661 class KnownIntBits: public BitField<int, 11, kKnownRhsKeyBits> {};
663 Major MajorKey() { return GenericBinaryOp; }
665 ASSERT((lhs_.is(r0) && rhs_.is(r1)) ||
666 (lhs_.is(r1) && rhs_.is(r0)));
667 // Encode the parameters in a unique 18 bit value.
668 return OpBits::encode(op_)
669 | ModeBits::encode(mode_)
670 | KnownIntBits::encode(MinorKeyForKnownInt())
671 | TypeInfoBits::encode(runtime_operands_type_)
672 | RegisterBits::encode(lhs_.is(r0));
675 void Generate(MacroAssembler* masm);
676 void HandleNonSmiBitwiseOp(MacroAssembler* masm,
679 void HandleBinaryOpSlowCases(MacroAssembler* masm,
683 const Builtins::JavaScript& builtin);
684 void GenerateTypeTransition(MacroAssembler* masm);
686 static bool RhsIsOneWeWantToOptimizeFor(Token::Value op, int constant_rhs) {
687 if (constant_rhs == CodeGenerator::kUnknownIntValue) return false;
688 if (op == Token::DIV) return constant_rhs >= 2 && constant_rhs <= 3;
689 if (op == Token::MOD) {
690 if (constant_rhs <= 1) return false;
691 if (constant_rhs <= 10) return true;
692 if (constant_rhs <= kMaxKnownRhs && IsPowerOf2(constant_rhs)) return true;
698 int MinorKeyForKnownInt() {
699 if (!specialized_on_rhs_) return 0;
700 if (constant_rhs_ <= 10) return constant_rhs_ + 1;
701 ASSERT(IsPowerOf2(constant_rhs_));
703 int d = constant_rhs_;
704 while ((d & 1) == 0) {
708 ASSERT(key >= 0 && key < (1 << kKnownRhsKeyBits));
712 int KnownBitsForMinorKey(int key) {
714 if (key <= 11) return key - 1;
723 Register LhsRegister(bool lhs_is_r0) {
724 return lhs_is_r0 ? r0 : r1;
727 Register RhsRegister(bool lhs_is_r0) {
728 return lhs_is_r0 ? r1 : r0;
731 bool ShouldGenerateSmiCode() {
732 return ((op_ != Token::DIV && op_ != Token::MOD) || specialized_on_rhs_) &&
733 runtime_operands_type_ != BinaryOpIC::HEAP_NUMBERS &&
734 runtime_operands_type_ != BinaryOpIC::STRINGS;
737 bool ShouldGenerateFPCode() {
738 return runtime_operands_type_ != BinaryOpIC::STRINGS;
741 virtual int GetCodeKind() { return Code::BINARY_OP_IC; }
743 virtual InlineCacheState GetICState() {
744 return BinaryOpIC::ToState(runtime_operands_type_);
747 const char* GetName();
751 if (!specialized_on_rhs_) {
752 PrintF("GenericBinaryOpStub (%s)\n", Token::String(op_));
754 PrintF("GenericBinaryOpStub (%s by %d)\n",
763 class StringHelper : public AllStatic {
765 // Generate code for copying characters using a simple loop. This should only
766 // be used in places where the number of characters is small and the
767 // additional setup and checking in GenerateCopyCharactersLong adds too much
768 // overhead. Copying of overlapping regions is not supported.
769 // Dest register ends at the position after the last character written.
770 static void GenerateCopyCharacters(MacroAssembler* masm,
777 // Generate code for copying a large number of characters. This function
778 // is allowed to spend extra time setting up conditions to make copying
779 // faster. Copying of overlapping regions is not supported.
780 // Dest register ends at the position after the last character written.
781 static void GenerateCopyCharactersLong(MacroAssembler* masm,
793 // Probe the symbol table for a two character string. If the string is
794 // not found by probing a jump to the label not_found is performed. This jump
795 // does not guarantee that the string is not in the symbol table. If the
796 // string is found the code falls through with the string in register r0.
797 // Contents of both c1 and c2 registers are modified. At the exit c1 is
798 // guaranteed to contain halfword with low and high bytes equal to
799 // initial contents of c1 and c2 respectively.
800 static void GenerateTwoCharacterSymbolTableProbe(MacroAssembler* masm,
810 // Generate string hash.
811 static void GenerateHashInit(MacroAssembler* masm,
815 static void GenerateHashAddCharacter(MacroAssembler* masm,
819 static void GenerateHashGetHash(MacroAssembler* masm,
823 DISALLOW_IMPLICIT_CONSTRUCTORS(StringHelper);
827 // Flag that indicates how to generate code for the stub StringAddStub.
828 enum StringAddFlags {
829 NO_STRING_ADD_FLAGS = 0,
830 NO_STRING_CHECK_IN_STUB = 1 << 0 // Omit string check in stub.
834 class StringAddStub: public CodeStub {
836 explicit StringAddStub(StringAddFlags flags) {
837 string_check_ = ((flags & NO_STRING_CHECK_IN_STUB) == 0);
841 Major MajorKey() { return StringAdd; }
842 int MinorKey() { return string_check_ ? 0 : 1; }
844 void Generate(MacroAssembler* masm);
846 // Should the stub check whether arguments are strings?
851 class SubStringStub: public CodeStub {
856 Major MajorKey() { return SubString; }
857 int MinorKey() { return 0; }
859 void Generate(MacroAssembler* masm);
864 class StringCompareStub: public CodeStub {
866 StringCompareStub() { }
868 // Compare two flat ASCII strings and returns result in r0.
869 // Does not use the stack.
870 static void GenerateCompareFlatAsciiStrings(MacroAssembler* masm,
879 Major MajorKey() { return StringCompare; }
880 int MinorKey() { return 0; }
882 void Generate(MacroAssembler* masm);
886 // This stub can do a fast mod operation without using fp.
887 // It is tail called from the GenericBinaryOpStub and it always
888 // returns an answer. It never causes GC so it doesn't need a real frame.
890 // The inputs are always positive Smis. This is never called
891 // where the denominator is a power of 2. We handle that separately.
893 // If we consider the denominator as an odd number multiplied by a power of 2,
895 // * The exponent (power of 2) is in the shift_distance register.
896 // * The odd number is in the odd_number register. It is always in the range
898 // * The bits from the numerator that are to be copied to the answer (there are
899 // shift_distance of them) are in the mask_bits register.
900 // * The other bits of the numerator have been shifted down and are in the lhs
902 class IntegerModStub : public CodeStub {
904 IntegerModStub(Register result,
905 Register shift_distance,
911 shift_distance_(shift_distance),
912 odd_number_(odd_number),
913 mask_bits_(mask_bits),
916 // We don't code these in the minor key, so they should always be the same.
917 // We don't really want to fix that since this stub is rather large and we
918 // don't want many copies of it.
919 ASSERT(shift_distance_.is(r9));
920 ASSERT(odd_number_.is(r4));
921 ASSERT(mask_bits_.is(r3));
922 ASSERT(scratch_.is(r5));
927 Register shift_distance_;
928 Register odd_number_;
933 // Minor key encoding in 16 bits.
934 class ResultRegisterBits: public BitField<int, 0, 4> {};
935 class LhsRegisterBits: public BitField<int, 4, 4> {};
937 Major MajorKey() { return IntegerMod; }
939 // Encode the parameters in a unique 16 bit value.
940 return ResultRegisterBits::encode(result_.code())
941 | LhsRegisterBits::encode(lhs_.code());
944 void Generate(MacroAssembler* masm);
946 const char* GetName() { return "IntegerModStub"; }
948 // Utility functions.
949 void DigitSum(MacroAssembler* masm,
954 void DigitSum(MacroAssembler* masm,
961 void ModGetInRangeBySubtraction(MacroAssembler* masm,
965 void ModReduce(MacroAssembler* masm,
969 void ModAnswer(MacroAssembler* masm,
971 Register shift_distance,
973 Register sum_of_digits);
977 void Print() { PrintF("IntegerModStub\n"); }
982 // This stub can convert a signed int32 to a heap number (double). It does
983 // not work for int32s that are in Smi range! No GC occurs during this stub
984 // so you don't have to set up the frame.
985 class WriteInt32ToHeapNumberStub : public CodeStub {
987 WriteInt32ToHeapNumberStub(Register the_int,
988 Register the_heap_number,
991 the_heap_number_(the_heap_number),
992 scratch_(scratch) { }
996 Register the_heap_number_;
999 // Minor key encoding in 16 bits.
1000 class IntRegisterBits: public BitField<int, 0, 4> {};
1001 class HeapNumberRegisterBits: public BitField<int, 4, 4> {};
1002 class ScratchRegisterBits: public BitField<int, 8, 4> {};
1004 Major MajorKey() { return WriteInt32ToHeapNumber; }
1006 // Encode the parameters in a unique 16 bit value.
1007 return IntRegisterBits::encode(the_int_.code())
1008 | HeapNumberRegisterBits::encode(the_heap_number_.code())
1009 | ScratchRegisterBits::encode(scratch_.code());
1012 void Generate(MacroAssembler* masm);
1014 const char* GetName() { return "WriteInt32ToHeapNumberStub"; }
1017 void Print() { PrintF("WriteInt32ToHeapNumberStub\n"); }
1022 class NumberToStringStub: public CodeStub {
1024 NumberToStringStub() { }
1026 // Generate code to do a lookup in the number string cache. If the number in
1027 // the register object is found in the cache the generated code falls through
1028 // with the result in the result register. The object and the result register
1029 // can be the same. If the number is not found in the cache the code jumps to
1030 // the label not_found with only the content of register object unchanged.
1031 static void GenerateLookupNumberStringCache(MacroAssembler* masm,
1041 Major MajorKey() { return NumberToString; }
1042 int MinorKey() { return 0; }
1044 void Generate(MacroAssembler* masm);
1046 const char* GetName() { return "NumberToStringStub"; }
1050 PrintF("NumberToStringStub\n");
1056 class RecordWriteStub : public CodeStub {
1058 RecordWriteStub(Register object, Register offset, Register scratch)
1059 : object_(object), offset_(offset), scratch_(scratch) { }
1061 void Generate(MacroAssembler* masm);
1070 PrintF("RecordWriteStub (object reg %d), (offset reg %d),"
1071 " (scratch reg %d)\n",
1072 object_.code(), offset_.code(), scratch_.code());
1076 // Minor key encoding in 12 bits. 4 bits for each of the three
1077 // registers (object, offset and scratch) OOOOAAAASSSS.
1078 class ScratchBits: public BitField<uint32_t, 0, 4> {};
1079 class OffsetBits: public BitField<uint32_t, 4, 4> {};
1080 class ObjectBits: public BitField<uint32_t, 8, 4> {};
1082 Major MajorKey() { return RecordWrite; }
1085 // Encode the registers.
1086 return ObjectBits::encode(object_.code()) |
1087 OffsetBits::encode(offset_.code()) |
1088 ScratchBits::encode(scratch_.code());
1093 } } // namespace v8::internal
1095 #endif // V8_ARM_CODEGEN_ARM_H_