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

Side by Side Diff: src/hydrogen.h

Issue 1304633002: Correctify instanceof and make it optimizable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add arm64 port. Created 5 years, 4 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/accessors.h" 8 #include "src/accessors.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/ast.h" 10 #include "src/ast.h"
(...skipping 2196 matching lines...) Expand 10 before | Expand all | Expand 10 after
2207 F(StringCharCodeAt) \ 2207 F(StringCharCodeAt) \
2208 F(StringAdd) \ 2208 F(StringAdd) \
2209 F(SubString) \ 2209 F(SubString) \
2210 F(StringCompare) \ 2210 F(StringCompare) \
2211 F(RegExpExec) \ 2211 F(RegExpExec) \
2212 F(RegExpConstructResult) \ 2212 F(RegExpConstructResult) \
2213 F(NumberToString) \ 2213 F(NumberToString) \
2214 F(DebugIsActive) \ 2214 F(DebugIsActive) \
2215 F(Likely) \ 2215 F(Likely) \
2216 F(Unlikely) \ 2216 F(Unlikely) \
2217 F(HasInPrototypeChain) \
2217 /* Typed Arrays */ \ 2218 /* Typed Arrays */ \
2218 F(TypedArrayInitialize) \ 2219 F(TypedArrayInitialize) \
2219 F(DataViewInitialize) \ 2220 F(DataViewInitialize) \
2220 F(MaxSmi) \ 2221 F(MaxSmi) \
2221 F(TypedArrayMaxSizeInHeap) \ 2222 F(TypedArrayMaxSizeInHeap) \
2222 F(ArrayBufferViewGetByteLength) \ 2223 F(ArrayBufferViewGetByteLength) \
2223 F(ArrayBufferViewGetByteOffset) \ 2224 F(ArrayBufferViewGetByteOffset) \
2224 F(TypedArrayGetLength) \ 2225 F(TypedArrayGetLength) \
2225 /* ArrayBuffer */ \ 2226 /* ArrayBuffer */ \
2226 F(ArrayBufferGetByteLength) \ 2227 F(ArrayBufferGetByteLength) \
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
3040 } 3041 }
3041 3042
3042 private: 3043 private:
3043 HGraphBuilder* builder_; 3044 HGraphBuilder* builder_;
3044 }; 3045 };
3045 3046
3046 3047
3047 } } // namespace v8::internal 3048 } } // namespace v8::internal
3048 3049
3049 #endif // V8_HYDROGEN_H_ 3050 #endif // V8_HYDROGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698