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

Unified Diff: runtime/vm/benchmark_test.cc

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/pkg.status ('k') | runtime/vm/unit_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/benchmark_test.cc
diff --git a/runtime/vm/benchmark_test.cc b/runtime/vm/benchmark_test.cc
index 00b39e5acb9d92a7f9229e6223dc3473bbe455e7..ccca86da4489609139a5cf7bf5612882550b0bed 100644
--- a/runtime/vm/benchmark_test.cc
+++ b/runtime/vm/benchmark_test.cc
@@ -227,7 +227,7 @@ static char* ComputeDart2JSPath(const char* arg) {
char buffer[2048];
char* dart2js_path = strdup(File::GetCanonicalPath(arg));
const char* compiler_path =
- "%s%ssdk%slib%s_internal%scompiler%scompiler.dart";
+ "%s%spkg%scompiler%slib%scompiler.dart";
const char* path_separator = File::PathSeparator();
ASSERT(path_separator != NULL && strlen(path_separator) == 1);
char* ptr = strrchr(dart2js_path, *path_separator);
@@ -265,17 +265,34 @@ static Dart_NativeFunction NativeResolver(Dart_Handle name,
return &func;
}
+static void SetupDart2JSPackagePath() {
+ Dart_Handle builtin_lib =
+ bin::Builtin::LoadAndCheckLibrary(bin::Builtin::kBuiltinLibrary);
+ DART_CHECK_VALID(builtin_lib);
+
+ bool worked = bin::DartUtils::SetOriginalWorkingDirectory();
+ EXPECT(worked);
+ char buffer[2048];
+ char* executable_path =
+ strdup(File::GetCanonicalPath(Benchmark::Executable()));
+ const char* packages_path = "%s%s..%spackages";
+ const char* path_separator = File::PathSeparator();
+ OS::SNPrint(buffer, 2048, packages_path,
+ executable_path, path_separator, path_separator);
+ bin::DartUtils::PrepareForScriptLoading(buffer, builtin_lib);
+}
BENCHMARK(Dart2JSCompileAll) {
bin::Builtin::SetNativeResolver(bin::Builtin::kBuiltinLibrary);
bin::Builtin::SetNativeResolver(bin::Builtin::kIOLibrary);
+ SetupDart2JSPackagePath();
char* dart_root = ComputeDart2JSPath(Benchmark::Executable());
char* script = NULL;
if (dart_root != NULL) {
Isolate* isolate = Isolate::Current();
HANDLESCOPE(isolate);
const char* kFormatStr =
- "import '%s/sdk/lib/_internal/compiler/compiler.dart';";
+ "import '%s/pkg/compiler/lib/compiler.dart';";
intptr_t len = OS::SNPrint(NULL, 0, kFormatStr, dart_root) + 1;
script = reinterpret_cast<char*>(malloc(len));
EXPECT(script != NULL);
@@ -286,7 +303,7 @@ BENCHMARK(Dart2JSCompileAll) {
EXPECT_VALID(lib);
} else {
Dart_Handle lib = TestCase::LoadTestScript(
- "import 'sdk/lib/_internal/compiler/compiler.dart';",
+ "import 'pkg/compiler/lib/compiler.dart';",
reinterpret_cast<Dart_NativeEntryResolver>(NativeResolver));
EXPECT_VALID(lib);
}
« no previous file with comments | « pkg/pkg.status ('k') | runtime/vm/unit_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698