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

Side by Side Diff: src/builtins/builtins.h

Issue 2733563002: [ic] Inline LoadIC into LdaNamedProperty bytecode handler (Closed)
Patch Set: Remove LoadFeedbackSlot Created 3 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 | « no previous file | src/builtins/builtins-ic.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 10
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 TFJ(GlobalIsFinite, 1) \ 465 TFJ(GlobalIsFinite, 1) \
466 /* ES6 section 18.2.3 isNaN ( number ) */ \ 466 /* ES6 section 18.2.3 isNaN ( number ) */ \
467 TFJ(GlobalIsNaN, 1) \ 467 TFJ(GlobalIsNaN, 1) \
468 \ 468 \
469 /* JSON */ \ 469 /* JSON */ \
470 CPP(JsonParse) \ 470 CPP(JsonParse) \
471 CPP(JsonStringify) \ 471 CPP(JsonStringify) \
472 \ 472 \
473 /* ICs */ \ 473 /* ICs */ \
474 TFS(LoadIC, LOAD_IC, kNoExtraICState, LoadWithVector, 1) \ 474 TFS(LoadIC, LOAD_IC, kNoExtraICState, LoadWithVector, 1) \
475 TFS(LoadIC_Noninlined, BUILTIN, kNoExtraICState, LoadWithVector, 1) \
475 TFS(LoadICTrampoline, LOAD_IC, kNoExtraICState, Load, 1) \ 476 TFS(LoadICTrampoline, LOAD_IC, kNoExtraICState, Load, 1) \
476 TFS(KeyedLoadIC, KEYED_LOAD_IC, kNoExtraICState, LoadWithVector, 1) \ 477 TFS(KeyedLoadIC, KEYED_LOAD_IC, kNoExtraICState, LoadWithVector, 1) \
477 TFS(KeyedLoadICTrampoline, KEYED_LOAD_IC, kNoExtraICState, Load, 1) \ 478 TFS(KeyedLoadICTrampoline, KEYED_LOAD_IC, kNoExtraICState, Load, 1) \
478 TFS(StoreIC, STORE_IC, kNoExtraICState, StoreWithVector, 1) \ 479 TFS(StoreIC, STORE_IC, kNoExtraICState, StoreWithVector, 1) \
479 TFS(StoreICTrampoline, STORE_IC, kNoExtraICState, Store, 1) \ 480 TFS(StoreICTrampoline, STORE_IC, kNoExtraICState, Store, 1) \
480 TFS(StoreICStrict, STORE_IC, kNoExtraICState, StoreWithVector, 1) \ 481 TFS(StoreICStrict, STORE_IC, kNoExtraICState, StoreWithVector, 1) \
481 TFS(StoreICStrictTrampoline, STORE_IC, kNoExtraICState, Store, 1) \ 482 TFS(StoreICStrictTrampoline, STORE_IC, kNoExtraICState, Store, 1) \
482 TFS(KeyedStoreIC, KEYED_STORE_IC, kNoExtraICState, StoreWithVector, 1) \ 483 TFS(KeyedStoreIC, KEYED_STORE_IC, kNoExtraICState, StoreWithVector, 1) \
483 TFS(KeyedStoreICTrampoline, KEYED_STORE_IC, kNoExtraICState, Store, 1) \ 484 TFS(KeyedStoreICTrampoline, KEYED_STORE_IC, kNoExtraICState, Store, 1) \
484 TFS(KeyedStoreICStrict, KEYED_STORE_IC, kNoExtraICState, StoreWithVector, 1) \ 485 TFS(KeyedStoreICStrict, KEYED_STORE_IC, kNoExtraICState, StoreWithVector, 1) \
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 996
996 friend class Isolate; 997 friend class Isolate;
997 998
998 DISALLOW_COPY_AND_ASSIGN(Builtins); 999 DISALLOW_COPY_AND_ASSIGN(Builtins);
999 }; 1000 };
1000 1001
1001 } // namespace internal 1002 } // namespace internal
1002 } // namespace v8 1003 } // namespace v8
1003 1004
1004 #endif // V8_BUILTINS_BUILTINS_H_ 1005 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « no previous file | src/builtins/builtins-ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698