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

Side by Side Diff: src/code-stubs.h

Issue 6247019: Change ARM exit frame layout and alingment handling... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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/macro-assembler-arm.cc ('k') | src/ia32/code-stubs-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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 593
594 void Generate(MacroAssembler* masm); 594 void Generate(MacroAssembler* masm);
595 void SaveDoubles() { save_doubles_ = true; } 595 void SaveDoubles() { save_doubles_ = true; }
596 596
597 private: 597 private:
598 void GenerateCore(MacroAssembler* masm, 598 void GenerateCore(MacroAssembler* masm,
599 Label* throw_normal_exception, 599 Label* throw_normal_exception,
600 Label* throw_termination_exception, 600 Label* throw_termination_exception,
601 Label* throw_out_of_memory_exception, 601 Label* throw_out_of_memory_exception,
602 bool do_gc, 602 bool do_gc,
603 bool always_allocate_scope, 603 bool always_allocate_scope);
604 int alignment_skew = 0);
605 void GenerateThrowTOS(MacroAssembler* masm); 604 void GenerateThrowTOS(MacroAssembler* masm);
606 void GenerateThrowUncatchable(MacroAssembler* masm, 605 void GenerateThrowUncatchable(MacroAssembler* masm,
607 UncatchableExceptionType type); 606 UncatchableExceptionType type);
608 607
609 // Number of pointers/values returned. 608 // Number of pointers/values returned.
610 const int result_size_; 609 const int result_size_;
611 bool save_doubles_; 610 bool save_doubles_;
612 611
613 Major MajorKey() { return CEntry; } 612 Major MajorKey() { return CEntry; }
614 int MinorKey(); 613 int MinorKey();
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 private: 930 private:
932 MacroAssembler* masm_; 931 MacroAssembler* masm_;
933 bool previous_allow_; 932 bool previous_allow_;
934 933
935 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); 934 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope);
936 }; 935 };
937 936
938 } } // namespace v8::internal 937 } } // namespace v8::internal
939 938
940 #endif // V8_CODE_STUBS_H_ 939 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698