-
Notifications
You must be signed in to change notification settings - Fork 666
/
Copy pathdefault.config
62 lines (62 loc) · 1.7 KB
/
default.config
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
{
"redex" : {
"passes" : [
"ReBindRefsPass",
"ResultPropagationPass",
"BridgeSynthInlinePass",
"FinalInlinePassV2",
"DelSuperPass",
"CommonSubexpressionEliminationPass", # Run once just before MethodInlinePass
"MethodInlinePass",
"PeepholePass",
"ConstantPropagationPass",
"LocalDcePass",
"RemoveUnreachablePass",
"DedupBlocksPass",
"UpCodeMotionPass",
"SingleImplPass",
"ReorderInterfacesDeclPass",
"ShortenSrcStringsPass",
"CommonSubexpressionEliminationPass", # Run a second time after all method inlining is done
"RegAllocPass",
"CopyPropagationPass",
"LocalDcePass",
"ReduceGotosPass" # This pass should come at the very end, after all other code transformations that might add gotos
]
},
"inliner": {
"throws": true,
"multiple_callers": true,
"blocklist": []
},
"RegAllocPass" : {
"live_range_splitting": false
},
"CopyPropagationPass" : {
"eliminate_const_literals": false,
"full_method_analysis": true
},
"PeepholePass" : {
"disabled_peepholes": [
"Replace_PutGet",
"Replace_PutGetWide",
"Replace_PutGetObject",
"Replace_PutGetShort",
"Replace_PutGetChar",
"Replace_PutGetByte",
"Replace_PutGetBoolean"
]
},
"keep_packages": [
"Lcom/fasterxml/jackson/",
"Lcom/google/dexmaker/mockito/"
],
"debug_info_kind": "no_custom_symbolication",
"method_move_map" : "redex-moved-methods-map.txt",
"string_sort_mode" : "class_order",
"bytecode_sort_mode" : ["method_similarity_order", "class_order"],
"ir_type_checker": {
"run_after_each_pass" : false,
"verify_moves" : false
}
}