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

Unified Diff: pkg/compiler/lib/src/types/masks.dart

Issue 2278213003: Rename the global inference task and reduce it's API surface by introducing the (Closed)
Patch Set: cl comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/compiler/lib/src/types/map_type_mask.dart ('k') | pkg/compiler/lib/src/types/type_mask.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/types/masks.dart
diff --git a/pkg/compiler/lib/src/types/masks.dart b/pkg/compiler/lib/src/types/masks.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ee12b6536adf7b68a175b226e1f71e55f55881ee
--- /dev/null
+++ b/pkg/compiler/lib/src/types/masks.dart
@@ -0,0 +1,136 @@
+// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library masks;
+
+import '../common.dart';
+import '../common/backend_api.dart' show Backend;
+import '../compiler.dart' show Compiler;
+import '../constants/values.dart' show PrimitiveConstantValue;
+import '../elements/elements.dart';
+import '../inferrer/type_graph_inferrer.dart' show TypeGraphInferrer;
+import '../tree/tree.dart';
+import '../universe/selector.dart' show Selector;
+import '../universe/universe.dart'
+ show
+ ReceiverConstraint,
+ UniverseSelectorConstraints,
+ SelectorConstraintsStrategy;
+import '../util/util.dart';
+import '../world.dart' show ClassWorld, World;
+import 'abstract_value_domain.dart' show AbstractValue;
+
+part 'container_type_mask.dart';
+part 'dictionary_type_mask.dart';
+part 'flat_type_mask.dart';
+part 'forwarding_type_mask.dart';
+part 'map_type_mask.dart';
+part 'type_mask.dart';
+part 'union_type_mask.dart';
+part 'value_type_mask.dart';
+
+class CommonMasks {
+ final ClassWorld classWorld;
+ // TODO(sigmund): once we split out the backend common elements, depend
+ // directly on those instead.
+ final Compiler compiler;
+
+ CommonMasks(Compiler compiler)
+ : this.classWorld = compiler.world,
+ compiler = compiler;
+
+ TypeMask _dynamicType;
+ TypeMask _nonNullType;
+ TypeMask _nullType;
+ TypeMask _intType;
+ TypeMask _uint32Type;
+ TypeMask _uint31Type;
+ TypeMask _positiveIntType;
+ TypeMask _doubleType;
+ TypeMask _numType;
+ TypeMask _boolType;
+ TypeMask _functionType;
+ TypeMask _listType;
+ TypeMask _constListType;
+ TypeMask _fixedListType;
+ TypeMask _growableListType;
+ TypeMask _mapType;
+ TypeMask _constMapType;
+ TypeMask _stringType;
+ TypeMask _typeType;
+ TypeMask _syncStarIterableType;
+ TypeMask _asyncFutureType;
+ TypeMask _asyncStarStreamType;
+
+ TypeMask get dynamicType => _dynamicType ??=
+ new TypeMask.subclass(classWorld.objectClass, classWorld);
+
+ TypeMask get nonNullType => _nonNullType ??=
+ new TypeMask.nonNullSubclass(classWorld.objectClass, classWorld);
+
+ TypeMask get intType => _intType ??= new TypeMask.nonNullSubclass(
+ compiler.backend.intImplementation, classWorld);
+
+ TypeMask get uint32Type => _uint32Type ??= new TypeMask.nonNullSubclass(
+ compiler.backend.uint32Implementation, classWorld);
+
+ TypeMask get uint31Type => _uint31Type ??= new TypeMask.nonNullExact(
+ compiler.backend.uint31Implementation, classWorld);
+
+ TypeMask get positiveIntType =>
+ _positiveIntType ??= new TypeMask.nonNullSubclass(
+ compiler.backend.positiveIntImplementation, classWorld);
+
+ TypeMask get doubleType => _doubleType ??= new TypeMask.nonNullExact(
+ compiler.backend.doubleImplementation, classWorld);
+
+ TypeMask get numType => _numType ??= new TypeMask.nonNullSubclass(
+ compiler.backend.numImplementation, classWorld);
+
+ TypeMask get boolType => _boolType ??= new TypeMask.nonNullExact(
+ compiler.backend.boolImplementation, classWorld);
+
+ TypeMask get functionType => _functionType ??= new TypeMask.nonNullSubtype(
+ compiler.backend.functionImplementation, classWorld);
+
+ TypeMask get listType => _listType ??= new TypeMask.nonNullExact(
+ compiler.backend.listImplementation, classWorld);
+
+ TypeMask get constListType => _constListType ??= new TypeMask.nonNullExact(
+ compiler.backend.constListImplementation, classWorld);
+
+ TypeMask get fixedListType => _fixedListType ??= new TypeMask.nonNullExact(
+ compiler.backend.fixedListImplementation, classWorld);
+
+ TypeMask get growableListType =>
+ _growableListType ??= new TypeMask.nonNullExact(
+ compiler.backend.growableListImplementation, classWorld);
+
+ TypeMask get mapType => _mapType ??= new TypeMask.nonNullSubtype(
+ compiler.backend.mapImplementation, classWorld);
+
+ TypeMask get constMapType => _constMapType ??= new TypeMask.nonNullSubtype(
+ compiler.backend.constMapImplementation, classWorld);
+
+ TypeMask get stringType => _stringType ??= new TypeMask.nonNullExact(
+ compiler.backend.stringImplementation, classWorld);
+
+ TypeMask get typeType => _typeType ??= new TypeMask.nonNullExact(
+ compiler.backend.typeImplementation, classWorld);
+
+ TypeMask get syncStarIterableType =>
+ _syncStarIterableType ??= new TypeMask.nonNullExact(
+ compiler.backend.syncStarIterableImplementation, classWorld);
+
+ TypeMask get asyncFutureType =>
+ _asyncFutureType ??= new TypeMask.nonNullExact(
+ compiler.backend.asyncFutureImplementation, classWorld);
+
+ TypeMask get asyncStarStreamType =>
+ _asyncStarStreamType ??= new TypeMask.nonNullExact(
+ compiler.backend.asyncStarStreamImplementation, classWorld);
+
+ // TODO(johnniwinther): Assert that the null type has been resolved.
+ TypeMask get nullType => _nullType ??= const TypeMask.empty();
+}
« no previous file with comments | « pkg/compiler/lib/src/types/map_type_mask.dart ('k') | pkg/compiler/lib/src/types/type_mask.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698