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

Side by Side Diff: src/hydrogen-instructions.h

Issue 9234025: Silence warning from presubmit lint script (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix copyright Created 8 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 | « no previous file | no next file » | 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 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 // added to the graph. Reflects creation order. 757 // added to the graph. Reflects creation order.
758 int id_; 758 int id_;
759 759
760 Representation representation_; 760 Representation representation_;
761 HType type_; 761 HType type_;
762 HUseListNode* use_list_; 762 HUseListNode* use_list_;
763 Range* range_; 763 Range* range_;
764 int flags_; 764 int flags_;
765 GVNFlagSet gvn_flags_; 765 GVNFlagSet gvn_flags_;
766 766
767 private:
767 DISALLOW_COPY_AND_ASSIGN(HValue); 768 DISALLOW_COPY_AND_ASSIGN(HValue);
768 }; 769 };
769 770
770 771
771 class HInstruction: public HValue { 772 class HInstruction: public HValue {
772 public: 773 public:
773 HInstruction* next() const { return next_; } 774 HInstruction* next() const { return next_; }
774 HInstruction* previous() const { return previous_; } 775 HInstruction* previous() const { return previous_; }
775 776
776 virtual void PrintTo(StringStream* stream); 777 virtual void PrintTo(StringStream* stream);
(...skipping 3780 matching lines...) Expand 10 before | Expand all | Expand 10 after
4557 4558
4558 DECLARE_CONCRETE_INSTRUCTION(In) 4559 DECLARE_CONCRETE_INSTRUCTION(In)
4559 }; 4560 };
4560 4561
4561 #undef DECLARE_INSTRUCTION 4562 #undef DECLARE_INSTRUCTION
4562 #undef DECLARE_CONCRETE_INSTRUCTION 4563 #undef DECLARE_CONCRETE_INSTRUCTION
4563 4564
4564 } } // namespace v8::internal 4565 } } // namespace v8::internal
4565 4566
4566 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ 4567 #endif // V8_HYDROGEN_INSTRUCTIONS_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698