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

Side by Side Diff: src/compiler/change-lowering.h

Issue 1919513002: [turbofan] Introduce TruncateTaggedToWord32 simplified operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_COMPILER_CHANGE_LOWERING_H_ 5 #ifndef V8_COMPILER_CHANGE_LOWERING_H_
6 #define V8_COMPILER_CHANGE_LOWERING_H_ 6 #define V8_COMPILER_CHANGE_LOWERING_H_
7 7
8 #include "src/compiler/graph-reducer.h" 8 #include "src/compiler/graph-reducer.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 Reduction ChangeBitToBool(Node* value, Node* control); 44 Reduction ChangeBitToBool(Node* value, Node* control);
45 Reduction ChangeBoolToBit(Node* value); 45 Reduction ChangeBoolToBit(Node* value);
46 Reduction ChangeFloat64ToTagged(Node* value, Node* control); 46 Reduction ChangeFloat64ToTagged(Node* value, Node* control);
47 Reduction ChangeInt31ToTagged(Node* value, Node* control); 47 Reduction ChangeInt31ToTagged(Node* value, Node* control);
48 Reduction ChangeInt32ToTagged(Node* value, Node* control); 48 Reduction ChangeInt32ToTagged(Node* value, Node* control);
49 Reduction ChangeTaggedSignedToInt32(Node* value); 49 Reduction ChangeTaggedSignedToInt32(Node* value);
50 Reduction ChangeTaggedToFloat64(Node* value, Node* control); 50 Reduction ChangeTaggedToFloat64(Node* value, Node* control);
51 Reduction ChangeTaggedToUI32(Node* value, Node* control, 51 Reduction ChangeTaggedToUI32(Node* value, Node* control,
52 Signedness signedness); 52 Signedness signedness);
53 Reduction ChangeUint32ToTagged(Node* value, Node* control); 53 Reduction ChangeUint32ToTagged(Node* value, Node* control);
54 Reduction TruncateTaggedToWord32(Node* value, Node* control);
54 55
55 Reduction LoadField(Node* node); 56 Reduction LoadField(Node* node);
56 Reduction StoreField(Node* node); 57 Reduction StoreField(Node* node);
57 Reduction LoadElement(Node* node); 58 Reduction LoadElement(Node* node);
58 Reduction StoreElement(Node* node); 59 Reduction StoreElement(Node* node);
59 Reduction Allocate(Node* node); 60 Reduction Allocate(Node* node);
60 61
61 Node* IsSmi(Node* value); 62 Node* IsSmi(Node* value);
62 Node* LoadHeapObjectMap(Node* object, Node* control); 63 Node* LoadHeapObjectMap(Node* object, Node* control);
63 Node* LoadMapBitField(Node* map); 64 Node* LoadMapBitField(Node* map);
(...skipping 15 matching lines...) Expand all
79 80
80 JSGraph* const jsgraph_; 81 JSGraph* const jsgraph_;
81 SetOncePointer<const Operator> allocate_heap_number_operator_; 82 SetOncePointer<const Operator> allocate_heap_number_operator_;
82 }; 83 };
83 84
84 } // namespace compiler 85 } // namespace compiler
85 } // namespace internal 86 } // namespace internal
86 } // namespace v8 87 } // namespace v8
87 88
88 #endif // V8_COMPILER_CHANGE_LOWERING_H_ 89 #endif // V8_COMPILER_CHANGE_LOWERING_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698