Searched refs:PE (Results 26 - 50 of 81) sorted by relevance

1234

/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DMachineScheduler.cpp2036 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2127 for (const MCWriteProcResEntry &PE :
2130 if (ResourceGroupSubUnitMasks[PIdx][PE.ProcResourceIdx])
2193 for (const MCWriteProcResEntry &PE :
2196 unsigned ResIdx = PE.ProcResourceIdx;
2197 unsigned Cycles = PE.Cycles;
2450 PE = SchedModel->getWriteProcResEnd(SC); PI != PE; ++PI) {
2463 PE
[all...]
H A DMachineTraceMetrics.cpp127 PE = SchedModel.getWriteProcResEnd(SC); PI != PE; ++PI) {
1241 PE = TE.MTM.SchedModel.getWriteProcResEnd(SC);
1242 PI != PE; ++PI) {
/openbsd-current/gnu/llvm/clang/lib/Analysis/
H A DThreadSafety.cpp742 PE = CurrBlock->pred_end(); PI != PE; ++PI) {
1398 else if (const auto *PE = dyn_cast<ParenExpr>(Cond))
1399 return getTrylockCallExpr(PE->getSubExpr(), C, Negate);
1732 if (const auto *PE = dyn_cast<ParenExpr>(Exp)) {
1733 Exp = PE->getSubExpr();
2359 PE = CurrBlock->pred_end(); PI != PE; ++PI) {
H A DConsumed.cpp1010 PE = TargetBlock->pred_end(); PI != PE; ++PI) {
1082 PE = Block->pred_end(); PI != PE; ++PI) {
/openbsd-current/libexec/getty/
H A Dsubr.c294 if (PE)
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DSValBuilder.cpp346 const auto *PE = cast<PredefinedExpr>(E); local
347 assert(PE->getFunctionName() &&
350 return makeLoc(getRegionManager().getStringRegion(PE->getFunctionName()));
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DTailRecursionElimination.cpp556 pred_iterator PB = pred_begin(HeaderBB), PE = pred_end(HeaderBB);
557 AccPN = PHINode::Create(F.getReturnType(), std::distance(PB, PE) + 1,
566 for (pred_iterator PI = PB; PI != PE; ++PI) {
H A DJumpThreading.cpp1519 pred_iterator PB = pred_begin(LoadBB), PE = pred_end(LoadBB); local
1520 PHINode *PN = PHINode::Create(LoadI->getType(), std::distance(PB, PE), "",
1527 for (pred_iterator PI = PB; PI != PE; ++PI) {
3014 auto PI = pred_begin(BB), PE = pred_end(BB); local
3015 if (PI == PE)
3018 if (PI == PE)
3021 if (PI != PE)
/openbsd-current/gnu/llvm/llvm/tools/llvm-diff/lib/
H A DDifferenceEngine.cpp873 PI = Path.begin(), PE = Path.end(); local
874 while (PI != PE && *PI == DC_match) {
881 for (; PI != PE; ++PI) {
/openbsd-current/gnu/llvm/llvm/lib/Transforms/ObjCARC/
H A DObjCARCOpts.cpp1445 PE(MyStates.pred_end()); PI != PE; ++PI) {
1586 PE(MyStates.pred_end());
1587 if (PI != PE) {
1593 for (; PI != PE; ++PI) {
1702 BBState::edge_iterator PE = BBStates[PredStack.back().first].pred_end(); local
1703 while (PredStack.back().second != PE) {
/openbsd-current/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp2616 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), cast); local
2620 CallExpr::Create(*Context, PE, MsgExprs, FT->getReturnType(), VK_PRValue,
2962 ParenExpr *PE = new (Context) ParenExpr(StartLoc, EndLoc, cast); local
2965 CallExpr *CE = CallExpr::Create(*Context, PE, MsgExprs, FT->getReturnType(),
3786 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), local
3788 //PE->dump();
3797 *Context, PE, true, FD, FD->getType(), VK_LValue, OK_Ordinary);
3801 PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), FunkCast);
3812 CallExpr::Create(*Context, PE, BlkExprs, Exp->getType(), VK_PRValue,
3857 ParenExpr *PE local
3876 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), local
5833 ParenExpr *PE = new (Context) ParenExpr(OldRange.getBegin(), local
5874 ParenExpr *PE = new (Context) ParenExpr( local
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp257 struct PE { struct in namespace:__anon2864
258 PE(const Simplifier::Context &c, Value *v = nullptr) : C(c), V(v) {} function in struct:__anon2864::PE
265 raw_ostream &operator<<(raw_ostream &OS, const PE &P) {
642 pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
643 if (std::distance(PI, PE) != 2)
1835 LLVM_DEBUG(dbgs() << "scanSelect(pre-scan): " << PE(C, SelI) << '\n');
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Dcoff-x86_64.c90 /* In PE mode, we do not offset the common symbol. */
106 PE and non-PE formats, but they are off by 1 << howto->size
107 bytes. For the external relocation, PE is very different
109 When we link PE and non-PE object files together to
110 generate a non-PE executable, we have to compensate it
226 /* PE IMAGE_REL_AMD64_ADDR32NB relocation (3). */
497 can use the generic relocate_section routine. For PE, we need our
506 /* The PE relocat
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Dcoff-x86_64.c90 /* In PE mode, we do not offset the common symbol. */
106 PE and non-PE formats, but they are off by 1 << howto->size
107 bytes. For the external relocation, PE is very different
109 When we link PE and non-PE object files together to
110 generate a non-PE executable, we have to compensate it
226 /* PE IMAGE_REL_AMD64_ADDR32NB relocation (3). */
497 can use the generic relocate_section routine. For PE, we need our
506 /* The PE relocat
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/AST/
H A DJSONNodeDumper.h275 void VisitPredefinedExpr(const PredefinedExpr *PE);
/openbsd-current/gnu/llvm/clang/lib/CodeGen/
H A DCGExprComplex.cpp111 ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());} argument
117 VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *PE) { argument
118 return Visit(PE->getReplacement());
H A DCGExprConstant.cpp1039 llvm::Constant *VisitParenExpr(ParenExpr *PE, QualType T) { argument
1040 return Visit(PE->getSubExpr(), T);
1044 VisitSubstNonTypeTemplateParmExpr(SubstNonTypeTemplateParmExpr *PE, argument
1046 return Visit(PE->getReplacement(), T);
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp980 PE = FuncTy->param_end();
981 PI != PE; ++PI) {
H A DSIWholeQuadMode.cpp365 auto PE = MBB->pred_end(); local
366 for (; PI != PE && !NextValue; ++PI, ++Idx) {
374 if (PI != PE)
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DRegionInfoImpl.h181 PE = InvBlockTraits::child_end(exit);
182 PI != PE; ++PI) {
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DLint.cpp215 Function::arg_iterator PI = F->arg_begin(), PE = F->arg_end(); local
219 if (PI != PE) {
H A DLazyValueInfo.cpp1863 pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
1864 if (PI == PE)
1903 while (++PI != PE) {
1909 if (PI == PE) {
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DFastISelEmitter.cpp630 for (PredMap::const_reverse_iterator PI = PM.rbegin(), PE = PM.rend();
631 PI != PE; ++PI) {
/openbsd-current/usr.bin/deroff/
H A Dderoff.c1033 * PE pic ending
1128 if (c == '<') { /* ".PS < file" -- don't expect a .PE */
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1614 pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
1615 if (PI == PE) // No predecessor
1618 if (PI == PE) // Only one predecessor
1621 if (PI != PE) // More than two predecessors

Completed in 725 milliseconds

1234