/dalvik/dx/tests/031-bb-dead-code/ |
expected.txt | 16 dead code 0001..0002 22 dead code 0001..0003 29 dead code 0002..0005 35 dead code 0001..0007 41 dead code 0003..0004 54 dead code 0005..0006 64 dead code 0014..001b 74 dead code 001c..001e 87 dead code 0004..0005 100 dead code 0004..000 [all...] |
/dalvik/dx/tests/003-magic-version-access/ |
class-bad-magic.txt | 5 dead babe # magic
|
/external/llvm/test/Analysis/ScalarEvolution/ |
unreachable-code.ll | 10 dead:
|
/external/llvm/test/Transforms/InstCombine/ |
nothrow.ll | 6 call double @t1(i32 42) ;; dead call even though callee is not nothrow.
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/ |
DeadKeyCombiner.java | 25 * A combiner that handles dead keys. 39 // TODO: Allow combining for several dead chars rather than only the first one. 46 // We can't combine both characters. We need to commit the dead key as a committable 48 // dead key + space should result in only the dead key being committed - that's 49 // how dead keys work). 50 // If the event is a space, we should commit the dead char alone, but if it's
|
/external/clang/test/SemaCXX/ |
warn-unreachable.cpp | 5 int dead(); 35 dead(); // expected-warning {{will never be executed}} 46 dead() : dead(); 107 dead(); // expected-warning {{will never be executed}}
|
/external/llvm/test/CodeGen/X86/ |
2010-04-08-CoalescerBug.ll | 4 ; Do not delete partially dead copy instructions. 5 ; %RDI<def,dead> = MOV64rr %RAX<kill>, %EDI<imp-def> 6 ; REP_MOVSD %ECX<imp-def,dead>, %EDI<imp-def,dead>, %ESI<imp-def,dead>, %ECX<imp-use,kill>, %EDI<imp-use,kill>, %ESI<imp-use,kill>
|
/external/llvm/test/Transforms/DeadArgElim/ |
multdeadretval.ll | 4 ; any remaining dead stuff. 14 %DEAD = call i16 @test4() 16 %B = insertvalue {i32,i16} %A, i16 %DEAD, 1 20 ; Dead argument, used to check if the second result of test2 is dead even when 21 ; it's used as a dead argument 24 %DEAD = extractvalue {i16, i32} %ret, 0 52 %DEAD = extractvalue {i32, i16} %ret, 1 54 %LIVE2 = call i32 @test3(i16 %DEAD) ; <i32> [#uses=1]
|
basictest.ll | 3 ; test - an obviously dead argument 10 ; dead argument. 17 ; evenhardertest - recursive dead argument...
|
/external/llvm/lib/Transforms/Scalar/ |
DCE.cpp | 1 //===- DCE.cpp - Code to perform dead code elimination --------------------===// 10 // This file implements dead inst elimination and dead code elimination. 12 // Dead Inst Elimination performs a single pass over the function removing 13 // instructions that are obviously dead. Dead Code Elimination is similar, but 15 // they are newly dead. 63 "Dead Instruction Elimination", false, false) 89 INITIALIZE_PASS(DCE, "dce", "Dead Code Elimination", false, false) 99 // Loop over the worklist finding instructions that are dead. If they ar [all...] |
ADCE.cpp | 1 //===- DCE.cpp - Code to perform dead code elimination --------------------===// 10 // This file implements the Aggressive Dead Code Elimination pass. This pass 11 // optimistically assumes that all instructions are dead until proven otherwise, 12 // allowing it to eliminate dead computations that other DCE passes do not 50 INITIALIZE_PASS(ADCE, "adce", "Aggressive Dead Code Elimination", false, false) 76 // The inverse of the live set is the dead set. These are those instructions
|
/external/llvm/test/Transforms/SimplifyCFG/ |
switch_thread.ll | 2 ; RUN: not grep "call void @DEAD" 10 declare void @DEAD() 28 call void @DEAD( ) 29 call void @DEAD( ) 46 call void @DEAD( ) 67 call void @DEAD( )
|
/dalvik/dx/tests/087-ssa-local-vars/ |
info.txt | 1 This is a test case to ensure proper preservation of local variable information through the register renamer and dead code remover at the beginning of the SSA conversion.
|
/external/llvm/test/Transforms/GlobalOpt/ |
trivialstore.ll | 15 define internal void @dead() {
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
times.h | 40 clock_t tms_cutime; /* User CPU time of dead children. */ 41 clock_t tms_cstime; /* System CPU time of dead children. */ 46 dead children (and their dead children) in BUFFER.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
times.h | 40 clock_t tms_cutime; /* User CPU time of dead children. */ 41 clock_t tms_cstime; /* System CPU time of dead children. */ 46 dead children (and their dead children) in BUFFER.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
times.h | 40 clock_t tms_cutime; /* User CPU time of dead children. */ 41 clock_t tms_cstime; /* System CPU time of dead children. */ 46 dead children (and their dead children) in BUFFER.
|
/external/llvm/test/CodeGen/PowerPC/ |
delete-node.ll | 3 ; The DAGCombiner leaves behind a dead node in this testcase. Currently 4 ; ISel is ignoring dead nodes, though it would be preferable for 5 ; DAGCombiner to be able to eliminate the dead node.
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
dead-code.js | 30 return a; // x is dead 36 return a; // x and y are both dead 43 return a; // z is dead 51 return a; // z is dead 60 return a; // z is dead
|
dead-code2.js | 30 return a; // x is dead 35 return a; // x and y are both dead 44 return a; // z is dead 54 return a; // z is dead 65 return a; // z and w are dead
|
/external/llvm/test/Transforms/GVN/ |
rle-must-alias.ll | 1 ; RUN: opt < %s -basicaa -gvn -S | grep "DEAD = phi i32 " 4 ; allows DEAD to be removed. This is PR3198. 6 ; The %7 and %4 loads combine to make %DEAD unneeded. 35 %DEAD = load i32* %9, align 4 ; <i32> [#uses=1] 36 ret i32 %DEAD
|
/external/llvm/lib/Transforms/IPO/ |
StripDeadPrototypes.cpp | 11 // dead declarations and removes them. Dead declarations are declarations of 17 #define DEBUG_TYPE "strip-dead-prototypes" 24 STATISTIC(NumDeadPrototypes, "Number of dead prototypes removed"); 41 INITIALIZE_PASS(StripDeadPrototypesPass, "strip-dead-prototypes", 47 // Erase dead function prototypes. 58 // Erase dead global var prototypes.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
DefaultPhoneNotifier.java | 55 // system process is dead 69 // system process is dead 78 // system process is dead 87 // system process is dead 96 // system process is dead 105 // system process is dead 144 // system process is dead 153 // system process is dead 164 // system process is dead 182 // system process is dead [all...] |
/frameworks/base/core/java/android/nfc/tech/ |
BasicTagTechnology.java | 65 Log.e(TAG, "NFC service dead", e); 88 Log.e(TAG, "NFC service dead", e); 111 Log.e(TAG, "NFC service dead", e); 125 Log.e(TAG, "NFC service dead", e); 137 Log.e(TAG, "NFC service dead", e); 154 Log.e(TAG, "NFC service dead", e);
|
/build/core/ |
proguard.flags | 6 # Don't obfuscate. We only need dead code striping.
|