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

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

Issue 23014007: Rename "parallel recompilation" to "concurrent recompilation". (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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/hydrogen.cc ('k') | src/ia32/builtins-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 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 864 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 875
876 // This gives the instruction an opportunity to replace itself with an 876 // This gives the instruction an opportunity to replace itself with an
877 // instruction that does the same in some better way. To replace an 877 // instruction that does the same in some better way. To replace an
878 // instruction with a new one, first add the new instruction to the graph, 878 // instruction with a new one, first add the new instruction to the graph,
879 // then return it. Return NULL to have the instruction deleted. 879 // then return it. Return NULL to have the instruction deleted.
880 virtual HValue* Canonicalize() { return this; } 880 virtual HValue* Canonicalize() { return this; }
881 881
882 bool Equals(HValue* other); 882 bool Equals(HValue* other);
883 virtual intptr_t Hashcode(); 883 virtual intptr_t Hashcode();
884 884
885 // Compute unique ids upfront that is safe wrt GC and parallel recompilation. 885 // Compute unique ids upfront that is safe wrt GC and concurrent compilation.
886 virtual void FinalizeUniqueValueId() { } 886 virtual void FinalizeUniqueValueId() { }
887 887
888 // Printing support. 888 // Printing support.
889 virtual void PrintTo(StringStream* stream) = 0; 889 virtual void PrintTo(StringStream* stream) = 0;
890 void PrintNameTo(StringStream* stream); 890 void PrintNameTo(StringStream* stream);
891 void PrintTypeTo(StringStream* stream); 891 void PrintTypeTo(StringStream* stream);
892 void PrintRangeTo(StringStream* stream); 892 void PrintRangeTo(StringStream* stream);
893 void PrintChangesTo(StringStream* stream); 893 void PrintChangesTo(StringStream* stream);
894 894
895 const char* Mnemonic() const; 895 const char* Mnemonic() const;
(...skipping 5900 matching lines...) Expand 10 before | Expand all | Expand 10 after
6796 virtual bool IsDeletable() const V8_OVERRIDE { return true; } 6796 virtual bool IsDeletable() const V8_OVERRIDE { return true; }
6797 }; 6797 };
6798 6798
6799 6799
6800 #undef DECLARE_INSTRUCTION 6800 #undef DECLARE_INSTRUCTION
6801 #undef DECLARE_CONCRETE_INSTRUCTION 6801 #undef DECLARE_CONCRETE_INSTRUCTION
6802 6802
6803 } } // namespace v8::internal 6803 } } // namespace v8::internal
6804 6804
6805 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ 6805 #endif // V8_HYDROGEN_INSTRUCTIONS_H_
OLDNEW
« no previous file with comments | « src/hydrogen.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698