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

Side by Side Diff: runtime/vm/precompiler.cc

Issue 1536003002: VM: Remove non-existent/unused functions from precompiled entry points. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | « runtime/vm/exceptions.cc ('k') | runtime/vm/symbols.h » ('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 (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/cha.h" 7 #include "vm/cha.h"
8 #include "vm/code_patcher.h" 8 #include "vm/code_patcher.h"
9 #include "vm/compiler.h" 9 #include "vm/compiler.h"
10 #include "vm/hash_table.h" 10 #include "vm/hash_table.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 { "dart:core", "UnsupportedError", "UnsupportedError." }, 243 { "dart:core", "UnsupportedError", "UnsupportedError." },
244 { "dart:core", "_CastError", "_CastError._create" }, 244 { "dart:core", "_CastError", "_CastError._create" },
245 { "dart:core", "_InternalError", "_InternalError." }, 245 { "dart:core", "_InternalError", "_InternalError." },
246 { "dart:core", "_InvocationMirror", "_allocateInvocationMirror" }, 246 { "dart:core", "_InvocationMirror", "_allocateInvocationMirror" },
247 { "dart:core", "_JavascriptCompatibilityError", 247 { "dart:core", "_JavascriptCompatibilityError",
248 "_JavascriptCompatibilityError." }, 248 "_JavascriptCompatibilityError." },
249 { "dart:core", "_JavascriptIntegerOverflowError", 249 { "dart:core", "_JavascriptIntegerOverflowError",
250 "_JavascriptIntegerOverflowError." }, 250 "_JavascriptIntegerOverflowError." },
251 { "dart:core", "_TypeError", "_TypeError._create" }, 251 { "dart:core", "_TypeError", "_TypeError._create" },
252 { "dart:isolate", "IsolateSpawnException", "IsolateSpawnException." }, 252 { "dart:isolate", "IsolateSpawnException", "IsolateSpawnException." },
253 { "dart:isolate", "_IsolateUnhandledException",
254 "_IsolateUnhandledException." },
255 { "dart:isolate", "::", "_getIsolateScheduleImmediateClosure" }, 253 { "dart:isolate", "::", "_getIsolateScheduleImmediateClosure" },
256 { "dart:isolate", "::", "_setupHooks" }, 254 { "dart:isolate", "::", "_setupHooks" },
257 { "dart:isolate", "::", "_startMainIsolate" }, 255 { "dart:isolate", "::", "_startMainIsolate" },
258 { "dart:isolate", "_RawReceivePortImpl", "_handleMessage" }, 256 { "dart:isolate", "_RawReceivePortImpl", "_handleMessage" },
259 { "dart:isolate", "_RawReceivePortImpl", "_lookupHandler" }, 257 { "dart:isolate", "_RawReceivePortImpl", "_lookupHandler" },
260 { "dart:isolate", "_SendPortImpl", "send" }, 258 { "dart:isolate", "_SendPortImpl", "send" },
261 { "dart:typed_data", "ByteData", "ByteData." }, 259 { "dart:typed_data", "ByteData", "ByteData." },
262 { "dart:typed_data", "ByteData", "ByteData._view" }, 260 { "dart:typed_data", "ByteData", "ByteData._view" },
263 { "dart:typed_data", "_ByteBuffer", "_ByteBuffer._New" }, 261 { "dart:typed_data", "_ByteBuffer", "_ByteBuffer._New" },
264 { "dart:_vmservice", "::", "_registerIsolate" }, 262 { "dart:_vmservice", "::", "_registerIsolate" },
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 cls = it.GetNextClass(); 1139 cls = it.GetNextClass();
1142 if (cls.IsDynamicClass()) { 1140 if (cls.IsDynamicClass()) {
1143 continue; // class 'dynamic' is in the read-only VM isolate. 1141 continue; // class 'dynamic' is in the read-only VM isolate.
1144 } 1142 }
1145 cls.set_is_allocated(false); 1143 cls.set_is_allocated(false);
1146 } 1144 }
1147 } 1145 }
1148 } 1146 }
1149 1147
1150 } // namespace dart 1148 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/exceptions.cc ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698