Searched refs:bbi (Results 1 - 10 of 10) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DProfileVerifierPass.cpp102 for (const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
103 bbi != bbe; ++bbi ) {
104 if (ProcessedPreds.insert(*bbi).second) {
105 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(*bbi,BB);
117 for ( succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
118 bbi != bbe; ++bbi ) {
119 if (ProcessedSuccs.insert(*bbi).second) {
120 typename ProfileInfoT<FType, BType>::Edge E = PI->getEdge(BB,*bbi);
263 succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB); local
[all...]
H A DProfileEstimatorPass.cpp131 for ( pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
132 bbi != bbe; ++bbi ) {
134 Edge edge = getEdge(*bbi,BB);
136 if (ProcessedPreds.insert(*bbi).second) {
142 if (BBisHeader && BBLoop->contains(*bbi)) {
263 succ_iterator bbi = succ_begin(BB), bbe = succ_end(BB); local
266 if (bbi == bbe) {
271 for ( ; bbi != bbe; ++bbi ) {
[all...]
H A DProfileInfoLoaderPass.cpp117 for (succ_const_iterator bbi = succ_begin(BB), bbe = succ_end(BB);
118 bbi != bbe; ++bbi) {
119 recurseBasicBlock(*bbi);
121 for (const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
122 bbi != bbe; ++bbi) {
123 recurseBasicBlock(*bbi);
H A DProfileInfo.cpp514 const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB); local
515 if (bbi==bbe) {
519 for (;bbi != bbe; ++bbi) {
520 if (pred_visited.insert(*bbi)) {
521 Edge e = getEdge(*bbi,BB);
586 const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB); local
587 if (bbi == bbe) {
590 for( ; bbi != bbe; ++bbi ) {
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dsched-ebb.c646 int bbi;
648 bbi = bb->index;
650 if (!bitmap_bit_p (&ebb_head, bbi)
651 || !bitmap_bit_p (&ebb_tail, bbi)
654 || !glat_start[bbi])
658 SET_BIT (blocks, bbi);
659 RESET_BIT (large_region_blocks, bbi);
758 fix_recovery_cfg (int bbi ATTRIBUTE_UNUSED, int jump_bbi, int jump_bb_nexti)
760 gcc_assert (last_bb->index != bbi);
643 int bbi; local
H A Ddf-core.c1202 int bbi;
1205 bbi = DF_REF_BBNO (DF_INSN_UID_DEFS (df, uid));
1207 bbi = DF_REF_BBNO (DF_INSN_UID_USES (df, uid));
1209 bbi = -1;
1212 uid, bbi, DF_INSN_UID_LUID (df, uid));
1245 int bbi;
1249 bbi = DF_REF_BBNO (DF_INSN_UID_DEFS (df, uid));
1251 bbi = DF_REF_BBNO (DF_INSN_UID_USES (df, uid));
1253 bbi = -1;
1256 uid, bbi, DF_INSN_LUI
1199 int bbi; local
1242 int bbi; local
[all...]
H A Dsched-rgn.c1067 blocks that have max_hdr[bbi] == bbi). This set is upper bounded by the
3205 fix_recovery_cfg (int bbi, int check_bbi, int check_bb_nexti)
3209 BLOCK_TO_BB (check_bb_nexti) = BLOCK_TO_BB (bbi);
3216 for (new_pos = ebb_head[BLOCK_TO_BB (bbi) + 1] - 1;
3217 rgn_bb_table[new_pos] != bbi;
3220 gcc_assert (new_pos > ebb_head[BLOCK_TO_BB (bbi)]);
3230 for (i = BLOCK_TO_BB (bbi) + 1; i <= BLOCK_TO_BB (check_bbi); i++)
3201 fix_recovery_cfg(int bbi, int check_bbi, int check_bb_nexti) argument
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DIRDynamicChecks.cpp259 for (llvm::Function::iterator bbi = f.begin(), last_bbi = f.end();
260 bbi != last_bbi;
261 ++bbi)
263 if (!InspectBasicBlock(*bbi))
H A DIRForTarget.cpp2677 Function::iterator bbi; local
2679 for (bbi = function->begin();
2680 bbi != function->end();
2681 ++bbi)
2683 if (!RemoveGuards(*bbi))
2693 if (!RewritePersistentAllocs(*bbi))
2703 if (!RemoveCXAAtExit(*bbi))
2749 for (llvm::Function::iterator bbi = function->begin(), bbe = function->end();
2750 bbi != bbe;
2751 ++bbi)
[all...]
H A DIRInterpreter.cpp445 for (Function::iterator bbi = function.begin(), bbe = function.end();
446 bbi != bbe;
447 ++bbi)
449 for (BasicBlock::iterator ii = bbi->begin(), ie = bbi->end();

Completed in 251 milliseconds