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

12345

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSimplifyCFGPass.cpp140 pred_iterator PB = pred_begin(RetBlock), PE = pred_end(RetBlock); local
142 std::distance(PB, PE), "merge",
145 for (pred_iterator PI = PB; PI != PE; ++PI)
H A DTailRecursionElimination.cpp632 pred_iterator PB = pred_begin(OldEntry), PE = pred_end(OldEntry);
635 std::distance(PB, PE) + 1, "accumulator.tr", &OldEntry->front());
643 for (pred_iterator PI = PB; PI != PE; ++PI) {
/freebsd-11-stable/contrib/elftoolchain/libpe/
H A Dlibpe_dos.c40 libpe_parse_msdos_header(PE *pe, char *hdr)
76 /* Do not continue if the EXE is not a PE/NE/... (new executable) */
114 /* Jump to the PE header. */
136 libpe_read_msdos_stub(PE *pe)
166 /* Search for the Rich header embedded just before the PE header. */
208 libpe_write_msdos_stub(PE *pe, off_t off)
231 * lseek(2) to the PE signature if MS-DOS stub is not
266 * If length of MS-DOS stub will change, Mark the PE
267 * signature is broken so that the PE signature and the
H A Dlibpe_buffer.c143 PE *pe;
H A Dlibpe_coff.c40 libpe_parse_coff_header(PE *pe, char *hdr)
105 * on the PE format specified by the oh_magic field. (PE32 or PE32+)
188 libpe_write_pe_header(PE *pe, off_t off)
201 * PE Header should to be aligned on 8-byte boundary according to
202 * the PE/COFF specification.
225 libpe_write_coff_header(PE *pe, off_t off)
299 * COFF line number is deprecated by the PE/COFF
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFixFunctionBitcasts.cpp131 FunctionType::param_iterator PE = F->getFunctionType()->param_end(); local
143 for (; AI != AE && PI != PE; ++AI, ++PI) {
171 for (; PI != PE; ++PI)
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp226 PI = IndProps.begin(), PE = IndProps.end(); PI != PE; ++PI) {
237 PI = IndProps.begin(), PE = IndProps.end(); PI != PE; ++PI) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp267 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
268 P != PE; ++P) {
283 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
284 P != PE; ++P) {
895 PE = PathSU->Preds.end(); P != PE; ++P) {
904 PE = PathSU->Preds.end(); P != PE; ++P) {
H A DCriticalAntiDepBreaker.cpp149 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
150 P != PE; ++P) {
589 PE = CriticalPathSU->Preds.end(); P != PE; ++P)
H A DStackColoring.cpp646 PE = MBB->pred_end(); PI != PE; ++PI) {
777 PE = BB->pred_end(); PI != PE; ++PI) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAttr.h101 void setPackExpansion(bool PE) { IsPackExpansion = PE; } argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAutomaton.h102 auto PE = upper_bound(Pairs, NfaStatePair{Head->State, INT64_MAX}); local
105 for (; PI != PE; ++PI)
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DOptParserEmitter.cpp81 PE = I->first.end(); PI != PE; ++PI) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFlattenCFG.cpp148 for (SmallPtrSetIterator<BasicBlock *> PI = Preds.begin(), PE = Preds.end();
149 PI != PE; ++PI) {
H A DLoopSimplify.cpp130 for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
131 PI != PE; ++PI) {
492 PE = pred_end(*BB); PI != PE; ++PI) {
892 PE = pred_end(L->getHeader()); PI != PE; ++PI)
H A DBasicBlockUtils.cpp1009 pred_iterator PI = pred_begin(BB), PE = pred_end(BB); local
1010 if (PI == PE) // No predecessor
1013 if (PI == PE) // Only one predecessor
1016 if (PI != PE) // More than two predecessors
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp203 if (const ParenExpr *PE = dyn_cast<ParenExpr>(S))
204 if (!PE->getBeginLoc().isMacroID())
205 return isConfigurationValue(PE->getSubExpr(), PP, SilenceableCondVal,
H A DAnalysisDeclContext.cpp614 void VisitPseudoObjectExpr(PseudoObjectExpr *PE) { argument
615 for (PseudoObjectExpr::semantics_iterator it = PE->semantics_begin(),
616 et = PE->semantics_end(); it != et; ++it) {
H A DThreadSafety.cpp743 PE = CurrBlock->pred_end(); PI != PE; ++PI) {
1435 else if (const auto *PE = dyn_cast<ParenExpr>(Cond))
1436 return getTrylockCallExpr(PE->getSubExpr(), C, Negate);
1757 if (const auto *PE = dyn_cast<ParenExpr>(Exp)) {
1758 Exp = PE->getSubExpr();
2389 PE = CurrBlock->pred_end(); PI != PE; ++PI) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCXXInheritance.cpp364 for (const CXXBasePathElement &PE : Path) {
365 if (!PE.Base->isVirtual())
369 if (const RecordType *Record = PE.Base->getType()->getAs<RecordType>())
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp875 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), local
884 *Context, PE, true, FD, FD->getType(), VK_LValue, OK_Ordinary);
2609 ParenExpr *PE = new (Context) ParenExpr(Exp->getLocation(), Exp->getExprLoc(), local
2611 ReplaceStmt(Exp, PE);
2612 return PE;
2689 ParenExpr *PE = new (Context) ParenExpr(StartLoc, EndLoc, cast); local
2692 CallExpr *CE = CallExpr::Create(*Context, PE, MsgExprs, FT->getReturnType(),
2810 ParenExpr *PE = new (Context) ParenExpr(StartLoc, EndLoc, cast); local
2813 CallExpr *CE = CallExpr::Create(*Context, PE, MsgExprs, FT->getReturnType(),
2961 ParenExpr *PE local
3534 ParenExpr *PE = new (Context) ParenExpr(StartLoc, EndLoc, cast); local
4623 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), local
4692 ParenExpr *PE = new (Context) ParenExpr(DeclRefExp->getExprLoc(), local
4711 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), local
7492 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), local
7521 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), local
[all...]
H A DRewriteObjC.cpp2612 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), cast); local
2615 CallExpr *STCE = CallExpr::Create(*Context, PE, MsgExprs, FT->getReturnType(),
2965 ParenExpr *PE = new (Context) ParenExpr(StartLoc, EndLoc, cast); local
2968 CallExpr *CE = CallExpr::Create(*Context, PE, MsgExprs, FT->getReturnType(),
3793 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), local
3795 //PE->dump();
3804 *Context, PE, true, FD, FD->getType(), VK_LValue, OK_Ordinary);
3808 PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), FunkCast);
3818 CallExpr *CE = CallExpr::Create(*Context, PE, BlkExprs, Exp->getType(),
3863 ParenExpr *PE local
3882 ParenExpr *PE = new (Context) ParenExpr(SourceLocation(), SourceLocation(), local
5834 ParenExpr *PE = new (Context) ParenExpr(OldRange.getBegin(), local
5874 ParenExpr *PE = new (Context) ParenExpr( local
[all...]
/freebsd-11-stable/contrib/elftoolchain/elfcopy/
H A Dpe.c39 /* Convert ELF object to Portable Executable (PE). */
48 PE *pe;
80 /* Setup PE COFF header. */
99 /* Setup PE optional header. */
162 * Create PE/COFF section.
171 * Setup PE/COFF section header. The section name is not
173 * section name should be truncated for PE image according
174 * to the PE/COFF specification.
186 * Translate ELF section flags to PE/COFF section flags.
226 /* Update PE optiona
[all...]
/freebsd-11-stable/libexec/getty/
H A Dgettytab.h158 #define PE gettyflags[10].value macro
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstruction.cpp253 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
255 setIsExact(PE->isExact());
275 if (auto *PE = dyn_cast<PossiblyExactOperator>(V))
277 setIsExact(isExact() & PE->isExact());

Completed in 402 milliseconds

12345