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

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

Issue 703103003: [turbofan] Combine JSToNumber and ChangeTaggedToFloat64 for fast SMI case. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/compiler/change-lowering.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 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 13 matching lines...) Expand all
24 virtual ~ChangeLowering(); 24 virtual ~ChangeLowering();
25 25
26 virtual Reduction Reduce(Node* node) OVERRIDE; 26 virtual Reduction Reduce(Node* node) OVERRIDE;
27 27
28 private: 28 private:
29 Node* HeapNumberValueIndexConstant(); 29 Node* HeapNumberValueIndexConstant();
30 Node* SmiMaxValueConstant(); 30 Node* SmiMaxValueConstant();
31 Node* SmiShiftBitsConstant(); 31 Node* SmiShiftBitsConstant();
32 32
33 Node* AllocateHeapNumberWithValue(Node* value, Node* control); 33 Node* AllocateHeapNumberWithValue(Node* value, Node* control);
34 Node* ChangeInt32ToFloat64(Node* value);
35 Node* ChangeSmiToFloat64(Node* value);
34 Node* ChangeSmiToInt32(Node* value); 36 Node* ChangeSmiToInt32(Node* value);
37 Node* ChangeUint32ToFloat64(Node* value);
38 Node* ChangeUint32ToSmi(Node* value);
35 Node* LoadHeapNumberValue(Node* value, Node* control); 39 Node* LoadHeapNumberValue(Node* value, Node* control);
40 Node* TestNotSmi(Node* value);
41 Node* Uint32LessThanOrEqual(Node* lhs, Node* rhs);
36 42
37 Reduction ChangeBitToBool(Node* val, Node* control); 43 Reduction ChangeBitToBool(Node* value, Node* control);
38 Reduction ChangeBoolToBit(Node* val); 44 Reduction ChangeBoolToBit(Node* value);
39 Reduction ChangeFloat64ToTagged(Node* val, Node* control); 45 Reduction ChangeFloat64ToTagged(Node* value, Node* control);
40 Reduction ChangeInt32ToTagged(Node* val, Node* control); 46 Reduction ChangeInt32ToTagged(Node* value, Node* control);
41 Reduction ChangeTaggedToFloat64(Node* val, Node* control); 47 Reduction ChangeTaggedToFloat64(Node* value, Node* control);
42 Reduction ChangeTaggedToUI32(Node* val, Node* control, Signedness signedness); 48 Reduction ChangeTaggedToUI32(Node* value, Node* control,
43 Reduction ChangeUint32ToTagged(Node* val, Node* control); 49 Signedness signedness);
50 Reduction ChangeUint32ToTagged(Node* value, Node* control);
44 51
45 Graph* graph() const; 52 Graph* graph() const;
46 Isolate* isolate() const; 53 Isolate* isolate() const;
47 JSGraph* jsgraph() const { return jsgraph_; } 54 JSGraph* jsgraph() const { return jsgraph_; }
48 Linkage* linkage() const { return linkage_; } 55 Linkage* linkage() const { return linkage_; }
49 CommonOperatorBuilder* common() const; 56 CommonOperatorBuilder* common() const;
50 MachineOperatorBuilder* machine() const; 57 MachineOperatorBuilder* machine() const;
51 58
52 JSGraph* jsgraph_; 59 JSGraph* jsgraph_;
53 Linkage* linkage_; 60 Linkage* linkage_;
54 }; 61 };
55 62
56 } // namespace compiler 63 } // namespace compiler
57 } // namespace internal 64 } // namespace internal
58 } // namespace v8 65 } // namespace v8
59 66
60 #endif // V8_COMPILER_CHANGE_LOWERING_H_ 67 #endif // V8_COMPILER_CHANGE_LOWERING_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/change-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698