HomeSort by relevance Sort by last modified time
    Searched defs:Live (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
LiveVariables.cpp 1 //===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===//
17 // This class computes live variables using a sparse implementation based on
18 // the machine code SSA form. This class computes live variable information for
20 // uses the dominance properties of SSA form to efficiently compute live
22 // live within a single basic block (allowing it to do a single local analysis
47 "Live Variable Analysis", false, false)
50 "Live Variable Analysis", false, false)
109 return; // We already know the block is live
142 // live range by updating the kill instruction.
176 // Update all dominating blocks to mark them as "known live"
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 89 enum Liveness { Live, MaybeLive };
102 /// arguments it uses. This allows the MaybeLive values to be marked live
103 /// when any of its users is marked live.
120 /// This set contains all values that have been determined to be live.
400 /// live, it adds Use to the MaybeLiveUses argument. Returns the determined
403 // We're live if our use or its Function is already marked as live.
405 return Live;
407 // We're maybe live otherwise, but remember that we must become live i
    [all...]

Completed in 315 milliseconds