Home
last modified time | relevance | path

Searched refs:pbegin (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A Dregcomp.c202 sopno pbegin[NPAREN]; /* -> ( ([0] unused) */ member
337 p->pbegin[i] = 0; in llvm_regcomp()
456 p->pbegin[subno] = HERE(); in p_ere_exp()
527 assert(p->pbegin[backrefnum] != 0); in p_ere_exp()
528 assert(OP(p->strip[p->pbegin[backrefnum]]) != OLPAREN); in p_ere_exp()
696 p->pbegin[subno] = HERE(); in p_simp_re()
726 assert(p->pbegin[i] != 0); in p_simp_re()
727 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN); in p_simp_re()
729 (void) dupl(p, p->pbegin[i]+1, p->pend[i]); in p_simp_re()
1517 if (p->pbegin[i] >= pos) { in doinsert()
[all …]
/llvm-project-15.0.7/bolt/lib/Passes/
H A DSplitFunctions.cpp330 std::vector<BinaryBasicBlock *> Blocks(BF.pbegin(), BF.pend()); in createEHTrampolines()
H A DBinaryPasses.cpp1726 std::vector<BinaryBasicBlock *> Blocks(Function.pbegin(), Function.pend()); in runOnFunctions()
/llvm-project-15.0.7/bolt/include/bolt/Core/
H A DBinaryFunction.h781 BasicBlockListType::iterator pbegin() { return BasicBlocks.begin(); } in pbegin() function