/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}} 110 // Handle 'try' code dominating a dead return. 301 if (false) calledFun(); // expected-warning {{will never be executed}} expected-note {{silence by adding parentheses to mark code as explicitly dead}} 304 if (true) // expected-note {{silence by adding parentheses to mark code as explicitly dead}} 314 if (!true) // expected-note {{silence by adding parentheses to mark code as explicitly dead}} 331 if (0) calledFun(); // expected-warning {{will never be executed}} expected-note {{silence by adding parentheses to mark code as explicitly dead}} [all...] |
/external/clang/test/SemaObjC/ |
warn-unreachable.m | 56 if (NO) calledFun(); // expected-warning {{will never be executed}} expected-note {{silence by adding parentheses to mark code as explicitly dead}} 59 if (YES) // expected-note {{silence by adding parentheses to mark code as explicitly dead}} 69 if (!YES) // expected-note {{silence by adding parentheses to mark code as explicitly dead}}
|
/build/core/ |
proguard.flags | 6 # Don't obfuscate. We only need dead code striping.
|
/external/chromium_org/chrome/browser/ui/ |
sad_tab_types.h | 14 SAD_TAB_KIND_KILLED // Tab killed. Display the "He's dead, Jim!" tab page.
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
dead-code5.js | 51 a == 2 ? (a * b) : (b * a); // dead 58 z * 3; // dead 66 z * 3; // dead 70 return a; // w is dead
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
package.html | 8 bytecode, find dead bytecode, and identify unnecessary checkcasts.
|
/external/llvm/test/CodeGen/AArch64/ |
arm64-arm64-dead-def-elimination-flag.ll | 1 ; RUN: llc -march=arm64 -aarch64-dead-def-elimination=false < %s | FileCheck %s
|
/external/llvm/test/CodeGen/PowerPC/ |
and-elim.ll | 7 %Z = and i8 %Y, 254 ; dead and
|
/external/llvm/test/Transforms/GVN/ |
null-aliases-nothing.ll | 12 %after = load i32* %p ; <--- This should be a dead load
|
/external/llvm/test/Transforms/GlobalDCE/ |
2002-08-17-FunctionDGE.ll | 2 ; a global that is dead. Make sure any globals they refer to die as well.
|
/external/llvm/test/Transforms/SimplifyCFG/ |
2002-05-21-PHIElimination.ll | 1 ; CFG Simplification is making a loop dead, then changing the add into:
|
/frameworks/base/services/core/java/com/android/server/am/ |
ContentProviderConnection.java | 35 // The provider of this connection is now dead. 36 public boolean dead; field in class:ContentProviderConnection 87 if (dead) { 88 sb.append(" DEAD");
|
/hardware/intel/img/libdrm/libdrm/ |
ChangeLog | 18 Formatting cleanup, dead code removal. Remove N() namespacing macro,
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
readin.good | 11 I do not need my freedom when I'm dead.
|
readin.inp | 8 I do not need my freedom when I'm dead.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
DefaultPhoneNotifier.java | 71 // system process is dead 92 // system process is dead 106 // system process is dead 121 // system process is dead 134 // system process is dead 147 // system process is dead 192 // system process is dead 204 // system process is dead 218 // system process is dead 252 // system process is dead [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
thread.h | 20 bool dead; /* if set thread has exited */ member in struct:thread 33 thread->dead = true;
|
/external/llvm/lib/Target/AArch64/ |
AArch64DeadRegisterDefinitionsPass.cpp | 1 //==-- AArch64DeadRegisterDefinitions.cpp - Replace dead defs w/ zero reg --==// 9 // When allowed by the instruction, replace a dead definition of a GPR with 24 #define DEBUG_TYPE "aarch64-dead-defs" 26 STATISTIC(NumDeadDefsReplaced, "Number of dead definitions replaced"); 41 const char *getPassName() const override { return "Dead register definitions"; } 73 // dead def it uses a frame index which might expand into a multi 82 DEBUG(dbgs() << " Dead def operand #" << i << " in:\n "; 119 // Scan the function for instructions that have a dead definition of a
|
/external/llvm/test/CodeGen/X86/ |
2011-10-11-SpillDead.ll | 9 ; The asm has a dead output tied to %x. 10 ; Verify that the spiller creates a value number for that dead def.
|
handle-move.ll | 10 ; Here sinking a kill + dead def: 11 ; 144B -> 180B: DIV32r %vreg4, %EAX<imp-def>, %EDX<imp-def,dead>, %EFLAGS<imp-def,dead>, %EAX<imp-use,kill>, %EDX<imp-use> 28 ; 144B -> 180B: DIV32r %vreg4, %EAX<imp-def,dead>, %EDX<imp-def>, %EFLAGS<imp-def,dead>, %EAX<imp-use,kill>, %EDX<imp-use> 61 ; Move EFLAGS dead def across another def: 62 ; handleMove 208B -> 36B: %EDX<def> = MOV32r0 %EFLAGS<imp-def,dead>
|
/external/llvm/test/Transforms/ADCE/ |
2003-04-25-PHIPostDominateProblem.ll | 3 ; PHI node is dead, so we just avoid patching up dead PHI nodes.
|
/external/llvm/test/Transforms/DeadStoreElimination/ |
const-pointers.ll | 10 store i32 1, i32* %p; <-- This is dead 21 store i32 1, i32* @g; <-- This is dead.
|
/external/llvm/test/Transforms/LoopStrengthReduce/ |
ops_after_indvar.ll | 1 ; Check that this test makes INDVAR and related stuff dead, because P[indvar] 2 ; gets reduced, making INDVAR dead.
|
/external/llvm/lib/CodeGen/ |
DeadMachineInstructionElim.cpp | 1 //===- DeadMachineInstructionElim.cpp - Remove dead machine instructions --===// 10 // This is an extremely simple MachineInstr-level dead-code-elimination pass. 27 STATISTIC(NumDeletes, "Number of dead instructions deleted"); 51 INITIALIZE_PASS(DeadMachineInstructionElim, "dead-mi-elimination", 52 "Remove dead machine instructions", false, false) 83 // If there are no defs with uses, the instruction is dead. 97 // more likely that chains of dependent but ultimately dead instructions will 115 // Now scan the instructions and delete dead ones, tracking physreg 121 // If the instruction is dead, delete it! 159 // Register mask of preserved registers. All clobbers are dead [all...] |
/external/llvm/test/Analysis/BasicAA/ |
modref.ll | 40 store i8 1, i8* %P2 ;; Not dead across memset 51 ;; FIXME: DSE isn't zapping this dead store. 52 store i8 1, i8* %P2 ;; Dead, clobbered by memset. 65 %Y = add i8 %X, 1 ;; Dead, because the only use (the store) is dead. 79 %Y = add i8 %X, 1 ;; Dead, because the only use (the store) is dead.
|