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

Side by Side Diff: src/code-stub-assembler.h

Issue 2684033012: [es2015] Remove the @@hasInstance protector cell. (Closed)
Patch Set: REBASE Created 3 years, 10 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/builtins/builtins.h ('k') | src/code-stub-assembler.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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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_CODE_STUB_ASSEMBLER_H_ 5 #ifndef V8_CODE_STUB_ASSEMBLER_H_
6 #define V8_CODE_STUB_ASSEMBLER_H_ 6 #define V8_CODE_STUB_ASSEMBLER_H_
7 7
8 #include <functional> 8 #include <functional>
9 9
10 #include "src/compiler/code-assembler.h" 10 #include "src/compiler/code-assembler.h"
(...skipping 15 matching lines...) Expand all
26 V(AllocationSiteMap, AllocationSiteMap) \ 26 V(AllocationSiteMap, AllocationSiteMap) \
27 V(BooleanMap, BooleanMap) \ 27 V(BooleanMap, BooleanMap) \
28 V(CodeMap, CodeMap) \ 28 V(CodeMap, CodeMap) \
29 V(empty_string, EmptyString) \ 29 V(empty_string, EmptyString) \
30 V(EmptyFixedArray, EmptyFixedArray) \ 30 V(EmptyFixedArray, EmptyFixedArray) \
31 V(FalseValue, False) \ 31 V(FalseValue, False) \
32 V(FixedArrayMap, FixedArrayMap) \ 32 V(FixedArrayMap, FixedArrayMap) \
33 V(FixedCOWArrayMap, FixedCOWArrayMap) \ 33 V(FixedCOWArrayMap, FixedCOWArrayMap) \
34 V(FixedDoubleArrayMap, FixedDoubleArrayMap) \ 34 V(FixedDoubleArrayMap, FixedDoubleArrayMap) \
35 V(FunctionTemplateInfoMap, FunctionTemplateInfoMap) \ 35 V(FunctionTemplateInfoMap, FunctionTemplateInfoMap) \
36 V(has_instance_symbol, HasInstanceSymbol) \
36 V(HeapNumberMap, HeapNumberMap) \ 37 V(HeapNumberMap, HeapNumberMap) \
37 V(NoClosuresCellMap, NoClosuresCellMap) \ 38 V(NoClosuresCellMap, NoClosuresCellMap) \
38 V(OneClosureCellMap, OneClosureCellMap) \ 39 V(OneClosureCellMap, OneClosureCellMap) \
39 V(ManyClosuresCellMap, ManyClosuresCellMap) \ 40 V(ManyClosuresCellMap, ManyClosuresCellMap) \
40 V(MinusZeroValue, MinusZero) \ 41 V(MinusZeroValue, MinusZero) \
41 V(NanValue, Nan) \ 42 V(NanValue, Nan) \
42 V(NullValue, Null) \ 43 V(NullValue, Null) \
43 V(SymbolMap, SymbolMap) \ 44 V(SymbolMap, SymbolMap) \
44 V(TheHoleValue, TheHole) \ 45 V(TheHoleValue, TheHole) \
45 V(TrueValue, True) \ 46 V(TrueValue, True) \
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 Node* IsSpecialReceiverMap(Node* map); 692 Node* IsSpecialReceiverMap(Node* map);
692 Node* IsSpecialReceiverInstanceType(Node* instance_type); 693 Node* IsSpecialReceiverInstanceType(Node* instance_type);
693 Node* IsStringInstanceType(Node* instance_type); 694 Node* IsStringInstanceType(Node* instance_type);
694 Node* IsString(Node* object); 695 Node* IsString(Node* object);
695 Node* IsJSObject(Node* object); 696 Node* IsJSObject(Node* object);
696 Node* IsJSGlobalProxy(Node* object); 697 Node* IsJSGlobalProxy(Node* object);
697 Node* IsJSReceiverInstanceType(Node* instance_type); 698 Node* IsJSReceiverInstanceType(Node* instance_type);
698 Node* IsJSReceiver(Node* object); 699 Node* IsJSReceiver(Node* object);
699 Node* IsMap(Node* object); 700 Node* IsMap(Node* object);
700 Node* IsCallableMap(Node* map); 701 Node* IsCallableMap(Node* map);
702 Node* IsCallable(Node* object);
701 Node* IsBoolean(Node* object); 703 Node* IsBoolean(Node* object);
702 Node* IsName(Node* object); 704 Node* IsName(Node* object);
703 Node* IsSymbol(Node* object); 705 Node* IsSymbol(Node* object);
704 Node* IsPrivateSymbol(Node* object); 706 Node* IsPrivateSymbol(Node* object);
705 Node* IsJSValue(Node* object); 707 Node* IsJSValue(Node* object);
706 Node* IsJSArray(Node* object); 708 Node* IsJSArray(Node* object);
707 Node* IsNativeContext(Node* object); 709 Node* IsNativeContext(Node* object);
708 Node* IsWeakCell(Node* object); 710 Node* IsWeakCell(Node* object);
709 Node* IsFixedDoubleArray(Node* object); 711 Node* IsFixedDoubleArray(Node* object);
710 Node* IsHashTable(Node* object); 712 Node* IsHashTable(Node* object);
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 } 1392 }
1391 #else 1393 #else
1392 #define CSA_SLOW_ASSERT(csa, x) ((void)0) 1394 #define CSA_SLOW_ASSERT(csa, x) ((void)0)
1393 #endif 1395 #endif
1394 1396
1395 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags); 1397 DEFINE_OPERATORS_FOR_FLAGS(CodeStubAssembler::AllocationFlags);
1396 1398
1397 } // namespace internal 1399 } // namespace internal
1398 } // namespace v8 1400 } // namespace v8
1399 #endif // V8_CODE_STUB_ASSEMBLER_H_ 1401 #endif // V8_CODE_STUB_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/builtins/builtins.h ('k') | src/code-stub-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698