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

Side by Side Diff: src/compiler/typer.h

Issue 2202883005: [turbofan] Unify number operation typing rules. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove useless cementation. DCHECKs instead of defensive programming are way more useful. Created 4 years, 4 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/compiler/simplified-lowering.cc ('k') | src/compiler/typer.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_TYPER_H_ 5 #ifndef V8_COMPILER_TYPER_H_
6 #define V8_COMPILER_TYPER_H_ 6 #define V8_COMPILER_TYPER_H_
7 7
8 #include "src/compiler/graph.h" 8 #include "src/compiler/graph.h"
9 #include "src/compiler/operation-typer.h" 9 #include "src/compiler/operation-typer.h"
10 #include "src/types.h" 10 #include "src/types.h"
(...skipping 30 matching lines...) Expand all
41 41
42 Isolate* const isolate_; 42 Isolate* const isolate_;
43 Graph* const graph_; 43 Graph* const graph_;
44 Decorator* decorator_; 44 Decorator* decorator_;
45 TypeCache const& cache_; 45 TypeCache const& cache_;
46 OperationTyper operation_typer_; 46 OperationTyper operation_typer_;
47 47
48 Type* singleton_false_; 48 Type* singleton_false_;
49 Type* singleton_true_; 49 Type* singleton_true_;
50 Type* singleton_the_hole_; 50 Type* singleton_the_hole_;
51 Type* signed32ish_;
52 Type* unsigned32ish_;
53 Type* falsish_; 51 Type* falsish_;
54 Type* truish_; 52 Type* truish_;
55 53
56 DISALLOW_COPY_AND_ASSIGN(Typer); 54 DISALLOW_COPY_AND_ASSIGN(Typer);
57 }; 55 };
58 56
59 } // namespace compiler 57 } // namespace compiler
60 } // namespace internal 58 } // namespace internal
61 } // namespace v8 59 } // namespace v8
62 60
63 #endif // V8_COMPILER_TYPER_H_ 61 #endif // V8_COMPILER_TYPER_H_
OLDNEW
« no previous file with comments | « src/compiler/simplified-lowering.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698