Searched refs:BPI (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Analysis/
H A DBlockFrequencyInfo.cpp131 BranchProbabilityInfo &BPI = getAnalysis<BranchProbabilityInfo>(); local
135 BFI->doFunction(&F, &BPI, &LI);
/external/chromium_org/third_party/boringssl/src/crypto/chacha/
H A Dchacha_vec.c108 #define BPI (VBPI + GPR_TOO) /* Blocks computed per loop iteration */ macro
188 for (iters = 0; iters < inlen/(BPI*64); iters++)
217 x12 = counter+BPI*iters+(BPI-1); x13 = 0;
269 op[12] = REVW_BE(REVW_BE(ip[12]) ^ (x12 + counter+BPI*iters+(BPI-1)));
279 for (iters = inlen%(BPI*64)/64; iters != 0; iters--)
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h786 const BranchProbabilityInfoT *BPI; member in class:llvm::BlockFrequencyInfoImpl
894 void doFunction(const FunctionT *F, const BranchProbabilityInfoT *BPI,
896 BlockFrequencyInfoImpl() : BPI(nullptr), LI(nullptr), F(nullptr) {}
928 const BranchProbabilityInfoT *BPI,
931 this->BPI = BPI;
1161 BPI->getEdgeWeight(BB, SI)))
927 doFunction(const FunctionT *F, const BranchProbabilityInfoT *BPI, const LoopInfoT *LI) argument
/external/llvm/include/llvm/CodeGen/
H A DFunctionLoweringInfo.h58 BranchProbabilityInfo *BPI; member in class:llvm::FunctionLoweringInfo
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1412 if (FuncInfo.BPI)
1413 BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1453 if (FuncInfo.BPI)
1454 BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1473 if (FuncInfo.BPI)
1474 BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
1492 if (FuncInfo.BPI)
1493 BranchWeight = FuncInfo.BPI->getEdgeWeight(BI->getParent(),
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1349 BranchProbabilityInfo *BPI = FuncInfo.BPI;
1350 if (!BPI)
1354 return BPI->getEdgeWeight(SrcBB, DstBB);
2087 BranchProbabilityInfo *BPI = FuncInfo.BPI;
2126 BPI ? BPI->getEdgeWeight(SwitchBB->getBasicBlock(), (unsigned)0) : 0);
2145 if (BPI) {
2306 if (FuncInfo.BPI)
[all...]
H A DFastISel.cpp999 if (FuncInfo.BPI)
1000 BranchWeight = FuncInfo.BPI->getEdgeWeight(FuncInfo.MBB->getBasicBlock(),
H A DSelectionDAGISel.cpp443 FuncInfo->BPI = &getAnalysis<BranchProbabilityInfo>();
445 FuncInfo->BPI = nullptr;

Completed in 996 milliseconds