| 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 #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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |