Dead code is code in the source code of a program which is executed but whose result is never used or a code that can never be reached or used.
0
votes
1answer
18 views
I need a way to remove “dead pages” from an ASP.NET 2.0-4.0 site
I've taken over about 30 projects at a company. Through the years the guy who ran things worked directly on the server. There's tons of dead pages that cause Visual Studio to break.
I have JetBrains ...
1
vote
1answer
49 views
How to make closure compiler to remove all dead code with advanced optimization in larger projects?
The following code:
function f(a) { a.a = 5; return a; }
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() {});
f(function() ...
1
vote
1answer
42 views
ClosureCompiler removing dead code with advanced optimizations
The following code:
(function() {
var hello = function(name) {
alert('Hello, ' + name);
}
hello('New user');
})();
with ADVANCED_OPTIMIZATIONS is compiled to:
alert("Hello, New user");
But ...
3
votes
1answer
74 views
GLSL: Removal of dead code causes visual errors
I've been having a lot of strange problem's while trying to write a raytracer in an opengl shader. I try to determine if the source of the error is myself, and often this is the case, but I've come to ...
22
votes
4answers
899 views
Does “dead” code hinder Java application performance?
I just installed the Unnecessary Code Detector for Eclipse and ran it on my project. I see a lot of so-called "dead code". Although, from an organizational standpoint, it makes sense to remove ...
1
vote
0answers
91 views
VS C++ Dead code elimination
I have a small project in C++ VS 2010, which uses a couple of static link libraries(.lib files).
This options are turned on: OPT:REF, OPT:ICF, /GL, GR-
When I add unused method to a class, which ...
1
vote
2answers
85 views
How to detect unreferenced C/C++ code on Visual Studio 2005? [duplicate]
I've being using Visual Studio 2005 for several years, and usually projects grow and grow, but now I have a project that is going down size, I'm taking away a big chunk of it (almost half of it)... I ...
3
votes
3answers
113 views
Dead code warning in while loop with 2 if's
I can't see why Eclipse gives me a dead code warning for the code in the second if condition:
boolean frameErreicht = false;
while (!frameErreicht) {
String line = reader.readLine();
...
6
votes
3answers
115 views
Unwanted Dead Code Warning in Eclipse
The following code gives me a 'Dead Code' warning in Eclipse:
private void add(Node<E> n, E element) {
Node<E> e = new Node<E>(element);
if (n == null)
...
1
vote
5answers
118 views
C++ - What's the proper way to perform a speed test?
I searched many questions which asked related information, but the answers didn't quiet match exactly what I wanted for an answer. I'll try to explain the issue as best I can.
Basically when running ...
3
votes
1answer
99 views
What kind of code is a JavaScript engine likely to elide?
(This is a bit of an X-Y problem, but I decided to ask the question that interests me, rather than the one I strictly need at the moment.) I know the various modern JavaScript engines have dead code ...
0
votes
2answers
112 views
Value Stored to 'valid' is never read [closed]
I have a validation method by which I analyse whether a particular variable passes a validation criteria.
Here's the code:
-(BOOL)validateFields{
BOOL valid = FALSE;
if (dateEntry != TRUE ...
1
vote
1answer
138 views
Strange behaviour of gcc, well its ld (linker) options to remove unused functions
I am trying to remove unused functions (having no calls made to them) in my code which is built on x86 / Linux using gcc/g++.
I use below options as I read from the gcc manual:
CCFLAGS = ...
9
votes
1answer
197 views
Find Dead Rails Code
What is a good way to find methods in a that are not being called anymore? I'm in the process of refactoring a large Rails application and the worst thing you can find is code that is not being used ...
0
votes
2answers
60 views
How to better initialize strings to avoid dead stores
I found a few questions like this but I couldn't find this particular question. I have a number of strings that are initialized as
NSString *string = [[NSString alloc] init];
which are then ...
4
votes
5answers
205 views
Why does Eclipse complain about dead code? [closed]
Eclipse keep stating that the last elseif and the else is dead code but I don't get it.
if (img0 != null && img1 != null) {
code;
} else if (img0 != null) {
code;
} else if ...
1
vote
2answers
169 views
Dynamic dead code elimination tools for complex C++ projects
We have a project with a lot of code, part of it is legacy.
As part of the work flow, every once in a while, all the functionality of the product is checked.
I wonder if there is a way to use this ...
-2
votes
2answers
276 views
How do I remove dead code from an EXE file? [duplicate]
Possible Duplicate:
Reduce exe file
What are some tools that, given an EXE file, remove all unused code and make a new EXE file with code really used by the application? I think that ...
1
vote
2answers
283 views
dead code warning in the i++ part in the for loop
This code keeps giving me a dead code warning on the i++ in the for loop and it is not incrementing the i for some reason!
import java.util.Scanner;
public class HideThatNumber {
/**
* ...
0
votes
1answer
92 views
How to make an object file that cannot be dead_stripped?
What is the easiest way to produce a Mach-O object file that does not have the SUBSECTIONS_VIA_SYMBOLS flag set, such that the linker (with -dead_strip) will not later try to cut the text section into ...
1
vote
1answer
120 views
Does GCC LTO perform cross-file dead code elimination?
Say I have a function
void do_something() {
//....
#ifdef FEATURE_X
feature_x();
#endif
//....
}
I can compile and run this with no problems; if I want the feature I can ...
0
votes
1answer
150 views
Gcc dead code removal with specific functions used
Lets say I have a large library liblarge, and application app which links to liblarge.
Liblarge is under the LGPL license, and app is under a proprietary one. I'd like to be able to remove all "dead ...
0
votes
1answer
66 views
Methods for selectively compiling a framework C++?
I would like to selectively compile part of an (extremely bloated and large) framework only as the elements are used.
I've had a few ideas on how I can do this, but failed to implement either ...
0
votes
0answers
70 views
When rewriting code with Javassist for a method. All the code after one statement seems to be missing
I am writing some dynamic handler code for events triggered in our system using Javassist. However when rewriting code for a method, all the code after a certain statement seems to be missing even ...
-4
votes
3answers
231 views
Dead code warning where it shouldn't be
I have a very simple Java code, like this (this is just an excerpt):
for(;;)
{
AnObject object = null;
for(AnObject elem : list) // where the list is of the type List<AnObject>
{
...
1
vote
1answer
276 views
Javascript : Event listener defined inside function of object literal making the code dead
I have created the following code
http://jsfiddle.net/N65yS/41/
..
My problem is this..
When I click on the 'draw' button ,for the first time it is working..Succeding clicks on the button is not ...
0
votes
0answers
239 views
Find dead code in JSPs using PMD
I´m trying to find dead code in JSPs using PMD.
I installed it on RAD, but it seems that only works for java code.
I read this page jspSupport. My JSPs are XHTML-compliant but I don´t ...
0
votes
1answer
298 views
dead code android setMultiChoiceItems
i use setMultiChoiceItems for a list in a dialog.
when click on ok the code is
.setPositiveButton(R.string.alert_remove, new DialogInterface.OnClickListener(){
public void onClick(DialogInterface ...
3
votes
1answer
269 views
Remove dead code in JSP
I have a big project with a lot of code (most in JSP) and I like to find a tool that can remove dead code from all the JSP. Do you know or recommended me a good tool?
I've looked into lots of tools ...
0
votes
1answer
159 views
How to tailor a jQuery based javascript library to my own needs?
I use a library which provides lots and lots of utility functions. It's based on jQuery, so I have to include jQuery too. Both of these libraries are huge in size but I only use a single functionality ...
-1
votes
2answers
560 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
vote
1answer
506 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.
...
-1
votes
1answer
178 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 ...
4
votes
1answer
564 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, ...
3
votes
3answers
235 views
Delphi - What routines are NOT called? [duplicate]
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 ...
1
vote
1answer
502 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
276 views
Dead code warning
while(true){
try
{
if(Calendar.DATE == X){
startTask();
}
long delay = timeUntilNextCheck();
Thread.sleep(delay);
}
catch (Throwable t)
...
0
votes
6answers
924 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; ...
2
votes
2answers
357 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
1answer
245 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
562 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.
...
11
votes
1answer
348 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 ...
0
votes
3answers
848 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
...
1
vote
2answers
273 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 ...
12
votes
2answers
2k 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
...
2
votes
3answers
1k views
Find unused functions in a C project by static analysis
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 ...
7
votes
3answers
690 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 ...
2
votes
1answer
1k 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 ...
5
votes
2answers
369 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
2answers
986 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 ...



