/dalvik/dx/src/com/android/dx/rop/ |
package-info.java | 132 * used by the method, it may be eliminated as dead code. 135 * non-call-like throwing instructions. It may never be considered dead code
|
/external/chromium_org/content/common/gpu/client/ |
webgraphicscontext3d_command_buffer_impl.cc | 232 << "Context dead on arrival. Last error: " 319 LOG(ERROR) << "Context dead on arrival. Last error: "
|
/external/chromium_org/native_client_sdk/src/examples/demo/life/ |
life.c | 52 * Convert a count value into a live (green) or dead color value. 77 * values. The health is binary: either alive or dead.
|
/external/chromium_org/third_party/WebKit/Source/platform/heap/ |
Heap.cpp | 764 // sweeping to catch cases where dead objects touch eachother. This is not 891 HeapPage<Header>* dead = page; local 893 PageMemory* storage = dead->storage(); 894 dead->~HeapPage(); 900 LargeHeapObject<Header>* dead = current; local 902 PageMemory* storage = dead->storage(); 903 dead->~LargeHeapObject(); [all...] |
/external/chromium_org/third_party/skia/third_party/lua/src/ |
lgc.c | 104 ** if key is not marked, mark its entry as dead (therefore removing it 702 ** sweep at most 'count' elements from a list of GCObjects erasing dead 703 ** objects, where a dead (not alive) object is one marked with the "old" 705 ** In non-generational mode, change all non-dead objects back to white, 730 if (isdeadm(ow, marked)) { /* is 'curr' dead? */ 982 g->currentwhite = WHITEBITS; /* this "white" makes all objects look dead */ 1001 /* remark occasional upvalues of (maybe) dead threads */ 1021 /* remove dead objects from weak tables */ [all...] |
/external/chromium_org/v8/test/webkit/ |
dfg-cfa-merge-with-dead-use-at-tail-expected.txt | 24 Tests that a dead use of a variable at the tail of a basic block doesn't confuse the CFA into believing that the variable being used is dead as well.
|
/external/llvm/include/llvm/Transforms/Utils/ |
BasicBlockUtils.h | 44 /// is dead. Also recursively delete any operands that become dead as
|
/external/llvm/lib/CodeGen/ |
LiveInterval.cpp | 54 assert(!Def.isDead() && "Cannot define a value at the dead slot"); 189 /// ValNo is dead, remove it. If it is the largest value number, just nuke it 241 // Erase any dead segments. 361 // Check if val# is dead. 369 // Now that ValNo is dead, remove it. 406 // Now that ValNo is dead, remove it. 468 // LiveRange now. Also remove dead val#'s. 567 // Now that V1 is dead, remove it.
|
MachineVerifier.cpp | [all...] |
RegisterCoalescer.cpp | 52 STATISTIC(NumLaneConflicts, "Number of dead lane conflicts tested"); 53 STATISTIC(NumLaneResolves, "Number of dead lane conflicts resolved"); 105 /// Dead instructions that are about to be deleted. 111 /// Recursively eliminate dead defs in DeadDefs. 810 // NewMI may have dead implicit defs (E.g. EFLAGS for MOV<bits>r0 on X86). 848 // Record small dead def live-ranges for all the subregisters 859 // ECX<def, dead> = remat ; CL<imp-def> [all...] |
/external/llvm/lib/Transforms/IPO/ |
ArgumentPromotion.cpp | 58 STATISTIC(NumArgumentsDead , "Number of dead pointer args eliminated"); 397 // Dead GEP's cause trouble later. Just remove them if we run into 401 // TODO: This runs the above loop over and over again for dead GEPs 450 if (Loads.empty()) return true; // No users, this is a dead argument. 554 // Dead argument (which are always marked as promotable) 687 // Non-dead argument: insert GEPs and loads as appropriate. [all...] |
ConstantMerge.cpp | 135 // If this GV is dead, remove it. 223 // Eliminate any uses of the dead global.
|
IPConstantPropagation.cpp | 12 // like using a worklist. This pass makes arguments dead, but does not remove 13 // them. The existing dead argument elimination pass should be run after this
|
/external/llvm/test/Transforms/GVN/ |
crash.ll | 144 dead: 149 br i1 true, label %dead, label %dead2
|
/external/llvm/tools/llvm-extract/ |
llvm-extract.cpp | 261 Passes.add(createStripDeadDebugInfoPass()); // Remove dead debug info 262 Passes.add(createStripDeadPrototypesPass()); // Remove dead func decls
|
/frameworks/base/core/java/android/nfc/tech/ |
MifareUltralight.java | 248 Log.e(TAG, "NFC service dead", e); 263 Log.e(TAG, "NFC service dead", e);
|
/frameworks/base/media/java/android/media/ |
PlayerRecord.java | 166 // the dead client was maybe handling remote playback, the controller should reevaluate 300 Log.w(TAG, "registerRemoteControlClient() has a dead client " + b);
|
/frameworks/base/services/core/java/com/android/server/clipboard/ |
ClipboardService.java | 107 Slog.w("clipboard", "AM dead", e); 238 // the dead object for us.
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
PipedInputStreamTest.java | 256 // test if writer recognizes dead reader 276 // is now dead
|
/art/compiler/optimizing/ |
dominator_test.cc | 144 Instruction::GOTO | 0x100, // Dead block
|
ssa_builder.cc | 49 // TODO: Move this to a dead code eliminator phase.
|
/art/runtime/gc/collector/ |
garbage_collector.cc | 107 // bits of dead objects in the live bitmap.
|
/dalvik/dx/src/com/android/dx/command/dump/ |
SsaDumper.java | 111 } else if ("dead-code".equals(args.ssaStep)) {
|
/dalvik/dx/src/com/android/dx/ssa/ |
Optimizer.java | 186 // dead code remover must be run before phi type resolver
|
PhiTypeResolver.java | 40 * This algorithm assumes a dead-code remover has already removed all
|