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

Side by Side Diff: src/hydrogen.h

Issue 1053143005: Collect type feedback on result of Math.[round|ceil|floor] (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: MIPS port Created 5 years, 7 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
« no previous file with comments | « src/code-stubs.cc ('k') | src/hydrogen.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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_HYDROGEN_H_ 5 #ifndef V8_HYDROGEN_H_
6 #define V8_HYDROGEN_H_ 6 #define V8_HYDROGEN_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/accessors.h" 10 #include "src/accessors.h"
(...skipping 2206 matching lines...) Expand 10 before | Expand all | Expand 10 after
2217 F(ArrayBufferViewGetByteLength) \ 2217 F(ArrayBufferViewGetByteLength) \
2218 F(ArrayBufferViewGetByteOffset) \ 2218 F(ArrayBufferViewGetByteOffset) \
2219 F(TypedArrayGetLength) \ 2219 F(TypedArrayGetLength) \
2220 /* ArrayBuffer */ \ 2220 /* ArrayBuffer */ \
2221 F(ArrayBufferGetByteLength) \ 2221 F(ArrayBufferGetByteLength) \
2222 /* Maths */ \ 2222 /* Maths */ \
2223 F(ConstructDouble) \ 2223 F(ConstructDouble) \
2224 F(DoubleHi) \ 2224 F(DoubleHi) \
2225 F(DoubleLo) \ 2225 F(DoubleLo) \
2226 F(MathClz32) \ 2226 F(MathClz32) \
2227 F(MathFloor) \
2228 F(MathSqrt) \ 2227 F(MathSqrt) \
2229 F(MathLogRT) \ 2228 F(MathLogRT) \
2230 /* ES6 Collections */ \ 2229 /* ES6 Collections */ \
2231 F(MapClear) \ 2230 F(MapClear) \
2232 F(MapInitialize) \ 2231 F(MapInitialize) \
2233 F(SetClear) \ 2232 F(SetClear) \
2234 F(SetInitialize) \ 2233 F(SetInitialize) \
2235 F(FixedArrayGet) \ 2234 F(FixedArrayGet) \
2236 F(FixedArraySet) \ 2235 F(FixedArraySet) \
2237 F(JSCollectionGetTable) \ 2236 F(JSCollectionGetTable) \
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
3048 } 3047 }
3049 3048
3050 private: 3049 private:
3051 HGraphBuilder* builder_; 3050 HGraphBuilder* builder_;
3052 }; 3051 };
3053 3052
3054 3053
3055 } } // namespace v8::internal 3054 } } // namespace v8::internal
3056 3055
3057 #endif // V8_HYDROGEN_H_ 3056 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698