Tagged Questions
The dead-code tag has no wiki summary.
153
votes
17answers
18k views
How can I know which parts in the code are never used?
I have legacy C++ code that I'm supposed to remove unused code from. The problem is that the code base is large.
How can I find out which code is never called/never used?
58
votes
17answers
22k views
How to find unused/dead code in java projects
What tools do you use to find unused/dead code in large java projects? Our product has been in development for some years, and it is getting very hard to manually detect code that is no longer in use. ...
33
votes
6answers
3k views
Dead code identification (C++)
I have a large legacy C++ project compiled under Visual Studio 2008. I know there is a reasonably amount of 'dead' code that is not accessed anywhere -- methods that are not called, whole classes ...
26
votes
8answers
5k views
Dead code detection in legacy C/C++ project
How would you go about dead code detection in C/C++ code? I have a pretty large code base to work with and at least 10-15% is dead code. Is there any Unix based tool to identify this areas? Some ...
12
votes
5answers
638 views
find dead JavaScript code?
We are refactoring a legacy web app and as a result are "killing" quite a lot of JavaScript code but we're afraid of deleting what we think is dead code due to not being sure. Is there any tool / ...
11
votes
7answers
762 views
Quick and easy way to remove “dead” (commented out) code
I'm working with an inherited code base which contains thousands of lines of commented out code. I know the previous coder meant to save all his hard work for posterity rather than simply deleting it ...
10
votes
1answer
141 views
How can I detect dead code in an enterprise Java project (Java + JSP + Javascript)?
Does anyone know of a tool for detecting dead code in a Java EE project?
I've looked into lots of tools that do this well for pure Java projects, but nothing seems to really handle projects which ...
9
votes
5answers
608 views
Tools to detect Dead code in delphi2007 or above
Are there good tools to detect dead code in DELPHI2007 or above? That can integrate with the IDE?
The option to look at blue dots is just time consuming, so it’s ruled out.
8
votes
4answers
745 views
7
votes
4answers
1k views
How can you find unused functions in Python code?
So you've got some legacy code lying Python around in a fairly hefty project. How can you find and delete dead functions?
I've seen these two references: Find unused code and Tool to find unused ...
6
votes
2answers
201 views
Java Compiler: Stop complaining about dead code
For testing purposes, I often start typing some code in an already existing project. So, my code I want to test comes before all the other code, like this:
public static void main(String[] args)
{
...
6
votes
3answers
461 views
Java: Dead code elimination
I'd like to know how Java would handle the following scenario:
Suppose I have a class called Debug, which looks like this:
public class Debug
{
private static final boolean isAssertEnabled = ...
6
votes
4answers
772 views
How can you tell if a PL/SQL Package, Procedure, or Function is being used?
How can you tell if a PL/SQL Package, Procedure, or Function is being used? Is there an Oracle table or view that contains statistics on PL/SQL Package, Procedure, or Function usage?
6
votes
4answers
3k views
Automated Dead code detection in native C++ application on Windows?
Background
I have an application written in native C++ over the course of several years that is around 60 KLOC. There are many many functions and classes that are dead (probably 10-15% like the ...
5
votes
2answers
222 views
How to remove dead code from Javascript
I am trying to remove unused functions from my project. Since it has thousands of
lines, this takes forever.
Code coverage tools may suggest functions that are not used in a given test case, and
...
5
votes
8answers
520 views
Finding unused (aka “dead”) code in Delphi
Are there any tools that can determine if a function/procedure/method/entire class is used?
I've seen tools that can help a knowledgeable developer track down unused fragments of code (most are for ...
5
votes
6answers
6k views
Unreachable code error vs. dead code warning in Java under Eclipse?
Does anyone know why:
public void foo()
{
System.out.println("Hello");
return;
System.out.println("World!");
}
Would be reported as an "unreachable error" under Eclipse, but
public ...
4
votes
2answers
376 views
Dead code detection in ruby
Does anyone know of a production worthy package commercial or OSS that can detect which lines of code have been executed or not?
We're looking around for some tools that can help us detect dead code ...
4
votes
2answers
689 views
Using GCC to find unreachable functions (“dead code”)
Hey guys, I was looking for a way of finding statically unreachable functions in a (very) big C++ project. I had tried using doxygen and other static analysis tools suggested here but it seemed that ...
3
votes
3answers
148 views
Delphi - What routines are NOT called? [closed]
Possible Duplicate:
Tools to detect Dead code in delphi2007 or above
Is there a way to determine what functions/procedures are in my .pas files which are NOT called?
For example, I have a ...
3
votes
3answers
216 views
.NET find dead code across multiple solutions
We have a product with ~15 solutions with each a number of projects.
The question is quite simple: Which tool will enable us to search the entire codebase for dead code?
Searching within a single ...
3
votes
2answers
312 views
Xcode — finding dead methods in a project
I am curious if there are any tools that provide partial solutions for this. It is a tricky problem because of performSelector . . . but a tool ought to at least be able to come up with candidates, ...
3
votes
3answers
247 views
How to disable dead code elimination in the Java compiler?
This may seem a strange question... Why would anyone want to disable such a thing? But I know what I'm doing (and why I want/need to do this) and I really want to disable dead code elimination.
Is it ...
3
votes
2answers
204 views
Finding dead PHP5 classes/methods
Is there any tools to check for dead code for PHP5? Something like
Scan classes with Reflection
Follow "normal" code with token_get_all() and find variables with token T_NEW and then scan for method ...
3
votes
8answers
581 views
Is there a way to locate unused event handlers in Delphi?
Finding dead code in Delphi is usually real simple: just compile and then scan for routines missing their blue dots. The smart linker's very good about tracking them down, most of the time.
Problem ...
2
votes
2answers
104 views
Are unused classes compiled by Xcode when building an app?
If something is not used in C++, it's not compiled at all. Is the same true for iPhone?
If I compile a program and there are unused classes or other stuff, will it be compiled or ignored?
2
votes
3answers
336 views
Static analysis on a C project
I am trying to run static analysis on a C project to identify dead code i.e functions or code lines that are never ever called. I can build this project with Visual Studio .Net for Windows or using ...
2
votes
1answer
379 views
“VFY: dead code” when attempting to use getBytes(Charset)
Everything was working fine in my app. Then, I did a small refactoring and a key component stopped working. When I looked at the LogCat output, this is what I found:
WARN/dalvikvm(488): VFY: unable ...
2
votes
7answers
548 views
How to keep unreachable code?
I'd like to write a function that would have some optional code to be executed or not depending on user settings. The function is cpu-intensive and having ifs in it would be slow since the branch ...
2
votes
2answers
914 views
Visual Studio - plugin finding/removing dead code?
Anyone knows any free Visual Studio add-in that would find and/or delete dead (unused) code? I saw such possibility in MZ-Tools, but it's a little expensive as for private use ;)
2
votes
8answers
253 views
How do you define 'unwanted code'?
How would you define "unwanted code"?
Edit:
IMHO, Any code member with 0 active calling members (checked recursively) is unwanted code. (functions, methods, properties, variables are members)
2
votes
2answers
197 views
“Dead code” in Xilinx
I have some VHDL code I'm writing for a class. However, the synthesis tool identifies cell3, cell2, and cell1 as "dead" code and it won't synthesize it.
I really have no idea what's going on to ...
1
vote
6answers
214 views
Unreachable statement in java while loop
While loking up "dead code" thread here
dead code warning in eclipse
I tried the following simple java code:
public class Test2
{
public static void main(String[] args)
{
int x = 0; ...
1
vote
1answer
142 views
My Simpler Dead-code Remover
I am doing a stimulation of dead-code remover in a very simpler manner.
For that my Idea is to,
Step 1: Read the input C-Program line by line and store it in a doubly linked-list or Array.(Since ...
1
vote
2answers
181 views
What is AST,CFG,CLANG, how can we use it in deadcode removal algorithm? [closed]
I am about to write a dead-code removal algorithm using C language for an online event with our team.
The requirements are.....
To read a C program source file,Which has many forms of dead-codes.
...
1
vote
2answers
103 views
Finding unused code in Java with AspectJ
I have an idea for finding unused ('dead') methods in a large Java project but I need help deriving an implementation.
Use AspectJ to add a 'before' aspect to ALL methods in project packages. The ...
1
vote
3answers
629 views
Eclipse's Dead Code warning when it is reachable?
Why Eclipse gives me a dead code warning in the fourth line of the following method? How can it not be reachable?
private void writeToSequenceFile() {
try {
CustomFileWriter nBatchWriter = new ...
0
votes
1answer
19 views
SuppressWarnings “all” complaint from Eclipse
What is wrong with the SuppressWarnings annotation above the if statement? Eclipse with Sun JDK 6 provides two syntax error descriptions, both unhelpful and hard to understand, shown in comments.
...
0
votes
1answer
109 views
Eclipse marks lines as dead code
I have this function with some dead code, marked by Eclipse.
I have two lines that check a & b. Lines that check b are marked as null.
public int[] runThis(List<Integer> buildIds, ...
0
votes
1answer
151 views
VFY: dead code error in modified Sony Ericsson Launcher
I am in the process of making the corner circles work on hdpi devices. Everything works except pressing the "add" button (long pressing screen as well), and pressing the sorting style button in the ...
0
votes
4answers
115 views
Dead code warning
while(true){
try
{
if(Calendar.DATE == X){
startTask();
}
long delay = timeUntilNextCheck();
Thread.sleep(delay);
}
catch (Throwable t)
...
0
votes
3answers
203 views
Dead code with Xcode anaylser
i wanted to analyse my projet, and xcode analyser find some Dead Code in my rootcontroller
Xcode tell me that :
Dead code
The left operand to '+' is always 0
-> Variable 'i' initialized to 0
...
0
votes
4answers
97 views
Minimize code in reference to read/write operations
I started with the following code:
class Vereinfache2_edit {
public static void main(String[] args) {
int c1 = Integer.parseInt(args[0]);
int c2 = Integer.parseInt(args[1]);
...
0
votes
1answer
203 views
Dead Code error
I'm getting a dead code error in this Java code snippet, using Eclipse:
public void rebirthAction() {
Player p = new Player(null);
Equipment e = new Equipment();
Skills s = new ...
0
votes
3answers
460 views
static variable initialisation code never gets called
I've got an application that's using a static library I made. One .cpp file in the library has a static variable declaration, whose ctor calls a function on a singleton that does something- e.g. adds ...
-1
votes
2answers
75 views
Disabling specific optimization(Dead code elimination) in gcc compiler
I would like to disable dead code elimination optimization in c++ compilation. Is there a way to disable this particular optimization by keeping all other -O optimization. I tried with -fnodce but its ...
-1
votes
1answer
72 views
Dead code in lesscss javascript compiler [closed]
it looks like there is a bunch of dead code (code that is commented out) in the lesscss javascript compiler code. Is there a reason for this? When downloading right from the website the file is ...