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

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: Tweaks 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
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 2201 matching lines...) Expand 10 before | Expand all | Expand 10 after
2212 F(ArrayBufferViewGetByteLength) \ 2212 F(ArrayBufferViewGetByteLength) \
2213 F(ArrayBufferViewGetByteOffset) \ 2213 F(ArrayBufferViewGetByteOffset) \
2214 F(TypedArrayGetLength) \ 2214 F(TypedArrayGetLength) \
2215 /* ArrayBuffer */ \ 2215 /* ArrayBuffer */ \
2216 F(ArrayBufferGetByteLength) \ 2216 F(ArrayBufferGetByteLength) \
2217 /* Maths */ \ 2217 /* Maths */ \
2218 F(ConstructDouble) \ 2218 F(ConstructDouble) \
2219 F(DoubleHi) \ 2219 F(DoubleHi) \
2220 F(DoubleLo) \ 2220 F(DoubleLo) \
2221 F(MathClz32) \ 2221 F(MathClz32) \
2222 F(MathFloor) \
2223 F(MathSqrt) \ 2222 F(MathSqrt) \
2224 F(MathLogRT) \ 2223 F(MathLogRT) \
2225 /* ES6 Collections */ \ 2224 /* ES6 Collections */ \
2226 F(MapClear) \ 2225 F(MapClear) \
2227 F(MapInitialize) \ 2226 F(MapInitialize) \
2228 F(SetClear) \ 2227 F(SetClear) \
2229 F(SetInitialize) \ 2228 F(SetInitialize) \
2230 F(FixedArrayGet) \ 2229 F(FixedArrayGet) \
2231 F(FixedArraySet) \ 2230 F(FixedArraySet) \
2232 F(JSCollectionGetTable) \ 2231 F(JSCollectionGetTable) \
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after
3036 } 3035 }
3037 3036
3038 private: 3037 private:
3039 HGraphBuilder* builder_; 3038 HGraphBuilder* builder_;
3040 }; 3039 };
3041 3040
3042 3041
3043 } } // namespace v8::internal 3042 } } // namespace v8::internal
3044 3043
3045 #endif // V8_HYDROGEN_H_ 3044 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/code-stubs.cc ('k') | src/hydrogen.cc » ('j') | src/ia32/code-stubs-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698