20faaa5d94
Change-Id: Ib18f554c1076f27a3f7c0df5a36410da41a1f467 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/148784 Reviewed-by: Paul Berry <paulberry@google.com> Reviewed-by: Sigmund Cherem <sigmund@google.com>
99 lines
3.7 KiB
Dart
99 lines
3.7 KiB
Dart
// Copyright (c) 2017, 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.
|
|
|
|
// @dart = 2.7
|
|
|
|
import 'dart:io';
|
|
import 'package:_fe_analyzer_shared/src/testing/features.dart';
|
|
import 'package:async_helper/async_helper.dart';
|
|
import 'package:compiler/src/common/resolution.dart';
|
|
import 'package:compiler/src/compiler.dart';
|
|
import 'package:compiler/src/elements/entities.dart';
|
|
import 'package:compiler/src/kernel/kernel_strategy.dart';
|
|
import 'package:compiler/src/universe/feature.dart';
|
|
import 'package:compiler/src/universe/use.dart';
|
|
import 'package:compiler/src/universe/world_impact.dart';
|
|
import 'package:kernel/ast.dart' as ir;
|
|
import '../equivalence/id_equivalence.dart';
|
|
import '../equivalence/id_equivalence_helper.dart';
|
|
|
|
main(List<String> args) {
|
|
asyncTest(() async {
|
|
Directory dataDir = new Directory.fromUri(Platform.script.resolve('data'));
|
|
print('Testing direct computation of ResolutionImpact');
|
|
print('==================================================================');
|
|
useImpactDataForTesting = false;
|
|
await checkTests(dataDir, const ImpactDataComputer(),
|
|
args: args, testedConfigs: allSpecConfigs);
|
|
|
|
print('Testing computation of ResolutionImpact through ImpactData');
|
|
print('==================================================================');
|
|
useImpactDataForTesting = true;
|
|
await checkTests(dataDir, const ImpactDataComputer(),
|
|
args: args, testedConfigs: allSpecConfigs);
|
|
});
|
|
}
|
|
|
|
class Tags {
|
|
static const String typeUse = 'type';
|
|
static const String staticUse = 'static';
|
|
static const String dynamicUse = 'dynamic';
|
|
static const String constantUse = 'constant';
|
|
static const String runtimeTypeUse = 'runtimeType';
|
|
}
|
|
|
|
class ImpactDataComputer extends DataComputer<Features> {
|
|
const ImpactDataComputer();
|
|
|
|
static const String wildcard = '%';
|
|
|
|
@override
|
|
void computeMemberData(Compiler compiler, MemberEntity member,
|
|
Map<Id, ActualData<Features>> actualMap,
|
|
{bool verbose: false}) {
|
|
KernelFrontendStrategy frontendStrategy = compiler.frontendStrategy;
|
|
WorldImpact impact = compiler.impactCache[member];
|
|
ir.Member node = frontendStrategy.elementMap.getMemberNode(member);
|
|
Features features = new Features();
|
|
if (impact.typeUses.length > 50) {
|
|
features.addElement(Tags.typeUse, wildcard);
|
|
} else {
|
|
for (TypeUse use in impact.typeUses) {
|
|
features.addElement(Tags.typeUse, use.shortText);
|
|
}
|
|
}
|
|
if (impact.staticUses.length > 50) {
|
|
features.addElement(Tags.staticUse, wildcard);
|
|
} else {
|
|
for (StaticUse use in impact.staticUses) {
|
|
features.addElement(Tags.staticUse, use.shortText);
|
|
}
|
|
}
|
|
for (DynamicUse use in impact.dynamicUses) {
|
|
features.addElement(Tags.dynamicUse, use.shortText);
|
|
}
|
|
for (ConstantUse use in impact.constantUses) {
|
|
features.addElement(Tags.constantUse, use.shortText);
|
|
}
|
|
if (impact is TransformedWorldImpact &&
|
|
impact.worldImpact is ResolutionImpact) {
|
|
ResolutionImpact resolutionImpact = impact.worldImpact;
|
|
for (RuntimeTypeUse use in resolutionImpact.runtimeTypeUses) {
|
|
features.addElement(Tags.runtimeTypeUse, use.shortText);
|
|
}
|
|
}
|
|
Id id = computeMemberId(node);
|
|
ir.TreeNode nodeWithOffset = computeTreeNodeWithOffset(node);
|
|
actualMap[id] = new ActualData<Features>(id, features,
|
|
nodeWithOffset?.location?.file, nodeWithOffset?.fileOffset, member);
|
|
}
|
|
|
|
@override
|
|
bool get testFrontend => true;
|
|
|
|
@override
|
|
DataInterpreter<Features> get dataValidator =>
|
|
const FeaturesDataInterpreter(wildcard: wildcard);
|
|
}
|