HomeSort by relevance Sort by last modified time
    Searched full:dead (Results 276 - 300 of 1680) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenObjC/
exceptions.m 5 // Just check that we don't emit any dead blocks.
70 // This store is dead.
  /external/kernel-headers/original/linux/
if_pppox.h 243 PPPOX_ZOMBIE = 8, /* dead, but still bound to ppp device */
244 PPPOX_DEAD = 16 /* dead, useless, please clean me up!*/
  /external/llvm/docs/
Lexicon.rst 16 Aggressive Dead Code Elimination
77 Dead Store Elimination
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 363 /// dead. Since this doesn't produce an exact copy of the input, it can't be
403 if (NewBB == 0) continue; // Dead block.
408 // Handle PHI nodes specially, as we have to remove references to dead
431 // that are dead.
452 // The loop above has removed PHI entries for those blocks that are dead
521 // Check if this block has become dead during inlining or other
522 // simplifications. Note that the first block will appear dead, as it has
535 // and we still want to prune the dead code as early as possible.
  /external/llvm/test/CodeGen/Hexagon/
remove_lsr.ll 13 ; This makes the lsr instruction dead and it gets removed subsequently
14 ; by a dead code removal pass.
  /external/llvm/test/CodeGen/X86/
misched-new.ll 12 ; "not-quite-dead" copies, but that breaks a lot of tests <rdar://problem/11148682>.
17 ; After coalescing, we have a dead superreg (RAX) definition.
  /external/llvm/test/Transforms/EarlyCSE/
basic.ll 6 %A = bitcast i64 42 to double ;; dead
100 ;; Trivial dead store elimination.
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_fragprog.c 130 {"dead constants", 1, 1, rc_remove_unused_constants, &c->code->constants_remap_table},
133 {"dead sources", 1, 1, rc_pair_remove_dead_sources, NULL},
  /external/proguard/docs/manual/
optimizations.html 134 <dd>Removes dead code based on control flow analysis and data flow
139 <dd>Removes dead code based on a simple control flow analysis.</dd>
  /frameworks/base/core/java/android/database/
CursorToBulkCursorAdaptor.java 67 // Do nothing, the far side is dead
86 // Do nothing, the far side is dead
  /frameworks/base/core/java/android/nfc/tech/
NfcA.java 152 Log.e(TAG, "NFC service dead", e);
167 Log.e(TAG, "NFC service dead", e);
NfcF.java 151 Log.e(TAG, "NFC service dead", e);
166 Log.e(TAG, "NFC service dead", e);
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckerDocumentation.cpp 141 /// \brief Called whenever a symbol becomes dead.
146 /// in the sate, it can and should be dropped after the symbol becomes dead.
147 /// In addition, reporting a bug as soon as the checker becomes dead leads to
152 /// symbols are dead.
213 /// dead and removed.
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 141 /// defs for new uses, and it doesn't remove dead defs.
142 /// Dead PHIDef values are marked as unused.
143 /// New dead machine instructions are added to the dead vector.
147 SmallVectorImpl<MachineInstr*> *dead = 0);
  /external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 10 // This file implements dead code elimination and basic block merging, along
70 /// instruction, making it and the rest of the code in the block dead.
88 // All instructions after this are dead.
190 /// if they are in a dead cycle. Return true if a change was made, false
335 // iterativelySimplifyCFG can (rarely) make some loops dead. If this happens,
LoopUnswitch.cpp     [all...]
  /external/openfst/src/include/fst/
prune.h 133 vector<StateId> dead; local
134 dead.push_back(fst->AddState());
163 arc.nextstate = dead[0];
182 if (!visited[i]) dead.push_back(i);
183 fst->DeleteStates(dead);
  /external/openssh/
nchan.c 451 debug2("channel %d: is dead", c->self);
463 debug2("channel %d: is dead (local)", c->self);
470 /* channel would be dead if we sent a close */
472 debug2("channel %d: almost dead",
480 debug2("channel %d: is dead", c->self);
  /external/replicaisland/src/com/replica/replicaisland/
PlayerComponent.java 58 DEAD,
258 if (mInvincibleEndTime > 0.0f && (mInvincibleEndTime < gameTime || mState == State.DEAD)) {
268 if (mState != State.DEAD && mState != State.WIN ) {
302 case DEAD:
445 mState = State.DEAD;
  /external/valgrind/main/coregrind/m_debuginfo/
readstabs.c 345 // XXXX DEAD POINT XXXX
364 //DEAD POINT
365 //DEAD POINT
371 // DEAD POINT
377 // DEAD POINT
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 125 // Sanitizing method - used to make sure if don't leave dead code around.
183 // MI is known to be dead. Figure out what instructions
184 // are also made dead by this and mark them for removal.
196 // MI is already known to be dead. We need to see
213 // this instruction as being dead.
218 // dead. If so, we can also mark this instruction as being
219 // dead.
  /external/llvm/test/Transforms/SROA/
phi-and-select.ll 178 %dead = load i32* %c
312 ; Ensure we don't crash or fail to nuke dead selects of allocas if no load is
322 %dead = select i1 undef, i32* %a, i32* %p
328 ; Ensure we don't crash or fail to nuke dead phis of allocas if no load is ever
387 ; Check a pattern where we have a chain of dead phi nodes to ensure they are
411 ; Another pattern which can lead to crashes due to failing to clear out dead
413 ; cases because the PHI node is (recursively) alive, but the select is dead.
  /system/core/adb/
usb_linux.c 68 int dead; member in struct:usb_handle
328 if(h->dead) {
348 if(res < 0 || h->dead) {
379 if(h->dead) {
400 if(h->dead) {
512 if(h->dead == 0) {
513 h->dead = 1;
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 475 // If this call site is dead and it is to a readonly function, we should
478 // call and then we're left with the dead call.
480 DEBUG(dbgs() << " -> Deleting dead call: "
534 // The function may be apparently dead, but if there are indirect
538 DEBUG(dbgs() << " -> Deleting dead function: "
570 // doFinalization - Remove now-dead linkonce functions at the end of
576 /// removeDeadFunctions - Remove dead functions that are not included in
582 // from the program. Insert the dead ones in the FunctionsToRemove set.
597 // If the only remaining users of the function are dead constants, remove
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PipedInputStreamTest.java 257 // test if writer recognizes dead reader
273 // is now dead
309 assertTrue("writer thread failed to recognize dead reader",

Completed in 3615 milliseconds

<<11121314151617181920>>