• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
21 import java.io.PrintStream;
22 
23 /**
24  * A class to contain options passed into dex.cf
25  */
26 public class CfOptions {
27     /** how much source position info to preserve */
28     public int positionInfo = PositionList.LINES;
29 
30     /** whether to keep local variable information */
31     public boolean localInfo = false;
32 
33     /** whether strict file-name-vs-class-name checking should be done */
34     public boolean strictNameCheck = true;
35 
36     /** whether to do SSA/register optimization */
37     public boolean optimize = false;
38 
39     /** filename containing list of methods to optimize */
40     public String optimizeListFile = null;
41 
42     /** filename containing list of methods <i>not</i> to optimize */
43     public String dontOptimizeListFile = null;
44 
45     /** whether to print statistics to stdout at end of compile cycle */
46     public boolean statistics;
47 
48     /** where to issue warnings to */
49     public PrintStream warn = System.err;
50 }
51