Searched refs:TBI (Results 1 – 4 of 4) sorted by relevance
165 TraceBlockInfo *TBI = &BlockInfo[MBB->getNumber()]; in computeDepthResources() local170 if (!TBI->Pred) { in computeDepthResources()171 TBI->InstrDepth = 0; in computeDepthResources()172 TBI->Head = MBB->getNumber(); in computeDepthResources()180 unsigned PredNum = TBI->Pred->getNumber(); in computeDepthResources()183 const FixedBlockInfo *PredFBI = MTM.getResources(TBI->Pred); in computeDepthResources()184 TBI->InstrDepth = PredTBI->InstrDepth + PredFBI->InstrCount; in computeDepthResources()185 TBI->Head = PredTBI->Head; in computeDepthResources()198 TraceBlockInfo *TBI = &BlockInfo[MBB->getNumber()]; in computeHeightResources() local203 TBI->InstrHeight = MTM.getResources(MBB)->InstrCount; in computeHeightResources()[all …]
182 bool isUsefulDominator(const TraceBlockInfo &TBI) const { in isUsefulDominator()184 if (!hasValidDepth() || !TBI.hasValidDepth()) in isUsefulDominator()187 if (Head != TBI.Head) in isUsefulDominator()194 return HasValidInstrDepths && InstrDepth <= TBI.InstrDepth; in isUsefulDominator()239 TraceBlockInfo &TBI; variable241 unsigned getBlockNum() const { return &TBI - &TE.BlockInfo[0]; } in getBlockNum()244 explicit Trace(Ensemble &te, TraceBlockInfo &tbi) : TE(te), TBI(tbi) {} in Trace()249 return TBI.InstrDepth + TBI.InstrHeight; in getInstrCount()274 unsigned getCriticalPath() const { return TBI.CriticalPath; } in getCriticalPath()
2 ; RUN: | FileCheck --check-prefix=TBI --check-prefix=BOTH %s7 ; TBI-NOT: and x18 ; TBI-NOT: and x30 ; TBI-NOT: and x40 ; TBI-NOT: and x50 ; TBI-NOT: and x61 ; TBI-NOT: and x73 ; TBI-NOT: and x85 ; TBI-NOT: and x
1386 if (BranchInst *TBI = dyn_cast<BranchInst>(BBI->getTerminator())) in runOnLoop() local1387 InductiveRangeCheck::extractRangeChecksFromBranch(TBI, L, SE, BPI, in runOnLoop()