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

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

Issue 5908001: Fix issue 977, occasional failure of the DeltaBlue benchmark. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge/build/ia32
Patch Set: Created 10 years 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
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 // HCallFunction 87 // HCallFunction
88 // HCallGlobal 88 // HCallGlobal
89 // HCallKeyed 89 // HCallKeyed
90 // HCallKnownGlobal 90 // HCallKnownGlobal
91 // HCallNamed 91 // HCallNamed
92 // HCallNew 92 // HCallNew
93 // HCallRuntime 93 // HCallRuntime
94 // HCallStub 94 // HCallStub
95 // HConstant 95 // HConstant
96 // HControlInstruction 96 // HControlInstruction
97 // HDeoptimize
97 // HGoto 98 // HGoto
98 // HUnaryControlInstruction 99 // HUnaryControlInstruction
99 // HBranch 100 // HBranch
100 // HCompareMapAndBranch 101 // HCompareMapAndBranch
101 // HReturn 102 // HReturn
102 // HThrow 103 // HThrow
103 // HDeoptimize
104 // HEnterInlined 104 // HEnterInlined
105 // HFunctionLiteral 105 // HFunctionLiteral
106 // HGlobalObject 106 // HGlobalObject
107 // HGlobalReceiver 107 // HGlobalReceiver
108 // HLeaveInlined 108 // HLeaveInlined
109 // HLoadGlobal 109 // HLoadGlobal
110 // HMaterializedLiteral 110 // HMaterializedLiteral
111 // HArrayLiteral 111 // HArrayLiteral
112 // HObjectLiteral 112 // HObjectLiteral
113 // HRegExpLiteral 113 // HRegExpLiteral
(...skipping 2796 matching lines...) Expand 10 before | Expand all | Expand 10 after
2910 HValue* object() const { return left(); } 2910 HValue* object() const { return left(); }
2911 HValue* key() const { return right(); } 2911 HValue* key() const { return right(); }
2912 }; 2912 };
2913 2913
2914 #undef DECLARE_INSTRUCTION 2914 #undef DECLARE_INSTRUCTION
2915 #undef DECLARE_CONCRETE_INSTRUCTION 2915 #undef DECLARE_CONCRETE_INSTRUCTION
2916 2916
2917 } } // namespace v8::internal 2917 } } // namespace v8::internal
2918 2918
2919 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ 2919 #endif // V8_HYDROGEN_INSTRUCTIONS_H_
OLDNEW
« src/hydrogen.cc ('K') | « src/hydrogen.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698