1 /*
2  * Copyright (C) 2007 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.dx.dex.cf;
18 
19 import com.android.dx.dex.code.PositionList;
20 import java.io.PrintStream;
21 
22 /**
23  * A class to contain options passed into dex.cf
24  */
25 public class CfOptions {
26     /** how much source position info to preserve */
27     public int positionInfo = PositionList.LINES;
28 
29     /** whether to keep local variable information */
30     public boolean localInfo = false;
31 
32     /** whether strict file-name-vs-class-name checking should be done */
33     public boolean strictNameCheck = true;
34 
35     /** whether to do SSA/register optimization */
36     public boolean optimize = false;
37 
38     /** filename containing list of methods to optimize */
39     public String optimizeListFile = null;
40 
41     /** filename containing list of methods <i>not</i> to optimize */
42     public String dontOptimizeListFile = null;
43 
44     /** whether to print statistics to stdout at end of compile cycle */
45     public boolean statistics;
46 
47     /** where to issue warnings to */
48     public PrintStream warn = System.err;
49 }
50