All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.umd.cs.findbugs.detect.FindUselessControlFlow Maven / Gradle / Ivy

The newest version!
/*
 * FindBugs - Find bugs in Java programs
 * Copyright (C) 2003-2005 University of Maryland
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package edu.umd.cs.findbugs.detect;

import java.util.BitSet;

import org.apache.bcel.Const;
import org.apache.bcel.classfile.Code;
import org.apache.bcel.classfile.LineNumber;
import org.apache.bcel.classfile.LineNumberTable;

import edu.umd.cs.findbugs.BugAccumulator;
import edu.umd.cs.findbugs.BugInstance;
import edu.umd.cs.findbugs.BugReporter;
import edu.umd.cs.findbugs.BytecodeScanningDetector;
import edu.umd.cs.findbugs.StatelessDetector;

/**
 * 

A Detector to look for useless control flow. For example,

* *
 * if (argv.length == 1)
 *     ;
 * System.out.println("Hello, " + argv[0]);
 * 
* *

In this kind of bug, we'll see an ifcmp instruction where the IF target is * the same as the fall-through target. *

*

* The idea for this detector came from Richard P. King, and the idea of looking * for if instructions with identical branch and fall-through targets is from * Mike Fagan.

* * @author David Hovemeyer */ public class FindUselessControlFlow extends BytecodeScanningDetector implements StatelessDetector { private static final BitSet ifInstructionSet = new BitSet(); static { ifInstructionSet.set(Const.IF_ACMPEQ); ifInstructionSet.set(Const.IF_ACMPNE); ifInstructionSet.set(Const.IF_ICMPEQ); ifInstructionSet.set(Const.IF_ICMPNE); ifInstructionSet.set(Const.IF_ICMPLT); ifInstructionSet.set(Const.IF_ICMPLE); ifInstructionSet.set(Const.IF_ICMPGT); ifInstructionSet.set(Const.IF_ICMPGE); ifInstructionSet.set(Const.IFEQ); ifInstructionSet.set(Const.IFNE); ifInstructionSet.set(Const.IFLT); ifInstructionSet.set(Const.IFLE); ifInstructionSet.set(Const.IFGT); ifInstructionSet.set(Const.IFGE); ifInstructionSet.set(Const.IFNULL); ifInstructionSet.set(Const.IFNONNULL); } private final BugAccumulator bugAccumulator; public FindUselessControlFlow(BugReporter bugReporter) { this.bugAccumulator = new BugAccumulator(bugReporter); } @Override public void visit(Code obj) { super.visit(obj); bugAccumulator.reportAccumulatedBugs(); } @Override public void sawOpcode(int seen) { if (ifInstructionSet.get(seen)) { if (getBranchTarget() == getBranchFallThrough()) { int priority = NORMAL_PRIORITY; LineNumberTable lineNumbers = getCode().getLineNumberTable(); if (lineNumbers != null) { int branchLineNumber = lineNumbers.getSourceLine(getPC()); int targetLineNumber = lineNumbers.getSourceLine(getBranchFallThrough()); int nextLine = getNextSourceLine(lineNumbers, branchLineNumber); if (branchLineNumber + 1 == targetLineNumber || branchLineNumber == targetLineNumber && nextLine == branchLineNumber + 1) { priority = HIGH_PRIORITY; } else if (branchLineNumber + 2 < Math.max(targetLineNumber, nextLine)) { priority = LOW_PRIORITY; } } else { priority = LOW_PRIORITY; } bugAccumulator.accumulateBug(new BugInstance(this, priority == HIGH_PRIORITY ? "UCF_USELESS_CONTROL_FLOW_NEXT_LINE" : "UCF_USELESS_CONTROL_FLOW", priority) .addClassAndMethod(this), this); } } } public static int getNextSourceLine(LineNumberTable lineNumbers, int sourceLine) { int result = Integer.MAX_VALUE; for (LineNumber ln : lineNumbers.getLineNumberTable()) { int thisLine = ln.getLineNumber(); if (sourceLine < thisLine && thisLine < result) { result = thisLine; } } return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy