-
Notifications
You must be signed in to change notification settings - Fork 11
/
CMakeLists.txt
1197 lines (1189 loc) · 45.8 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
cmake_minimum_required(VERSION 3.6)
project(art)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES
benchmark/jni-perf/perf_jni.cc
benchmark/jobject-benchmark/jobject_benchmark.cc
benchmark/scoped-primitive-array/scoped_primitive_array.cc
cmdline/cmdline.h
cmdline/cmdline_parse_result.h
cmdline/cmdline_parser.h
cmdline/cmdline_parser_test.cc
cmdline/cmdline_result.h
cmdline/cmdline_type_parser.h
cmdline/cmdline_types.h
cmdline/detail/cmdline_debug_detail.h
cmdline/detail/cmdline_parse_argument_detail.h
cmdline/detail/cmdline_parser_detail.h
cmdline/memory_representation.h
cmdline/token_range.h
cmdline/unit.h
compiler/cfi_test.h
compiler/common_compiler_test.cc
compiler/common_compiler_test.h
compiler/compiled_class.h
compiler/compiled_method.cc
compiler/compiled_method.h
compiler/compiled_method_test.cc
compiler/compiler.cc
compiler/compiler.h
compiler/debug/dwarf/debug_abbrev_writer.h
compiler/debug/dwarf/debug_frame_opcode_writer.h
compiler/debug/dwarf/debug_info_entry_writer.h
compiler/debug/dwarf/debug_line_opcode_writer.h
compiler/debug/dwarf/dwarf_constants.h
compiler/debug/dwarf/dwarf_test.cc
compiler/debug/dwarf/dwarf_test.h
compiler/debug/dwarf/expression.h
compiler/debug/dwarf/headers.h
compiler/debug/dwarf/register.h
compiler/debug/dwarf/writer.h
compiler/debug/elf_compilation_unit.h
compiler/debug/elf_debug_frame_writer.h
compiler/debug/elf_debug_info_writer.h
compiler/debug/elf_debug_line_writer.h
compiler/debug/elf_debug_loc_writer.h
compiler/debug/elf_debug_writer.cc
compiler/debug/elf_debug_writer.h
compiler/debug/elf_gnu_debugdata_writer.h
compiler/debug/elf_symtab_writer.h
compiler/debug/method_debug_info.h
compiler/dex/compiler_enums.h
compiler/dex/dex_to_dex_compiler.cc
compiler/dex/dex_to_dex_compiler.h
compiler/dex/quick/dex_file_method_inliner.cc
compiler/dex/quick/dex_file_method_inliner.h
compiler/dex/quick/dex_file_to_method_inliner_map.cc
compiler/dex/quick/dex_file_to_method_inliner_map.h
compiler/dex/quick_compiler_callbacks.cc
compiler/dex/quick_compiler_callbacks.h
compiler/dex/verification_results.cc
compiler/dex/verification_results.h
compiler/dex/verified_method.cc
compiler/dex/verified_method.h
compiler/driver/compiled_method_storage.cc
compiler/driver/compiled_method_storage.h
compiler/driver/compiled_method_storage_test.cc
compiler/driver/compiler_driver-inl.h
compiler/driver/compiler_driver.cc
compiler/driver/compiler_driver.h
compiler/driver/compiler_driver_test.cc
compiler/driver/compiler_options.cc
compiler/driver/compiler_options.h
compiler/driver/dex_compilation_unit.cc
compiler/driver/dex_compilation_unit.h
compiler/elf_builder.h
compiler/elf_writer.cc
compiler/elf_writer.h
compiler/elf_writer_quick.cc
compiler/elf_writer_quick.h
compiler/elf_writer_test.cc
compiler/exception_test.cc
compiler/image_test.cc
compiler/image_writer.cc
compiler/image_writer.h
compiler/jit/jit_compiler.cc
compiler/jit/jit_compiler.h
compiler/jni/jni_cfi_test.cc
compiler/jni/jni_compiler_test.cc
compiler/jni/quick/arm/calling_convention_arm.cc
compiler/jni/quick/arm/calling_convention_arm.h
compiler/jni/quick/arm64/calling_convention_arm64.cc
compiler/jni/quick/arm64/calling_convention_arm64.h
compiler/jni/quick/calling_convention.cc
compiler/jni/quick/calling_convention.h
compiler/jni/quick/jni_compiler.cc
compiler/jni/quick/jni_compiler.h
compiler/jni/quick/mips/calling_convention_mips.cc
compiler/jni/quick/mips/calling_convention_mips.h
compiler/jni/quick/mips64/calling_convention_mips64.cc
compiler/jni/quick/mips64/calling_convention_mips64.h
compiler/jni/quick/x86/calling_convention_x86.cc
compiler/jni/quick/x86/calling_convention_x86.h
compiler/jni/quick/x86_64/calling_convention_x86_64.cc
compiler/jni/quick/x86_64/calling_convention_x86_64.h
compiler/linker/arm/relative_patcher_arm_base.cc
compiler/linker/arm/relative_patcher_arm_base.h
compiler/linker/arm/relative_patcher_thumb2.cc
compiler/linker/arm/relative_patcher_thumb2.h
compiler/linker/arm/relative_patcher_thumb2_test.cc
compiler/linker/arm64/relative_patcher_arm64.cc
compiler/linker/arm64/relative_patcher_arm64.h
compiler/linker/arm64/relative_patcher_arm64_test.cc
compiler/linker/buffered_output_stream.cc
compiler/linker/buffered_output_stream.h
compiler/linker/error_delaying_output_stream.h
compiler/linker/file_output_stream.cc
compiler/linker/file_output_stream.h
compiler/linker/multi_oat_relative_patcher.cc
compiler/linker/multi_oat_relative_patcher.h
compiler/linker/multi_oat_relative_patcher_test.cc
compiler/linker/output_stream.cc
compiler/linker/output_stream.h
compiler/linker/output_stream_test.cc
compiler/linker/relative_patcher.cc
compiler/linker/relative_patcher.h
compiler/linker/relative_patcher_test.h
compiler/linker/vector_output_stream.cc
compiler/linker/vector_output_stream.h
compiler/linker/x86/relative_patcher_x86.cc
compiler/linker/x86/relative_patcher_x86.h
compiler/linker/x86/relative_patcher_x86_base.cc
compiler/linker/x86/relative_patcher_x86_base.h
compiler/linker/x86/relative_patcher_x86_test.cc
compiler/linker/x86_64/relative_patcher_x86_64.cc
compiler/linker/x86_64/relative_patcher_x86_64.h
compiler/linker/x86_64/relative_patcher_x86_64_test.cc
compiler/oat_test.cc
compiler/oat_writer.cc
compiler/oat_writer.h
compiler/optimizing/artist/api/modules/artist.cc
compiler/optimizing/artist/api/modules/artist.h
compiler/optimizing/artist/api/io/artist_log.cc
compiler/optimizing/artist/api/io/artist_log.h
compiler/optimizing/artist/api/utils/artist_utils.cc
compiler/optimizing/artist/api/utils/artist_utils.h
compiler/optimizing/artist/api/env/codelib_environment.cc
compiler/optimizing/artist/api/env/codelib_environment.h
compiler/optimizing/artist/api/modules/codelib.h
compiler/optimizing/artist/api/env/java_env.cc
compiler/optimizing/artist/api/env/java_env.h
compiler/optimizing/artist/api/injection/boolean.h
compiler/optimizing/artist/api/injection/byte.h
compiler/optimizing/artist/api/injection/short.h
compiler/optimizing/artist/api/injection/char.h
compiler/optimizing/artist/api/injection/double.h
compiler/optimizing/artist/api/injection/float.h
compiler/optimizing/artist/api/injection/injection.cc
compiler/optimizing/artist/api/injection/injection.h
compiler/optimizing/artist/internal/injection/injection_visitor.cc
compiler/optimizing/artist/internal/injection/injection_visitor.h
compiler/optimizing/artist/api/injection/integer.h
compiler/optimizing/artist/api/injection/long.h
compiler/optimizing/artist/api/injection/parameter.cc
compiler/optimizing/artist/api/injection/parameter.h
compiler/optimizing/artist/api/injection/primitives.h
compiler/optimizing/artist/api/injection/target.cc
compiler/optimizing/artist/api/injection/target.h
compiler/optimizing/artist/internal/injection/visitor_keys.cc
compiler/optimizing/artist/internal/injection/visitor_keys.h
compiler/optimizing/artist/api/modules/method_info.cc
compiler/optimizing/artist/api/modules/method_info.h
compiler/optimizing/artist/api/modules/method_info_factory.cc
compiler/optimizing/artist/api/modules/method_info_factory.h
compiler/optimizing/artist/internal/modules/logtimization/logtimization_artist.cc
compiler/optimizing/artist/internal/modules/logtimization/logtimization_artist.h
compiler/optimizing/artist/api/injection/injection_artist.cc
compiler/optimizing/artist/api/injection/injection_artist.h
compiler/optimizing/artist/internal/modules/trace/trace_artist.cc
compiler/optimizing/artist/internal/modules/trace/trace_artist.h
compiler/optimizing/artist/internal/modules/trace/trace_codelib.cc
compiler/optimizing/artist/internal/modules/trace/trace_codelib.h
compiler/optimizing/artist/internal/utils/param_finder.cc
compiler/optimizing/artist/internal/utils/param_finder.h
compiler/optimizing/artist/api/io/verbose_printer.cc
compiler/optimizing/artist/api/io/verbose_printer.h
compiler/optimizing/block_builder.cc
compiler/optimizing/block_builder.h
compiler/optimizing/bounds_check_elimination.cc
compiler/optimizing/bounds_check_elimination.h
compiler/optimizing/bounds_check_elimination_test.cc
compiler/optimizing/builder.cc
compiler/optimizing/builder.h
compiler/optimizing/bytecode_utils.h
compiler/optimizing/code_generator.cc
compiler/optimizing/code_generator.h
compiler/optimizing/code_generator_arm.cc
compiler/optimizing/code_generator_arm.h
compiler/optimizing/code_generator_arm64.cc
compiler/optimizing/code_generator_arm64.h
compiler/optimizing/code_generator_mips.cc
compiler/optimizing/code_generator_mips.h
compiler/optimizing/code_generator_mips64.cc
compiler/optimizing/code_generator_mips64.h
compiler/optimizing/code_generator_utils.cc
compiler/optimizing/code_generator_utils.h
compiler/optimizing/code_generator_x86.cc
compiler/optimizing/code_generator_x86.h
compiler/optimizing/code_generator_x86_64.cc
compiler/optimizing/code_generator_x86_64.h
compiler/optimizing/codegen_test.cc
compiler/optimizing/common_arm64.h
compiler/optimizing/common_dominator.h
compiler/optimizing/constant_folding.cc
compiler/optimizing/constant_folding.h
compiler/optimizing/constant_folding_test.cc
compiler/optimizing/dead_code_elimination.cc
compiler/optimizing/dead_code_elimination.h
compiler/optimizing/dead_code_elimination_test.cc
compiler/optimizing/dex_cache_array_fixups_arm.cc
compiler/optimizing/dex_cache_array_fixups_arm.h
compiler/optimizing/dominator_test.cc
compiler/optimizing/find_loops_test.cc
compiler/optimizing/graph_checker.cc
compiler/optimizing/graph_checker.h
compiler/optimizing/graph_checker_test.cc
compiler/optimizing/graph_test.cc
compiler/optimizing/graph_visualizer.cc
compiler/optimizing/graph_visualizer.h
compiler/optimizing/gvn.cc
compiler/optimizing/gvn.h
compiler/optimizing/gvn_test.cc
compiler/optimizing/induction_var_analysis.cc
compiler/optimizing/induction_var_analysis.h
compiler/optimizing/induction_var_analysis_test.cc
compiler/optimizing/induction_var_range.cc
compiler/optimizing/induction_var_range.h
compiler/optimizing/induction_var_range_test.cc
compiler/optimizing/inliner.cc
compiler/optimizing/inliner.h
compiler/optimizing/instruction_builder.cc
compiler/optimizing/instruction_builder.h
compiler/optimizing/instruction_simplifier.cc
compiler/optimizing/instruction_simplifier.h
compiler/optimizing/instruction_simplifier_arm.cc
compiler/optimizing/instruction_simplifier_arm.h
compiler/optimizing/instruction_simplifier_arm64.cc
compiler/optimizing/instruction_simplifier_arm64.h
compiler/optimizing/instruction_simplifier_shared.cc
compiler/optimizing/instruction_simplifier_shared.h
compiler/optimizing/intrinsics.cc
compiler/optimizing/intrinsics.h
compiler/optimizing/intrinsics_arm.cc
compiler/optimizing/intrinsics_arm.h
compiler/optimizing/intrinsics_arm64.cc
compiler/optimizing/intrinsics_arm64.h
compiler/optimizing/intrinsics_list.h
compiler/optimizing/intrinsics_mips.cc
compiler/optimizing/intrinsics_mips.h
compiler/optimizing/intrinsics_mips64.cc
compiler/optimizing/intrinsics_mips64.h
compiler/optimizing/intrinsics_utils.h
compiler/optimizing/intrinsics_x86.cc
compiler/optimizing/intrinsics_x86.h
compiler/optimizing/intrinsics_x86_64.cc
compiler/optimizing/intrinsics_x86_64.h
compiler/optimizing/licm.cc
compiler/optimizing/licm.h
compiler/optimizing/licm_test.cc
compiler/optimizing/linearize_test.cc
compiler/optimizing/live_interval_test.cc
compiler/optimizing/live_ranges_test.cc
compiler/optimizing/liveness_test.cc
compiler/optimizing/load_store_elimination.cc
compiler/optimizing/load_store_elimination.h
compiler/optimizing/locations.cc
compiler/optimizing/locations.h
compiler/optimizing/nodes.cc
compiler/optimizing/nodes.h
compiler/optimizing/nodes_arm.h
compiler/optimizing/nodes_arm64.cc
compiler/optimizing/nodes_arm64.h
compiler/optimizing/nodes_shared.h
compiler/optimizing/nodes_test.cc
compiler/optimizing/nodes_x86.h
compiler/optimizing/optimization.cc
compiler/optimizing/optimization.h
compiler/optimizing/optimizing_cfi_test.cc
compiler/optimizing/optimizing_compiler.cc
compiler/optimizing/optimizing_compiler.h
compiler/optimizing/optimizing_compiler_stats.h
compiler/optimizing/optimizing_unit_test.h
compiler/optimizing/parallel_move_resolver.cc
compiler/optimizing/parallel_move_resolver.h
compiler/optimizing/parallel_move_test.cc
compiler/optimizing/pc_relative_fixups_x86.cc
compiler/optimizing/pc_relative_fixups_x86.h
compiler/optimizing/prepare_for_register_allocation.cc
compiler/optimizing/prepare_for_register_allocation.h
compiler/optimizing/pretty_printer.h
compiler/optimizing/pretty_printer_test.cc
compiler/optimizing/reference_type_propagation.cc
compiler/optimizing/reference_type_propagation.h
compiler/optimizing/reference_type_propagation_test.cc
compiler/optimizing/register_allocator.cc
compiler/optimizing/register_allocator.h
compiler/optimizing/register_allocator_test.cc
compiler/optimizing/select_generator.cc
compiler/optimizing/select_generator.h
compiler/optimizing/sharpening.cc
compiler/optimizing/sharpening.h
compiler/optimizing/side_effects_analysis.cc
compiler/optimizing/side_effects_analysis.h
compiler/optimizing/side_effects_test.cc
compiler/optimizing/ssa_builder.cc
compiler/optimizing/ssa_builder.h
compiler/optimizing/ssa_liveness_analysis.cc
compiler/optimizing/ssa_liveness_analysis.h
compiler/optimizing/ssa_phi_elimination.cc
compiler/optimizing/ssa_phi_elimination.h
compiler/optimizing/ssa_test.cc
compiler/optimizing/stack_map_stream.cc
compiler/optimizing/stack_map_stream.h
compiler/optimizing/stack_map_test.cc
compiler/optimizing/suspend_check_test.cc
compiler/trampolines/trampoline_compiler.cc
compiler/trampolines/trampoline_compiler.h
compiler/utils/arm/assembler_arm.cc
compiler/utils/arm/assembler_arm.h
compiler/utils/arm/assembler_arm32.cc
compiler/utils/arm/assembler_arm32.h
compiler/utils/arm/assembler_arm32_test.cc
compiler/utils/arm/assembler_arm_test.h
compiler/utils/arm/assembler_thumb2.cc
compiler/utils/arm/assembler_thumb2.h
compiler/utils/arm/assembler_thumb2_test.cc
compiler/utils/arm/constants_arm.h
compiler/utils/arm/managed_register_arm.cc
compiler/utils/arm/managed_register_arm.h
compiler/utils/arm/managed_register_arm_test.cc
compiler/utils/arm64/assembler_arm64.cc
compiler/utils/arm64/assembler_arm64.h
compiler/utils/arm64/constants_arm64.h
compiler/utils/arm64/managed_register_arm64.cc
compiler/utils/arm64/managed_register_arm64.h
compiler/utils/arm64/managed_register_arm64_test.cc
compiler/utils/array_ref.h
compiler/utils/assembler.cc
compiler/utils/assembler.h
compiler/utils/assembler_test.h
compiler/utils/assembler_test_base.h
compiler/utils/assembler_thumb_test.cc
compiler/utils/dedupe_set-inl.h
compiler/utils/dedupe_set.h
compiler/utils/dedupe_set_test.cc
compiler/utils/intrusive_forward_list.h
compiler/utils/intrusive_forward_list_test.cc
compiler/utils/label.h
compiler/utils/managed_register.h
compiler/utils/mips/assembler_mips.cc
compiler/utils/mips/assembler_mips.h
compiler/utils/mips/assembler_mips_test.cc
compiler/utils/mips/constants_mips.h
compiler/utils/mips/managed_register_mips.cc
compiler/utils/mips/managed_register_mips.h
compiler/utils/mips64/assembler_mips64.cc
compiler/utils/mips64/assembler_mips64.h
compiler/utils/mips64/assembler_mips64_test.cc
compiler/utils/mips64/constants_mips64.h
compiler/utils/mips64/managed_register_mips64.cc
compiler/utils/mips64/managed_register_mips64.h
compiler/utils/stack_checks.h
compiler/utils/string_reference.h
compiler/utils/swap_space.cc
compiler/utils/swap_space.h
compiler/utils/swap_space_test.cc
compiler/utils/test_dex_file_builder.h
compiler/utils/test_dex_file_builder_test.cc
compiler/utils/x86/assembler_x86.cc
compiler/utils/x86/assembler_x86.h
compiler/utils/x86/assembler_x86_test.cc
compiler/utils/x86/constants_x86.h
compiler/utils/x86/managed_register_x86.cc
compiler/utils/x86/managed_register_x86.h
compiler/utils/x86/managed_register_x86_test.cc
compiler/utils/x86_64/assembler_x86_64.cc
compiler/utils/x86_64/assembler_x86_64.h
compiler/utils/x86_64/assembler_x86_64_test.cc
compiler/utils/x86_64/constants_x86_64.h
compiler/utils/x86_64/managed_register_x86_64.cc
compiler/utils/x86_64/managed_register_x86_64.h
compiler/utils/x86_64/managed_register_x86_64_test.cc
dalvikvm/dalvikvm.cc
dex2oat/dex2oat.cc
dex2oat/dex2oat_test.cc
dexdump/dexdump.cc
dexdump/dexdump.h
dexdump/dexdump_main.cc
dexdump/dexdump_test.cc
dexlist/dexlist.cc
dexlist/dexlist_test.cc
disassembler/disassembler.cc
disassembler/disassembler.h
disassembler/disassembler_arm.cc
disassembler/disassembler_arm.h
disassembler/disassembler_arm64.cc
disassembler/disassembler_arm64.h
disassembler/disassembler_mips.cc
disassembler/disassembler_mips.h
disassembler/disassembler_x86.cc
disassembler/disassembler_x86.h
imgdiag/imgdiag.cc
imgdiag/imgdiag_test.cc
libart_fake/fake.cc
oatdump/oatdump.cc
oatdump/oatdump_test.cc
patchoat/patchoat.cc
patchoat/patchoat.h
profman/profile_assistant.cc
profman/profile_assistant.h
profman/profile_assistant_test.cc
profman/profman.cc
runtime/arch/arch_test.cc
runtime/arch/arm/asm_support_arm.h
runtime/arch/arm/context_arm.cc
runtime/arch/arm/context_arm.h
runtime/arch/arm/entrypoints_init_arm.cc
runtime/arch/arm/fault_handler_arm.cc
runtime/arch/arm/instruction_set_features_arm.cc
runtime/arch/arm/instruction_set_features_arm.h
runtime/arch/arm/instruction_set_features_arm_test.cc
runtime/arch/arm/quick_entrypoints_cc_arm.cc
runtime/arch/arm/quick_method_frame_info_arm.h
runtime/arch/arm/registers_arm.cc
runtime/arch/arm/registers_arm.h
runtime/arch/arm/thread_arm.cc
runtime/arch/arm64/asm_support_arm64.h
runtime/arch/arm64/context_arm64.cc
runtime/arch/arm64/context_arm64.h
runtime/arch/arm64/entrypoints_init_arm64.cc
runtime/arch/arm64/fault_handler_arm64.cc
runtime/arch/arm64/instruction_set_features_arm64.cc
runtime/arch/arm64/instruction_set_features_arm64.h
runtime/arch/arm64/instruction_set_features_arm64_test.cc
runtime/arch/arm64/quick_method_frame_info_arm64.h
runtime/arch/arm64/registers_arm64.cc
runtime/arch/arm64/registers_arm64.h
runtime/arch/arm64/thread_arm64.cc
runtime/arch/context.cc
runtime/arch/context.h
runtime/arch/instruction_set.cc
runtime/arch/instruction_set.h
runtime/arch/instruction_set_features.cc
runtime/arch/instruction_set_features.h
runtime/arch/instruction_set_features_test.cc
runtime/arch/instruction_set_test.cc
runtime/arch/memcmp16.cc
runtime/arch/memcmp16.h
runtime/arch/memcmp16_test.cc
runtime/arch/mips/asm_support_mips.h
runtime/arch/mips/context_mips.cc
runtime/arch/mips/context_mips.h
runtime/arch/mips/entrypoints_direct_mips.h
runtime/arch/mips/entrypoints_init_mips.cc
runtime/arch/mips/fault_handler_mips.cc
runtime/arch/mips/instruction_set_features_mips.cc
runtime/arch/mips/instruction_set_features_mips.h
runtime/arch/mips/instruction_set_features_mips_test.cc
runtime/arch/mips/quick_method_frame_info_mips.h
runtime/arch/mips/registers_mips.cc
runtime/arch/mips/registers_mips.h
runtime/arch/mips/thread_mips.cc
runtime/arch/mips64/asm_support_mips64.h
runtime/arch/mips64/context_mips64.cc
runtime/arch/mips64/context_mips64.h
runtime/arch/mips64/entrypoints_init_mips64.cc
runtime/arch/mips64/fault_handler_mips64.cc
runtime/arch/mips64/instruction_set_features_mips64.cc
runtime/arch/mips64/instruction_set_features_mips64.h
runtime/arch/mips64/instruction_set_features_mips64_test.cc
runtime/arch/mips64/quick_method_frame_info_mips64.h
runtime/arch/mips64/registers_mips64.cc
runtime/arch/mips64/registers_mips64.h
runtime/arch/mips64/thread_mips64.cc
runtime/arch/stub_test.cc
runtime/arch/x86/asm_support_x86.h
runtime/arch/x86/context_x86.cc
runtime/arch/x86/context_x86.h
runtime/arch/x86/entrypoints_init_x86.cc
runtime/arch/x86/fault_handler_x86.cc
runtime/arch/x86/instruction_set_features_x86.cc
runtime/arch/x86/instruction_set_features_x86.h
runtime/arch/x86/instruction_set_features_x86_test.cc
runtime/arch/x86/quick_method_frame_info_x86.h
runtime/arch/x86/registers_x86.cc
runtime/arch/x86/registers_x86.h
runtime/arch/x86/thread_x86.cc
runtime/arch/x86_64/asm_support_x86_64.h
runtime/arch/x86_64/context_x86_64.cc
runtime/arch/x86_64/context_x86_64.h
runtime/arch/x86_64/entrypoints_init_x86_64.cc
runtime/arch/x86_64/instruction_set_features_x86_64.h
runtime/arch/x86_64/instruction_set_features_x86_64_test.cc
runtime/arch/x86_64/quick_method_frame_info_x86_64.h
runtime/arch/x86_64/registers_x86_64.cc
runtime/arch/x86_64/registers_x86_64.h
runtime/arch/x86_64/thread_x86_64.cc
runtime/art_field-inl.h
runtime/art_field.cc
runtime/art_field.h
runtime/art_method-inl.h
runtime/art_method.cc
runtime/art_method.h
runtime/asm_support.h
runtime/atomic.cc
runtime/atomic.h
runtime/barrier.cc
runtime/barrier.h
runtime/barrier_test.cc
runtime/base/allocator.cc
runtime/base/allocator.h
runtime/base/arena_allocator.cc
runtime/base/arena_allocator.h
runtime/base/arena_allocator_test.cc
runtime/base/arena_bit_vector.cc
runtime/base/arena_bit_vector.h
runtime/base/arena_containers.h
runtime/base/arena_object.h
runtime/base/array_slice.h
runtime/base/bit_field.h
runtime/base/bit_field_test.cc
runtime/base/bit_utils.h
runtime/base/bit_utils_test.cc
runtime/base/bit_vector-inl.h
runtime/base/bit_vector.cc
runtime/base/bit_vector.h
runtime/base/bit_vector_test.cc
runtime/base/bounded_fifo.h
runtime/base/casts.h
runtime/base/dchecked_vector.h
runtime/base/debug_stack.h
runtime/base/dumpable.h
runtime/base/file_magic.cc
runtime/base/file_magic.h
runtime/base/hash_map.h
runtime/base/hash_set.h
runtime/base/hash_set_test.cc
runtime/base/hex_dump.cc
runtime/base/hex_dump.h
runtime/base/hex_dump_test.cc
runtime/base/histogram-inl.h
runtime/base/histogram.h
runtime/base/histogram_test.cc
runtime/base/iteration_range.h
runtime/base/length_prefixed_array.h
runtime/base/logging.cc
runtime/base/logging.h
runtime/base/macros.h
runtime/base/memory_tool.h
runtime/base/mutex-inl.h
runtime/base/mutex.cc
runtime/base/mutex.h
runtime/base/mutex_test.cc
runtime/base/scoped_arena_allocator.cc
runtime/base/scoped_arena_allocator.h
runtime/base/scoped_arena_containers.h
runtime/base/scoped_flock.cc
runtime/base/scoped_flock.h
runtime/base/scoped_flock_test.cc
runtime/base/stl_util.h
runtime/base/stringpiece.cc
runtime/base/stringpiece.h
runtime/base/stringprintf.cc
runtime/base/stringprintf.h
runtime/base/stringprintf_test.cc
runtime/base/systrace.h
runtime/base/time_utils.cc
runtime/base/time_utils.h
runtime/base/time_utils_test.cc
runtime/base/timing_logger.cc
runtime/base/timing_logger.h
runtime/base/timing_logger_test.cc
runtime/base/to_str.h
runtime/base/type_static_if.h
runtime/base/unix_file/fd_file.cc
runtime/base/unix_file/fd_file.h
runtime/base/unix_file/fd_file_test.cc
runtime/base/unix_file/random_access_file.h
runtime/base/unix_file/random_access_file_test.h
runtime/base/unix_file/random_access_file_utils.cc
runtime/base/unix_file/random_access_file_utils.h
runtime/base/value_object.h
runtime/base/variant_map.h
runtime/base/variant_map_test.cc
runtime/check_jni.cc
runtime/check_jni.h
runtime/check_reference_map_visitor.h
runtime/class_linker-inl.h
runtime/class_linker.cc
runtime/class_linker.h
runtime/class_linker_test.cc
runtime/class_reference.h
runtime/class_table-inl.h
runtime/class_table.cc
runtime/class_table.h
runtime/code_simulator_container.cc
runtime/code_simulator_container.h
runtime/common_runtime_test.cc
runtime/common_runtime_test.h
runtime/common_throws.cc
runtime/common_throws.h
runtime/compiler_callbacks.h
runtime/compiler_filter.cc
runtime/compiler_filter.h
runtime/compiler_filter_test.cc
runtime/debugger.cc
runtime/debugger.h
runtime/dex2oat_environment_test.h
runtime/dex_cache_resolved_classes.h
runtime/dex_file-inl.h
runtime/dex_file.cc
runtime/dex_file.h
runtime/dex_file_test.cc
runtime/dex_file_verifier.cc
runtime/dex_file_verifier.h
runtime/dex_file_verifier_test.cc
runtime/dex_instruction-inl.h
runtime/dex_instruction.cc
runtime/dex_instruction.h
runtime/dex_instruction_list.h
runtime/dex_instruction_test.cc
runtime/dex_instruction_utils.h
runtime/dex_instruction_visitor.h
runtime/dex_instruction_visitor_test.cc
runtime/dex_method_iterator.h
runtime/dex_method_iterator_test.cc
runtime/elf.h
runtime/elf_file.cc
runtime/elf_file.h
runtime/elf_file_impl.h
runtime/elf_utils.h
runtime/entrypoints/entrypoint_utils-inl.h
runtime/entrypoints/entrypoint_utils.cc
runtime/entrypoints/entrypoint_utils.h
runtime/entrypoints/jni/jni_entrypoints.cc
runtime/entrypoints/jni/jni_entrypoints.h
runtime/entrypoints/math_entrypoints.cc
runtime/entrypoints/math_entrypoints.h
runtime/entrypoints/math_entrypoints_test.cc
runtime/entrypoints/quick/callee_save_frame.h
runtime/entrypoints/quick/quick_alloc_entrypoints.cc
runtime/entrypoints/quick/quick_alloc_entrypoints.h
runtime/entrypoints/quick/quick_cast_entrypoints.cc
runtime/entrypoints/quick/quick_default_externs.h
runtime/entrypoints/quick/quick_default_init_entrypoints.h
runtime/entrypoints/quick/quick_deoptimization_entrypoints.cc
runtime/entrypoints/quick/quick_dexcache_entrypoints.cc
runtime/entrypoints/quick/quick_entrypoints.h
runtime/entrypoints/quick/quick_entrypoints_enum.h
runtime/entrypoints/quick/quick_entrypoints_list.h
runtime/entrypoints/quick/quick_field_entrypoints.cc
runtime/entrypoints/quick/quick_fillarray_entrypoints.cc
runtime/entrypoints/quick/quick_instrumentation_entrypoints.cc
runtime/entrypoints/quick/quick_jni_entrypoints.cc
runtime/entrypoints/quick/quick_lock_entrypoints.cc
runtime/entrypoints/quick/quick_math_entrypoints.cc
runtime/entrypoints/quick/quick_thread_entrypoints.cc
runtime/entrypoints/quick/quick_throw_entrypoints.cc
runtime/entrypoints/quick/quick_trampoline_entrypoints.cc
runtime/entrypoints/quick/quick_trampoline_entrypoints_test.cc
runtime/entrypoints/runtime_asm_entrypoints.h
runtime/entrypoints_order_test.cc
runtime/experimental_flags.h
runtime/fault_handler.cc
runtime/fault_handler.h
runtime/gc/accounting/atomic_stack.h
runtime/gc/accounting/bitmap-inl.h
runtime/gc/accounting/bitmap.cc
runtime/gc/accounting/bitmap.h
runtime/gc/accounting/card_table-inl.h
runtime/gc/accounting/card_table.cc
runtime/gc/accounting/card_table.h
runtime/gc/accounting/card_table_test.cc
runtime/gc/accounting/heap_bitmap-inl.h
runtime/gc/accounting/heap_bitmap.cc
runtime/gc/accounting/heap_bitmap.h
runtime/gc/accounting/mod_union_table-inl.h
runtime/gc/accounting/mod_union_table.cc
runtime/gc/accounting/mod_union_table.h
runtime/gc/accounting/mod_union_table_test.cc
runtime/gc/accounting/read_barrier_table.h
runtime/gc/accounting/remembered_set.cc
runtime/gc/accounting/remembered_set.h
runtime/gc/accounting/space_bitmap-inl.h
runtime/gc/accounting/space_bitmap.cc
runtime/gc/accounting/space_bitmap.h
runtime/gc/accounting/space_bitmap_test.cc
runtime/gc/allocation_record.cc
runtime/gc/allocation_record.h
runtime/gc/allocator/dlmalloc.cc
runtime/gc/allocator/dlmalloc.h
runtime/gc/allocator/rosalloc-inl.h
runtime/gc/allocator/rosalloc.cc
runtime/gc/allocator/rosalloc.h
runtime/gc/allocator_type.h
runtime/gc/collector/concurrent_copying-inl.h
runtime/gc/collector/concurrent_copying.cc
runtime/gc/collector/concurrent_copying.h
runtime/gc/collector/garbage_collector.cc
runtime/gc/collector/garbage_collector.h
runtime/gc/collector/gc_type.h
runtime/gc/collector/immune_region.cc
runtime/gc/collector/immune_region.h
runtime/gc/collector/immune_spaces.cc
runtime/gc/collector/immune_spaces.h
runtime/gc/collector/immune_spaces_test.cc
runtime/gc/collector/mark_compact.cc
runtime/gc/collector/mark_compact.h
runtime/gc/collector/mark_sweep-inl.h
runtime/gc/collector/mark_sweep.cc
runtime/gc/collector/mark_sweep.h
runtime/gc/collector/partial_mark_sweep.cc
runtime/gc/collector/partial_mark_sweep.h
runtime/gc/collector/semi_space-inl.h
runtime/gc/collector/semi_space.cc
runtime/gc/collector/semi_space.h
runtime/gc/collector/sticky_mark_sweep.cc
runtime/gc/collector/sticky_mark_sweep.h
runtime/gc/collector_type.h
runtime/gc/gc_cause.cc
runtime/gc/gc_cause.h
runtime/gc/heap-inl.h
runtime/gc/heap.cc
runtime/gc/heap.h
runtime/gc/heap_test.cc
runtime/gc/reference_processor-inl.h
runtime/gc/reference_processor.cc
runtime/gc/reference_processor.h
runtime/gc/reference_queue.cc
runtime/gc/reference_queue.h
runtime/gc/reference_queue_test.cc
runtime/gc/scoped_gc_critical_section.cc
runtime/gc/scoped_gc_critical_section.h
runtime/gc/space/bump_pointer_space-inl.h
runtime/gc/space/bump_pointer_space.cc
runtime/gc/space/bump_pointer_space.h
runtime/gc/space/dlmalloc_space-inl.h
runtime/gc/space/dlmalloc_space.cc
runtime/gc/space/dlmalloc_space.h
runtime/gc/space/dlmalloc_space_random_test.cc
runtime/gc/space/dlmalloc_space_static_test.cc
runtime/gc/space/image_space.cc
runtime/gc/space/image_space.h
runtime/gc/space/image_space_fs.h
runtime/gc/space/large_object_space.cc
runtime/gc/space/large_object_space.h
runtime/gc/space/large_object_space_test.cc
runtime/gc/space/malloc_space.cc
runtime/gc/space/malloc_space.h
runtime/gc/space/memory_tool_malloc_space-inl.h
runtime/gc/space/memory_tool_malloc_space.h
runtime/gc/space/memory_tool_settings.h
runtime/gc/space/region_space-inl.h
runtime/gc/space/region_space.cc
runtime/gc/space/region_space.h
runtime/gc/space/rosalloc_space-inl.h
runtime/gc/space/rosalloc_space.cc
runtime/gc/space/rosalloc_space.h
runtime/gc/space/rosalloc_space_random_test.cc
runtime/gc/space/rosalloc_space_static_test.cc
runtime/gc/space/space-inl.h
runtime/gc/space/space.cc
runtime/gc/space/space.h
runtime/gc/space/space_create_test.cc
runtime/gc/space/space_test.h
runtime/gc/space/zygote_space.cc
runtime/gc/space/zygote_space.h
runtime/gc/task_processor.cc
runtime/gc/task_processor.h
runtime/gc/task_processor_test.cc
runtime/gc/weak_root_state.h
runtime/gc_root-inl.h
runtime/gc_root.h
runtime/globals.h
runtime/gtest_test.cc
runtime/handle.h
runtime/handle_scope-inl.h
runtime/handle_scope.h
runtime/handle_scope_test.cc
runtime/hprof/hprof.cc
runtime/hprof/hprof.h
runtime/image-inl.h
runtime/image.cc
runtime/image.h
runtime/imtable.h
runtime/indenter.h
runtime/indenter_test.cc
runtime/indirect_reference_table-inl.h
runtime/indirect_reference_table.cc
runtime/indirect_reference_table.h
runtime/indirect_reference_table_test.cc
runtime/instrumentation.cc
runtime/instrumentation.h
runtime/instrumentation_test.cc
runtime/intern_table.cc
runtime/intern_table.h
runtime/intern_table_test.cc
runtime/interpreter/interpreter.cc
runtime/interpreter/interpreter.h
runtime/interpreter/interpreter_common.cc
runtime/interpreter/interpreter_common.h
runtime/interpreter/interpreter_goto_table_impl.cc
runtime/interpreter/interpreter_switch_impl.cc
runtime/interpreter/mterp/mterp.cc
runtime/interpreter/mterp/mterp.h
runtime/interpreter/mterp/mterp_stub.cc
runtime/interpreter/safe_math.h
runtime/interpreter/safe_math_test.cc
runtime/interpreter/unstarted_runtime.cc
runtime/interpreter/unstarted_runtime.h
runtime/interpreter/unstarted_runtime_list.h
runtime/interpreter/unstarted_runtime_test.cc
runtime/invoke_type.h
runtime/java_vm_ext.cc
runtime/java_vm_ext.h
runtime/java_vm_ext_test.cc
runtime/jdwp/jdwp.h
runtime/jdwp/jdwp_adb.cc
runtime/jdwp/jdwp_bits.h
runtime/jdwp/jdwp_constants.h
runtime/jdwp/jdwp_event.cc
runtime/jdwp/jdwp_event.h
runtime/jdwp/jdwp_expand_buf.cc
runtime/jdwp/jdwp_expand_buf.h
runtime/jdwp/jdwp_handler.cc
runtime/jdwp/jdwp_main.cc
runtime/jdwp/jdwp_priv.h
runtime/jdwp/jdwp_request.cc
runtime/jdwp/jdwp_socket.cc
runtime/jdwp/object_registry.cc
runtime/jdwp/object_registry.h
runtime/jit/debugger_interface.cc
runtime/jit/debugger_interface.h
runtime/jit/jit.cc
runtime/jit/jit.h
runtime/jit/jit_code_cache.cc
runtime/jit/jit_code_cache.h
runtime/jit/offline_profiling_info.cc
runtime/jit/offline_profiling_info.h
runtime/jit/profile_compilation_info_test.cc
runtime/jit/profile_saver.cc
runtime/jit/profile_saver.h
runtime/jit/profiling_info.cc
runtime/jit/profiling_info.h
runtime/jni_env_ext-inl.h
runtime/jni_env_ext.cc
runtime/jni_env_ext.h
runtime/jni_internal.cc
runtime/jni_internal.h
runtime/jni_internal_test.cc
runtime/jobject_comparator.cc
runtime/jobject_comparator.h
runtime/jvalue.h
runtime/lambda/art_lambda_method.cc
runtime/lambda/art_lambda_method.h
runtime/lambda/box_table.cc
runtime/lambda/box_table.h
runtime/lambda/closure.cc
runtime/lambda/closure.h
runtime/lambda/closure_builder-inl.h
runtime/lambda/closure_builder.cc
runtime/lambda/closure_builder.h
runtime/lambda/closure_test.cc
runtime/lambda/leaking_allocator.cc
runtime/lambda/leaking_allocator.h
runtime/lambda/shorty_field_type.h
runtime/lambda/shorty_field_type_test.cc
runtime/leb128.h
runtime/leb128_test.cc
runtime/linear_alloc.cc
runtime/linear_alloc.h
runtime/lock_word-inl.h
runtime/lock_word.h
runtime/mapping_table.h
runtime/mem_map.cc
runtime/mem_map.h
runtime/mem_map_test.cc
runtime/memory_region.cc
runtime/memory_region.h
runtime/memory_region_test.cc
runtime/method_reference.h
runtime/mirror/abstract_method.cc
runtime/mirror/abstract_method.h
runtime/mirror/accessible_object.h
runtime/mirror/array-inl.h
runtime/mirror/array.cc
runtime/mirror/array.h
runtime/mirror/class-inl.h
runtime/mirror/class.cc
runtime/mirror/class.h
runtime/mirror/class_flags.h
runtime/mirror/class_loader-inl.h
runtime/mirror/class_loader.h
runtime/mirror/dex_cache-inl.h
runtime/mirror/dex_cache.cc
runtime/mirror/dex_cache.h
runtime/mirror/dex_cache_test.cc
runtime/mirror/field-inl.h
runtime/mirror/field.cc
runtime/mirror/field.h
runtime/mirror/iftable-inl.h
runtime/mirror/iftable.h
runtime/mirror/method.cc
runtime/mirror/method.h
runtime/mirror/object-inl.h
runtime/mirror/object.cc
runtime/mirror/object.h
runtime/mirror/object_array-inl.h
runtime/mirror/object_array.h
runtime/mirror/object_reference.h
runtime/mirror/object_test.cc
runtime/mirror/proxy.h
runtime/mirror/reference-inl.h
runtime/mirror/reference.cc
runtime/mirror/reference.h
runtime/mirror/stack_trace_element.cc
runtime/mirror/stack_trace_element.h
runtime/mirror/string-inl.h
runtime/mirror/string.cc
runtime/mirror/string.h
runtime/mirror/throwable.cc
runtime/mirror/throwable.h
runtime/modifiers.h
runtime/monitor.cc
runtime/monitor.h
runtime/monitor_android.cc
runtime/monitor_linux.cc
runtime/monitor_pool.cc
runtime/monitor_pool.h
runtime/monitor_pool_test.cc
runtime/monitor_test.cc
runtime/native/dalvik_system_DexFile.cc
runtime/native/dalvik_system_DexFile.h
runtime/native/dalvik_system_VMDebug.cc
runtime/native/dalvik_system_VMDebug.h
runtime/native/dalvik_system_VMRuntime.cc
runtime/native/dalvik_system_VMRuntime.h
runtime/native/dalvik_system_VMStack.cc
runtime/native/dalvik_system_VMStack.h
runtime/native/dalvik_system_ZygoteHooks.cc
runtime/native/dalvik_system_ZygoteHooks.h
runtime/native/java_lang_Class.cc
runtime/native/java_lang_Class.h
runtime/native/java_lang_DexCache.cc
runtime/native/java_lang_DexCache.h
runtime/native/java_lang_Object.cc
runtime/native/java_lang_Object.h
runtime/native/java_lang_ref_FinalizerReference.cc
runtime/native/java_lang_ref_FinalizerReference.h
runtime/native/java_lang_ref_Reference.cc
runtime/native/java_lang_ref_Reference.h
runtime/native/java_lang_reflect_AbstractMethod.cc
runtime/native/java_lang_reflect_AbstractMethod.h
runtime/native/java_lang_reflect_Array.cc
runtime/native/java_lang_reflect_Array.h
runtime/native/java_lang_reflect_Constructor.cc
runtime/native/java_lang_reflect_Constructor.h
runtime/native/java_lang_reflect_Field.cc
runtime/native/java_lang_reflect_Field.h
runtime/native/java_lang_reflect_Method.cc
runtime/native/java_lang_reflect_Method.h
runtime/native/java_lang_reflect_Proxy.cc
runtime/native/java_lang_reflect_Proxy.h
runtime/native/java_lang_String.cc
runtime/native/java_lang_String.h
runtime/native/java_lang_StringFactory.cc
runtime/native/java_lang_StringFactory.h
runtime/native/java_lang_System.cc
runtime/native/java_lang_System.h
runtime/native/java_lang_Thread.cc
runtime/native/java_lang_Thread.h
runtime/native/java_lang_Throwable.cc
runtime/native/java_lang_Throwable.h
runtime/native/java_lang_VMClassLoader.cc
runtime/native/java_lang_VMClassLoader.h
runtime/native/java_util_concurrent_atomic_AtomicLong.cc
runtime/native/java_util_concurrent_atomic_AtomicLong.h
runtime/native/libcore_util_CharsetUtils.cc
runtime/native/libcore_util_CharsetUtils.h
runtime/native/org_apache_harmony_dalvik_ddmc_DdmServer.cc
runtime/native/org_apache_harmony_dalvik_ddmc_DdmServer.h
runtime/native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc
runtime/native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.h
runtime/native/scoped_fast_native_object_access.h
runtime/native/sun_misc_Unsafe.cc
runtime/native/sun_misc_Unsafe.h
runtime/native_bridge_art_interface.cc
runtime/native_bridge_art_interface.h
runtime/noop_compiler_callbacks.h