/external/llvm/test/Transforms/DeadStoreElimination/ |
simple.ll | 9 %DEAD = load i32* %Q 10 store i32 %DEAD, i32* %P 65 store i32 10, i32* %p, align 4 ;; dead. 76 store i32 10, i32* %p, align 4 ;; dead. 128 ; DSE should delete the dead trampoline. 158 ; %P doesn't escape, the DEAD instructions should be removed. 163 %DEAD = load i32* %P 164 %DEAD2 = add i32 %DEAD, 1 181 %DEAD = load i32* %Q 182 store i32 %DEAD, i32* % [all...] |
free.ll | 13 %DEAD = load i32* %Q ; <i32> [#uses=1] 14 store i32 %DEAD, i32* %P
|
/external/qemu/audio/ |
noaudio.c | 101 int dead = hw->samples - live; local 104 if (dead) { 113 samples = audio_MIN (samples, dead);
|
/external/chromium_org/v8/test/cctest/compiler/ |
test-phi-reducer.cc | 22 dead(graph.NewNode(common.Dead())) { 30 Node* dead; member in class:PhiReducerTester 226 R.CheckReduce(singles[i], R.PhiWithControl(singles[i], R.dead)); 227 R.CheckReduce(singles[i], R.PhiWithControl(R.self, singles[i], R.dead)); 228 R.CheckReduce(singles[i], R.PhiWithControl(singles[i], R.self, R.dead));
|
/external/ipsec-tools/src/racoon/ |
schedule.c | 90 if (p->dead) 99 /* mark it with dead. and call the function. */ 100 p->dead = 1; 148 new->dead = 0; 201 sc->dead = 1; 215 if (!sc->dead) {
|
schedule.h | 51 int dead; /* dead or alive */ member in struct:sched
|
/external/chromium_org/content/browser/ |
child_process_launcher.h | 57 // |known_dead| can be true if we already know the process is dead as it can 60 // accurate status is important. With |known_dead| set to false, a dead
|
/external/chromium_org/net/third_party/nss/ssl/ |
sslmutex.h | 15 * dead holder. 18 * discover and release semaphores that were held by a dead process.
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_live_variables.cpp | 226 * first store, and use[] as the last use. We use this in dead code 233 * considers a def after the last use, then the dead code elimination pass 235 * include dead code, then virtual_grf_interferes() lies and we'll do 236 * horrible things like coalesce the register that is dead-code-written 237 * into another register that was live across the dead write (causing the 238 * use of the second register to take the dead write's source value instead 242 * detect dead code, nuke it, and if we changed anything, calculate again 256 /* If there's dead code (def but not use), it would break our test
|
/external/chromium_org/ui/base/ime/chromeos/ |
character_composer.h | 16 // A class to recognize compose and dead key sequence. 46 // Composite a character with dead-keys and compose-key.
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
dead-code6.js | 29 // Test some dead code elimination scenarios 56 a == 2 ? (a * b) : (b * a); // dead
|
/external/llvm/include/llvm/Transforms/Utils/ |
SimplifyIndVar.h | 61 SmallVectorImpl<WeakVH> &Dead, IVVisitor *V = nullptr); 66 SmallVectorImpl<WeakVH> &Dead);
|
/external/llvm/lib/Transforms/IPO/ |
GlobalDCE.cpp | 70 "Dead Global Elimination", false, false) 138 // The first pass is to drop initializers of global variables which are dead. 139 std::vector<GlobalVariable*> DeadGlobalVars; // Keep track of dead globals 143 DeadGlobalVars.push_back(I); // Keep track of dead globals 147 // The second pass drops the bodies of functions which are dead... 151 DeadFunctions.push_back(I); // Keep track of dead globals 156 // The third pass drops targets of aliases which are dead... 185 // Now delete any dead aliases.
|
/external/llvm/test/CodeGen/X86/ |
fp-stack-2results.ll | 50 ; Uses ST(0), ST(1) is dead but must be popped. 58 ; Uses ST(1), ST(0) is dead and must be popped.
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_live_variables.cpp | 226 * first store, and use[] as the last use. We use this in dead code 233 * considers a def after the last use, then the dead code elimination pass 235 * include dead code, then virtual_grf_interferes() lies and we'll do 236 * horrible things like coalesce the register that is dead-code-written 237 * into another register that was live across the dead write (causing the 238 * use of the second register to take the dead write's source value instead 242 * detect dead code, nuke it, and if we changed anything, calculate again 256 /* If there's dead code (def but not use), it would break our test
|
/external/llvm/include/llvm/CodeGen/ |
LiveIntervalAnalysis.h | 150 /// defs for new uses, and it doesn't remove dead defs. 151 /// Dead PHIDef values are marked as unused. 152 /// New dead machine instructions are added to the dead vector. 156 SmallVectorImpl<MachineInstr*> *dead = nullptr); 159 /// are dead. Dead values are not deleted, however: 160 /// - Dead PHIDef values are marked as unused. 161 /// - New dead machine instructions are added to the dead vector [all...] |
/external/llvm/lib/CodeGen/ |
LiveRangeEdit.cpp | 167 SmallVectorImpl<MachineInstr*> &Dead) { 218 Dead.push_back(DefMI); 225 assert(MI->allDefsAreDead() && "Def isn't really dead"); 245 DEBUG(dbgs() << "Deleting dead def " << Idx << '\t' << *MI); 331 void LiveRangeEdit::eliminateDeadDefs(SmallVectorImpl<MachineInstr*> &Dead, 336 // Erase all dead defs. 337 while (!Dead.empty()) 338 eliminateDeadDef(Dead.pop_back_val(), ToShrink); 343 // Shrink just one live interval. Then delete new dead defs. 346 if (foldAsLoad(LI, Dead)) [all...] |
/art/test/111-unresolvable-exception/src/ |
Main.java | 28 if (b) { // Need this to not be dead code, but also not be invoked.
|
/external/chromium_org/base/mac/ |
scoped_mach_port.h | 52 // outstanding send rights into dead names.
|
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
terms_of_service_screen_actor.h | 26 // Called when actor is destroyed so there is no dead reference to it.
|
/external/chromium_org/chrome/browser/performance_monitor/ |
process_metrics_history.h | 35 // dead ones.
|
/external/chromium_org/mojo/embedder/ |
BUILD.gn | 48 # hopefully be dead-stripped.
|
/external/chromium_org/testing/gtest/xcode/Config/ |
ReleaseProject.xcconfig | 24 // Dead code strip does not affect ObjC code but can help for C
|
/external/chromium_org/third_party/mach_override/ |
mach_override.gyp | 38 # by mach_override. Normally, it would be possible to let dead
|
/external/llvm/test/Analysis/ScalarEvolution/ |
scev-invalid.ll | 3 ; PR15570: SEGV: SCEV back-edge info invalid after dead code removal.
|