~ubuntu-branches/ubuntu/trusty/proguard/trusty

« back to all changes in this revision

Viewing changes to src/proguard/optimize/evaluation/LivenessAnalyzer.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-06-06 21:43:59 UTC
  • mfrom: (7.1.1 quantal)
  • Revision ID: package-import@ubuntu.com-20130606214359-anr49am8ewoj0taa
Tags: 4.8-0.1
* Non-maintainer upload.
* New upstream release. (Closes: #678049, #643255)
* Sync changes from Ubuntu packaging.
  - Thank you to Sebastian Carneiro.
* Bump Standards-Version to 3.9.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * ProGuard -- shrinking, optimization, obfuscation, and preverification
3
3
 *             of Java bytecode.
4
4
 *
5
 
 * Copyright (c) 2002-2009 Eric Lafortune (eric@graphics.cornell.edu)
 
5
 * Copyright (c) 2002-2012 Eric Lafortune (eric@graphics.cornell.edu)
6
6
 *
7
7
 * This program is free software; you can redistribute it and/or modify it
8
8
 * under the terms of the GNU General Public License as published by the Free
79
79
 
80
80
 
81
81
    /**
 
82
     * Returns whether the instruction at the given offset has ever been
 
83
     * executed during the partial evaluation.
 
84
     */
 
85
    public boolean isTraced(int instructionOffset)
 
86
    {
 
87
        return partialEvaluator.isTraced(instructionOffset);
 
88
    }
 
89
 
 
90
 
 
91
    /**
82
92
     * Returns whether the specified variable is alive before the instruction
83
93
     * at the given offset.
84
94
     */