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

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

Issue 2167683004: Clear token streams before compacting the symbol table. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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/object.h ('k') | runtime/vm/precompiler.cc » ('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 #ifndef VM_PRECOMPILER_H_ 5 #ifndef VM_PRECOMPILER_H_
6 #define VM_PRECOMPILER_H_ 6 #define VM_PRECOMPILER_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/hash_map.h" 9 #include "vm/hash_map.h"
10 #include "vm/hash_table.h" 10 #include "vm/hash_table.h"
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 void ProcessFunction(const Function& function); 299 void ProcessFunction(const Function& function);
300 void CheckForNewDynamicFunctions(); 300 void CheckForNewDynamicFunctions();
301 void TraceConstFunctions(); 301 void TraceConstFunctions();
302 302
303 void TraceForRetainedFunctions(); 303 void TraceForRetainedFunctions();
304 void DropFunctions(); 304 void DropFunctions();
305 void DropFields(); 305 void DropFields();
306 void TraceTypesFromRetainedClasses(); 306 void TraceTypesFromRetainedClasses();
307 void DropTypes(); 307 void DropTypes();
308 void DropTypeArguments(); 308 void DropTypeArguments();
309 void DropCompileTimeConstantCaches(); 309 void DropScriptData();
310 void DropClasses(); 310 void DropClasses();
311 void DropLibraries(); 311 void DropLibraries();
312 312
313 void BindStaticCalls(); 313 void BindStaticCalls();
314 void SwitchICCalls(); 314 void SwitchICCalls();
315 void DedupStackmaps(); 315 void DedupStackmaps();
316 void DedupStackmapLists(); 316 void DedupStackmapLists();
317 void DedupInstructions(); 317 void DedupInstructions();
318 void ResetPrecompilerState(); 318 void ResetPrecompilerState();
319 319
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 return function.raw(); 396 return function.raw();
397 } 397 }
398 }; 398 };
399 399
400 typedef UnorderedHashSet<FunctionsTraits> UniqueFunctionsSet; 400 typedef UnorderedHashSet<FunctionsTraits> UniqueFunctionsSet;
401 401
402 402
403 } // namespace dart 403 } // namespace dart
404 404
405 #endif // VM_PRECOMPILER_H_ 405 #endif // VM_PRECOMPILER_H_
OLDNEW
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/precompiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698