OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Live
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_variable.h
51
struct live_intervals
Live
[4];
radeon_pair_regalloc.c
51
struct live_intervals
Live
[4];
178
reg->
Live
[i].Used = 1;
179
reg->
Live
[i].Start = 0;
180
reg->
Live
[i].End =
563
/* Compute the
live
intervals */
598
/* Calculate
live
intervals for input registers */
617
if (s->Input[i].
Live
[chan].Used) {
650
if (overlap_live_intervals_array(var_a->
Live
, var_b->
Live
)) {
671
if (overlap_live_intervals_array(s->Input[i].
Live
,
[
all
...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.h
51
struct live_intervals
Live
[4];
radeon_pair_regalloc.c
51
struct live_intervals
Live
[4];
178
reg->
Live
[i].Used = 1;
179
reg->
Live
[i].Start = 0;
180
reg->
Live
[i].End =
563
/* Compute the
live
intervals */
598
/* Calculate
live
intervals for input registers */
617
if (s->Input[i].
Live
[chan].Used) {
650
if (overlap_live_intervals_array(var_a->
Live
, var_b->
Live
)) {
671
if (overlap_live_intervals_array(s->Input[i].
Live
,
[
all
...]
/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
.
410
///
live
, it adds Use to the MaybeLiveUses argument. Returns the determined
413
// We're
live
if our use or its Function is already marked as
live
.
415
return
Live
;
417
// We're maybe
live
otherwise, but remember that we must become
live
i
[
all
...]
Completed in 400 milliseconds