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

Side by Side Diff: src/hydrogen.h

Issue 1021183002: [turbofan] Turn Math.clz32 into an inlinable builtin. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 9 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/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 2194 matching lines...) Expand 10 before | Expand all | Expand 10 after
2205 F(TypedArrayMaxSizeInHeap) \ 2205 F(TypedArrayMaxSizeInHeap) \
2206 F(ArrayBufferViewGetByteLength) \ 2206 F(ArrayBufferViewGetByteLength) \
2207 F(ArrayBufferViewGetByteOffset) \ 2207 F(ArrayBufferViewGetByteOffset) \
2208 F(TypedArrayGetLength) \ 2208 F(TypedArrayGetLength) \
2209 /* ArrayBuffer */ \ 2209 /* ArrayBuffer */ \
2210 F(ArrayBufferGetByteLength) \ 2210 F(ArrayBufferGetByteLength) \
2211 /* Maths */ \ 2211 /* Maths */ \
2212 F(ConstructDouble) \ 2212 F(ConstructDouble) \
2213 F(DoubleHi) \ 2213 F(DoubleHi) \
2214 F(DoubleLo) \ 2214 F(DoubleLo) \
2215 F(MathClz32) \
2215 F(MathFloor) \ 2216 F(MathFloor) \
2216 F(MathSqrt) \ 2217 F(MathSqrt) \
2217 F(MathLogRT) \ 2218 F(MathLogRT) \
2218 /* ES6 Collections */ \ 2219 /* ES6 Collections */ \
2219 F(MapClear) \ 2220 F(MapClear) \
2220 F(MapDelete) \ 2221 F(MapDelete) \
2221 F(MapGet) \ 2222 F(MapGet) \
2222 F(MapGetSize) \ 2223 F(MapGetSize) \
2223 F(MapHas) \ 2224 F(MapHas) \
2224 F(MapInitialize) \ 2225 F(MapInitialize) \
(...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
3030 } 3031 }
3031 3032
3032 private: 3033 private:
3033 HGraphBuilder* builder_; 3034 HGraphBuilder* builder_;
3034 }; 3035 };
3035 3036
3036 3037
3037 } } // namespace v8::internal 3038 } } // namespace v8::internal
3038 3039
3039 #endif // V8_HYDROGEN_H_ 3040 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/counters.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698