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

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

Issue 1850643002: Adding %_NewObject intrinsic (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: formatting 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/compiler/linkage.cc ('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 2212 matching lines...) Expand 10 before | Expand all | Expand 10 after
2223 return function_state()->compilation_info()->language_mode(); 2223 return function_state()->compilation_info()->language_mode();
2224 } 2224 }
2225 2225
2226 #define FOR_EACH_HYDROGEN_INTRINSIC(F) \ 2226 #define FOR_EACH_HYDROGEN_INTRINSIC(F) \
2227 F(IsSmi) \ 2227 F(IsSmi) \
2228 F(IsArray) \ 2228 F(IsArray) \
2229 F(IsTypedArray) \ 2229 F(IsTypedArray) \
2230 F(IsRegExp) \ 2230 F(IsRegExp) \
2231 F(IsJSProxy) \ 2231 F(IsJSProxy) \
2232 F(Call) \ 2232 F(Call) \
2233 F(NewObject) \
2233 F(ValueOf) \ 2234 F(ValueOf) \
2234 F(StringCharFromCode) \ 2235 F(StringCharFromCode) \
2235 F(StringCharAt) \ 2236 F(StringCharAt) \
2236 F(OneByteSeqStringSetChar) \ 2237 F(OneByteSeqStringSetChar) \
2237 F(TwoByteSeqStringSetChar) \ 2238 F(TwoByteSeqStringSetChar) \
2238 F(ToInteger) \ 2239 F(ToInteger) \
2239 F(ToName) \ 2240 F(ToName) \
2240 F(ToObject) \ 2241 F(ToObject) \
2241 F(ToString) \ 2242 F(ToString) \
2242 F(ToLength) \ 2243 F(ToLength) \
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
3085 } 3086 }
3086 3087
3087 private: 3088 private:
3088 HOptimizedGraphBuilder* builder_; 3089 HOptimizedGraphBuilder* builder_;
3089 }; 3090 };
3090 3091
3091 } // namespace internal 3092 } // namespace internal
3092 } // namespace v8 3093 } // namespace v8
3093 3094
3094 #endif // V8_CRANKSHAFT_HYDROGEN_H_ 3095 #endif // V8_CRANKSHAFT_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698