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

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

Issue 6597029: [Isolates] Merge r 6300:6500 from bleeding_edge to isolates. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: Created 9 years, 10 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/builtins.cc ('k') | src/code-stubs.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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 592
593 void Generate(MacroAssembler* masm); 593 void Generate(MacroAssembler* masm);
594 void SaveDoubles() { save_doubles_ = true; } 594 void SaveDoubles() { save_doubles_ = true; }
595 595
596 private: 596 private:
597 void GenerateCore(MacroAssembler* masm, 597 void GenerateCore(MacroAssembler* masm,
598 Label* throw_normal_exception, 598 Label* throw_normal_exception,
599 Label* throw_termination_exception, 599 Label* throw_termination_exception,
600 Label* throw_out_of_memory_exception, 600 Label* throw_out_of_memory_exception,
601 bool do_gc, 601 bool do_gc,
602 bool always_allocate_scope, 602 bool always_allocate_scope);
603 int alignment_skew = 0);
604 void GenerateThrowTOS(MacroAssembler* masm); 603 void GenerateThrowTOS(MacroAssembler* masm);
605 void GenerateThrowUncatchable(MacroAssembler* masm, 604 void GenerateThrowUncatchable(MacroAssembler* masm,
606 UncatchableExceptionType type); 605 UncatchableExceptionType type);
607 606
608 // Number of pointers/values returned. 607 // Number of pointers/values returned.
609 const int result_size_; 608 const int result_size_;
610 bool save_doubles_; 609 bool save_doubles_;
611 610
612 Major MajorKey() { return CEntry; } 611 Major MajorKey() { return CEntry; }
613 int MinorKey(); 612 int MinorKey();
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 private: 929 private:
931 MacroAssembler* masm_; 930 MacroAssembler* masm_;
932 bool previous_allow_; 931 bool previous_allow_;
933 932
934 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); 933 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope);
935 }; 934 };
936 935
937 } } // namespace v8::internal 936 } } // namespace v8::internal
938 937
939 #endif // V8_CODE_STUBS_H_ 938 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/code-stubs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698