OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "vm/precompiler.h" | 5 #include "vm/precompiler.h" |
6 | 6 |
7 #include "vm/assembler.h" | 7 #include "vm/assembler.h" |
8 #include "vm/ast_printer.h" | 8 #include "vm/ast_printer.h" |
9 #include "vm/branch_optimizer.h" | 9 #include "vm/branch_optimizer.h" |
10 #include "vm/cha.h" | 10 #include "vm/cha.h" |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 { "dart:core", "NullThrownError", "NullThrownError." }, | 341 { "dart:core", "NullThrownError", "NullThrownError." }, |
342 { "dart:core", "OutOfMemoryError", "OutOfMemoryError." }, | 342 { "dart:core", "OutOfMemoryError", "OutOfMemoryError." }, |
343 { "dart:core", "RangeError", "RangeError." }, | 343 { "dart:core", "RangeError", "RangeError." }, |
344 { "dart:core", "RangeError", "RangeError.range" }, | 344 { "dart:core", "RangeError", "RangeError.range" }, |
345 { "dart:core", "StackOverflowError", "StackOverflowError." }, | 345 { "dart:core", "StackOverflowError", "StackOverflowError." }, |
346 { "dart:core", "UnsupportedError", "UnsupportedError." }, | 346 { "dart:core", "UnsupportedError", "UnsupportedError." }, |
347 { "dart:core", "_AssertionError", "_AssertionError._create" }, | 347 { "dart:core", "_AssertionError", "_AssertionError._create" }, |
348 { "dart:core", "_CastError", "_CastError._create" }, | 348 { "dart:core", "_CastError", "_CastError._create" }, |
349 { "dart:core", "_InternalError", "_InternalError." }, | 349 { "dart:core", "_InternalError", "_InternalError." }, |
350 { "dart:core", "_InvocationMirror", "_allocateInvocationMirror" }, | 350 { "dart:core", "_InvocationMirror", "_allocateInvocationMirror" }, |
351 { "dart:core", "_JavascriptCompatibilityError", | |
352 "_JavascriptCompatibilityError." }, | |
353 { "dart:core", "_JavascriptIntegerOverflowError", | |
354 "_JavascriptIntegerOverflowError." }, | |
355 { "dart:core", "_TypeError", "_TypeError._create" }, | 351 { "dart:core", "_TypeError", "_TypeError._create" }, |
356 { "dart:isolate", "IsolateSpawnException", "IsolateSpawnException." }, | 352 { "dart:isolate", "IsolateSpawnException", "IsolateSpawnException." }, |
357 { "dart:isolate", "::", "_getIsolateScheduleImmediateClosure" }, | 353 { "dart:isolate", "::", "_getIsolateScheduleImmediateClosure" }, |
358 { "dart:isolate", "::", "_setupHooks" }, | 354 { "dart:isolate", "::", "_setupHooks" }, |
359 { "dart:isolate", "::", "_startMainIsolate" }, | 355 { "dart:isolate", "::", "_startMainIsolate" }, |
360 { "dart:isolate", "_RawReceivePortImpl", "_handleMessage" }, | 356 { "dart:isolate", "_RawReceivePortImpl", "_handleMessage" }, |
361 { "dart:isolate", "_RawReceivePortImpl", "_lookupHandler" }, | 357 { "dart:isolate", "_RawReceivePortImpl", "_lookupHandler" }, |
362 { "dart:isolate", "_SendPortImpl", "send" }, | 358 { "dart:isolate", "_SendPortImpl", "send" }, |
363 { "dart:typed_data", "ByteData", "ByteData." }, | 359 { "dart:typed_data", "ByteData", "ByteData." }, |
364 { "dart:typed_data", "ByteData", "ByteData._view" }, | 360 { "dart:typed_data", "ByteData", "ByteData._view" }, |
(...skipping 1867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2232 CompilationPipeline::New(thread->zone(), function); | 2228 CompilationPipeline::New(thread->zone(), function); |
2233 | 2229 |
2234 ASSERT(FLAG_precompilation); | 2230 ASSERT(FLAG_precompilation); |
2235 const bool optimized = function.IsOptimizable(); // False for natives. | 2231 const bool optimized = function.IsOptimizable(); // False for natives. |
2236 return PrecompileFunctionHelper(pipeline, function, optimized); | 2232 return PrecompileFunctionHelper(pipeline, function, optimized); |
2237 } | 2233 } |
2238 | 2234 |
2239 #endif // DART_PRECOMPILER | 2235 #endif // DART_PRECOMPILER |
2240 | 2236 |
2241 } // namespace dart | 2237 } // namespace dart |
OLD | NEW |