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

Side by Side Diff: src/crankshaft/hydrogen.h

Issue 1828253002: [builtins] Provide Math.floor as TurboFan builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Address feedback. Created 4 years, 8 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/counters.h ('k') | src/crankshaft/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_CRANKSHAFT_HYDROGEN_H_ 5 #ifndef V8_CRANKSHAFT_HYDROGEN_H_
6 #define V8_CRANKSHAFT_HYDROGEN_H_ 6 #define V8_CRANKSHAFT_HYDROGEN_H_
7 7
8 #include "src/accessors.h" 8 #include "src/accessors.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/ast/ast.h" 10 #include "src/ast/ast.h"
(...skipping 2251 matching lines...) Expand 10 before | Expand all | Expand 10 after
2262 F(ArrayBufferViewGetByteLength) \ 2262 F(ArrayBufferViewGetByteLength) \
2263 F(ArrayBufferViewGetByteOffset) \ 2263 F(ArrayBufferViewGetByteOffset) \
2264 F(TypedArrayGetLength) \ 2264 F(TypedArrayGetLength) \
2265 /* ArrayBuffer */ \ 2265 /* ArrayBuffer */ \
2266 F(ArrayBufferGetByteLength) \ 2266 F(ArrayBufferGetByteLength) \
2267 /* Maths */ \ 2267 /* Maths */ \
2268 F(ConstructDouble) \ 2268 F(ConstructDouble) \
2269 F(DoubleHi) \ 2269 F(DoubleHi) \
2270 F(DoubleLo) \ 2270 F(DoubleLo) \
2271 F(MathClz32) \ 2271 F(MathClz32) \
2272 F(MathFloor) \
2273 F(MathLogRT) \ 2272 F(MathLogRT) \
2274 /* ES6 Collections */ \ 2273 /* ES6 Collections */ \
2275 F(MapClear) \ 2274 F(MapClear) \
2276 F(MapInitialize) \ 2275 F(MapInitialize) \
2277 F(SetClear) \ 2276 F(SetClear) \
2278 F(SetInitialize) \ 2277 F(SetInitialize) \
2279 F(FixedArrayGet) \ 2278 F(FixedArrayGet) \
2280 F(FixedArraySet) \ 2279 F(FixedArraySet) \
2281 F(JSCollectionGetTable) \ 2280 F(JSCollectionGetTable) \
2282 F(StringGetRawHashField) \ 2281 F(StringGetRawHashField) \
(...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after
3086 } 3085 }
3087 3086
3088 private: 3087 private:
3089 HOptimizedGraphBuilder* builder_; 3088 HOptimizedGraphBuilder* builder_;
3090 }; 3089 };
3091 3090
3092 } // namespace internal 3091 } // namespace internal
3093 } // namespace v8 3092 } // namespace v8
3094 3093
3095 #endif // V8_CRANKSHAFT_HYDROGEN_H_ 3094 #endif // V8_CRANKSHAFT_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/counters.h ('k') | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698