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

Side by Side Diff: src/lithium.h

Issue 14307006: Make it possible to Crankshaft all kinds of stubs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback Created 7 years, 8 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/ia32/code-stubs-ia32.h ('k') | src/lithium.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 const ZoneList<Handle<JSFunction> >* inlined_closures() const { 678 const ZoneList<Handle<JSFunction> >* inlined_closures() const {
679 return &inlined_closures_; 679 return &inlined_closures_;
680 } 680 }
681 681
682 void AddInlinedClosure(Handle<JSFunction> closure) { 682 void AddInlinedClosure(Handle<JSFunction> closure) {
683 inlined_closures_.Add(closure, zone()); 683 inlined_closures_.Add(closure, zone());
684 } 684 }
685 685
686 Zone* zone() const { return info_->zone(); } 686 Zone* zone() const { return info_->zone(); }
687 687
688 Handle<Code> Codegen(Code::Kind kind); 688 Handle<Code> Codegen();
689 689
690 void set_allocated_double_registers(BitVector* allocated_registers); 690 void set_allocated_double_registers(BitVector* allocated_registers);
691 BitVector* allocated_double_registers() { 691 BitVector* allocated_double_registers() {
692 return allocated_double_registers_; 692 return allocated_double_registers_;
693 } 693 }
694 694
695 protected: 695 protected:
696 LChunk(CompilationInfo* info, HGraph* graph); 696 LChunk(CompilationInfo* info, HGraph* graph);
697 697
698 int spill_slot_count_; 698 int spill_slot_count_;
(...skipping 15 matching lines...) Expand all
714 NUMBER_CANDIDATE_IS_SMI, 714 NUMBER_CANDIDATE_IS_SMI,
715 NUMBER_CANDIDATE_IS_SMI_OR_HOLE, 715 NUMBER_CANDIDATE_IS_SMI_OR_HOLE,
716 NUMBER_CANDIDATE_IS_SMI_CONVERT_HOLE, 716 NUMBER_CANDIDATE_IS_SMI_CONVERT_HOLE,
717 NUMBER_CANDIDATE_IS_ANY_TAGGED 717 NUMBER_CANDIDATE_IS_ANY_TAGGED
718 }; 718 };
719 719
720 720
721 } } // namespace v8::internal 721 } } // namespace v8::internal
722 722
723 #endif // V8_LITHIUM_H_ 723 #endif // V8_LITHIUM_H_
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.h ('k') | src/lithium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698