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

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

Issue 6639023: Merge revisions 7089, 7095, 7096 to trunk.... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 9 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 | « no previous file | src/ia32/macro-assembler-ia32.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 bool generating_stub_; 639 bool generating_stub_;
640 bool allow_stub_calls_; 640 bool allow_stub_calls_;
641 // This handle will be patched with the code object on installation. 641 // This handle will be patched with the code object on installation.
642 Handle<Object> code_object_; 642 Handle<Object> code_object_;
643 643
644 // Helper functions for generating invokes. 644 // Helper functions for generating invokes.
645 void InvokePrologue(const ParameterCount& expected, 645 void InvokePrologue(const ParameterCount& expected,
646 const ParameterCount& actual, 646 const ParameterCount& actual,
647 Handle<Code> code_constant, 647 Handle<Code> code_constant,
648 const Operand& code_operand, 648 const Operand& code_operand,
649 Label* done, 649 NearLabel* done,
650 InvokeFlag flag, 650 InvokeFlag flag,
651 PostCallGenerator* post_call_generator = NULL); 651 PostCallGenerator* post_call_generator = NULL);
652 652
653 // Activation support. 653 // Activation support.
654 void EnterFrame(StackFrame::Type type); 654 void EnterFrame(StackFrame::Type type);
655 void LeaveFrame(StackFrame::Type type); 655 void LeaveFrame(StackFrame::Type type);
656 656
657 void EnterExitFramePrologue(); 657 void EnterExitFramePrologue();
658 void EnterExitFrameEpilogue(int argc, bool save_doubles); 658 void EnterExitFrameEpilogue(int argc, bool save_doubles);
659 659
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 } \ 789 } \
790 masm-> 790 masm->
791 #else 791 #else
792 #define ACCESS_MASM(masm) masm-> 792 #define ACCESS_MASM(masm) masm->
793 #endif 793 #endif
794 794
795 795
796 } } // namespace v8::internal 796 } } // namespace v8::internal
797 797
798 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 798 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698