OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Live
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
DeadArgumentElimination.h
74
enum Liveness {
Live
, MaybeLive };
94
/// arguments it uses. This allows the MaybeLive values to be marked
live
95
/// when any of its users is marked
live
.
112
/// This set contains all values that have been determined to be
live
.
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ModuleSummaryIndexYAML.h
140
bool NotEligibleToImport,
Live
, IsLocal, CanAutoHide;
183
io.mapOptional("
Live
", summary.
Live
);
229
FSum.NotEligibleToImport, FSum.
Live
, FSum.IsLocal,
251
static_cast<bool>(FSum->flags().
Live
),
ModuleSummaryIndex.h
312
/// a
live
root for index-based liveness analysis. Used for special LLVM
315
/// In combined summary, indicate that the global value is
live
.
316
unsigned
Live
: 1;
336
bool NotEligibleToImport, bool
Live
, bool IsLocal,
339
NotEligibleToImport(NotEligibleToImport),
Live
(
Live
),
413
bool isLive() const { return Flags.
Live
; }
415
void setLive(bool
Live
) { Flags.
Live
=
Live
; }
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LiveVariables.cpp
1
//===-- LiveVariables.cpp -
Live
Variable Analysis for Machine Code -------===//
16
// This class computes
live
variables using a sparse implementation based on
17
// the machine code SSA form. This class computes
live
variable information for
19
// uses the dominance properties of SSA form to efficiently compute
live
21
//
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)
106
return; // We already know the block is
live
139
//
live
range by updating the kill instruction.
174
// Update all dominating blocks to mark them as "known
live
"
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonGenMux.cpp
374
bool
Live
= IsLive(Op.getReg());
375
Op.setIsKill(!
Live
);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
ADCE.cpp
79
/// True if the associated instruction is
live
.
80
bool
Live
= false;
88
/// True when this block contains a
live
instructions.
89
bool
Live
= false;
94
/// True when this block is known to have
live
PHI nodes.
97
/// Control dependence sources need to be
live
for this block.
113
bool terminatorIsLive() const { return TerminatorLiveInfo->
Live
; }
127
bool isLive(BasicBlock *BB) { return BlockInfo[BB].
Live
; }
131
bool isLive(Instruction *I) { return InstInfo[I].
Live
; }
133
/// Instructions known to be
live
where we need to mar
[
all
...]
RewriteStatepointsForGC.cpp
105
static cl::opt<bool, true> ClobberNonLiveOverride("rs4gc-clobber-non-
live
",
237
/// Values used in this block (and thus
live
); does not included values
241
/// Values
live
into this basic block (i.e. used by any
245
/// Values
live
out of this basic block (i.e.
live
into
266
/// The set of values known to be
live
across this safepoint
269
/// Mapping from
live
pointers to a base-defining-value
280
/// Record
live
values we are rematerialized instead of relocating.
301
/// Compute the
live
-in set for every basic block in the function
305
/// Given results from the dataflow liveness computation, find the set of
live
[
all
...]
Completed in 28 milliseconds
Indexes created Mon Sep 21 00:25:25 UTC 2026