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

Side by Side Diff: src/arm/macro-assembler-arm.h

Issue 1706013: Changing string length field type from int to SMI. It will make it be a regu... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 const ParameterCount& actual, 565 const ParameterCount& actual,
566 Handle<Code> code_constant, 566 Handle<Code> code_constant,
567 Register code_reg, 567 Register code_reg,
568 Label* done, 568 Label* done,
569 InvokeFlag flag); 569 InvokeFlag flag);
570 570
571 // Activation support. 571 // Activation support.
572 void EnterFrame(StackFrame::Type type); 572 void EnterFrame(StackFrame::Type type);
573 void LeaveFrame(StackFrame::Type type); 573 void LeaveFrame(StackFrame::Type type);
574 574
575 void InitializeNewString(Register string,
576 Register length,
577 Heap::RootListIndex map_index,
578 Register scratch1,
579 Register scratch2);
580
575 bool generating_stub_; 581 bool generating_stub_;
576 bool allow_stub_calls_; 582 bool allow_stub_calls_;
577 // This handle will be patched with the code object on installation. 583 // This handle will be patched with the code object on installation.
578 Handle<Object> code_object_; 584 Handle<Object> code_object_;
579 }; 585 };
580 586
581 587
582 #ifdef ENABLE_DEBUGGER_SUPPORT 588 #ifdef ENABLE_DEBUGGER_SUPPORT
583 // The code patcher is used to patch (typically) small parts of code e.g. for 589 // The code patcher is used to patch (typically) small parts of code e.g. for
584 // debugging and other types of instrumentation. When using the code patcher 590 // debugging and other types of instrumentation. When using the code patcher
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 623 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
618 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 624 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
619 #else 625 #else
620 #define ACCESS_MASM(masm) masm-> 626 #define ACCESS_MASM(masm) masm->
621 #endif 627 #endif
622 628
623 629
624 } } // namespace v8::internal 630 } } // namespace v8::internal
625 631
626 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 632 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698