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

Side by Side Diff: src/hydrogen.h

Issue 335683002: Optimize Function.prototype.call (Closed) Base URL: https://github.com/v8/v8.git@master
Patch Set: Created 6 years, 6 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 | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')
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 2303 matching lines...) Expand 10 before | Expand all | Expand 10 after
2314 kUseCell, 2314 kUseCell,
2315 kUseGeneric 2315 kUseGeneric
2316 }; 2316 };
2317 GlobalPropertyAccess LookupGlobalProperty(Variable* var, 2317 GlobalPropertyAccess LookupGlobalProperty(Variable* var,
2318 LookupResult* lookup, 2318 LookupResult* lookup,
2319 PropertyAccessType access_type); 2319 PropertyAccessType access_type);
2320 2320
2321 void EnsureArgumentsArePushedForAccess(); 2321 void EnsureArgumentsArePushedForAccess();
2322 bool TryArgumentsAccess(Property* expr); 2322 bool TryArgumentsAccess(Property* expr);
2323 2323
2324 // Try to optimize fun.apply(receiver, arguments) pattern. 2324 // Shared code for .call and .apply optimizations.
2325 bool TryCallApply(Call* expr); 2325 void HandleIndirectCall(Call* expr, HValue* function, int arguments_count);
2326 // Try to optimize indirect calls such as fun.apply(receiver, arguments)
2327 // or fun.call(...).
2328 bool TryIndirectCall(Call* expr);
2329 void BuildFunctionCallCall(Call* expr);
2326 2330
2327 bool TryHandleArrayCall(Call* expr, HValue* function); 2331 bool TryHandleArrayCall(Call* expr, HValue* function);
2328 bool TryHandleArrayCallNew(CallNew* expr, HValue* function); 2332 bool TryHandleArrayCallNew(CallNew* expr, HValue* function);
2329 void BuildArrayCall(Expression* expr, int arguments_count, HValue* function, 2333 void BuildArrayCall(Expression* expr, int arguments_count, HValue* function,
2330 Handle<AllocationSite> cell); 2334 Handle<AllocationSite> cell);
2331 2335
2332 enum ArrayIndexOfMode { kFirstIndexOf, kLastIndexOf }; 2336 enum ArrayIndexOfMode { kFirstIndexOf, kLastIndexOf };
2333 HValue* BuildArrayIndexOf(HValue* receiver, 2337 HValue* BuildArrayIndexOf(HValue* receiver,
2334 HValue* search_element, 2338 HValue* search_element,
2335 ElementsKind kind, 2339 ElementsKind kind,
(...skipping 20 matching lines...) Expand all
2356 bool TryInlineSetter(Handle<JSFunction> setter, 2360 bool TryInlineSetter(Handle<JSFunction> setter,
2357 Handle<Map> receiver_map, 2361 Handle<Map> receiver_map,
2358 BailoutId id, 2362 BailoutId id,
2359 BailoutId assignment_id, 2363 BailoutId assignment_id,
2360 HValue* implicit_return_value); 2364 HValue* implicit_return_value);
2361 bool TryInlineApply(Handle<JSFunction> function, 2365 bool TryInlineApply(Handle<JSFunction> function,
2362 Call* expr, 2366 Call* expr,
2363 int arguments_count); 2367 int arguments_count);
2364 bool TryInlineBuiltinMethodCall(Call* expr, 2368 bool TryInlineBuiltinMethodCall(Call* expr,
2365 HValue* receiver, 2369 HValue* receiver,
2366 Handle<Map> receiver_map); 2370 Handle<Map> receiver_map,
2371 Handle<JSFunction> function,
2372 int args_count_no_receiver);
2373 bool InlineBuiltinMethodCall(Call* expr,
2374 HValue* receiver,
2375 Handle<Map> receiver_map,
2376 BuiltinFunctionId id,
2377 int args_count_no_receiver);
2367 bool TryInlineBuiltinFunctionCall(Call* expr); 2378 bool TryInlineBuiltinFunctionCall(Call* expr);
2368 enum ApiCallType { 2379 enum ApiCallType {
2369 kCallApiFunction, 2380 kCallApiFunction,
2370 kCallApiMethod, 2381 kCallApiMethod,
2371 kCallApiGetter, 2382 kCallApiGetter,
2372 kCallApiSetter 2383 kCallApiSetter
2373 }; 2384 };
2374 bool TryInlineApiMethodCall(Call* expr, 2385 bool TryInlineApiMethodCall(Call* expr,
2375 HValue* receiver, 2386 HValue* receiver,
2376 SmallMapList* receiver_types); 2387 SmallMapList* receiver_types);
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
2894 } 2905 }
2895 2906
2896 private: 2907 private:
2897 HGraphBuilder* builder_; 2908 HGraphBuilder* builder_;
2898 }; 2909 };
2899 2910
2900 2911
2901 } } // namespace v8::internal 2912 } } // namespace v8::internal
2902 2913
2903 #endif // V8_HYDROGEN_H_ 2914 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | src/hydrogen.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698