Searched defs:Live (Results 1 - 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_variable.h51 struct live_intervals Live[4]; member in struct:rc_variable
H A Dradeon_pair_regalloc.c51 struct live_intervals Live[4]; member in struct:register_info
178 reg->Live[i].Used = 1;
179 reg->Live[i].Start = 0;
180 reg->Live[i].End =
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,
672 var->Live)) {
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp147 bool isLive(const LiveVariables::LivenessValues &Live, const VarDecl *D) { argument
148 if (Live.isLive(D))
210 const LiveVariables::LivenessValues &Live) {
219 if (!isLive(Live, VD) &&
230 const LiveVariables::LivenessValues& Live) {
232 CheckVarDecl(VD, DR, Val, dsk, Live);
259 const LiveVariables::LivenessValues &Live) override {
297 CheckVarDecl(VD, DR, B->getRHS(), dsk, Live);
311 CheckDeclRef(DR, U, DeadIncrement, Live);
345 if (!isLive(Live,
208 CheckVarDecl(const VarDecl *VD, const Expr *Ex, const Expr *Val, DeadStoreKind dsk, const LiveVariables::LivenessValues &Live) argument
229 CheckDeclRef(const DeclRefExpr *DR, const Expr *Val, DeadStoreKind dsk, const LiveVariables::LivenessValues& Live) argument
[all...]
/external/llvm/lib/CodeGen/
H A DLiveVariables.cpp1 //===-- LiveVariables.cpp - Live Variable Analysis for Machine Code -------===//
47 "Live Variable Analysis", false, false)
50 "Live Variable Analysis", false, false)
446 SmallSet<unsigned, 32> Live; local
450 Live.insert(*SubRegs);
460 if (Live.count(SubReg))
465 Live.insert(*SS);
476 if (!Live.count(SubReg))
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp86 enum Liveness { Live, MaybeLive }; enumerator in enum:__anon10958::DAE::Liveness
422 return Live;
459 if (Result != Live)
479 if (Result == Live)
498 return Live;
511 return Live;
518 /// the result is Live, MaybeLiveUses might be modified but its content should
526 if (Result == Live)
607 if (RetValLiveness[Idx] != Live) {
609 if (RetValLiveness[Idx] == Live)
[all...]

Completed in 216 milliseconds