Home
last modified time | relevance | path

Searched refs:LP (Results 1 – 25 of 94) sorted by relevance

1234

/openbsd-src/gnu/llvm/lld/MachO/
H A DObjC.cpp24 template <class LP> static bool objectHasObjCSection(MemoryBufferRef mb) { in objectHasObjCSection()
25 using SectionHeader = typename LP::section; in objectHasObjCSection()
28 reinterpret_cast<const typename LP::mach_header *>(mb.getBufferStart()); in objectHasObjCSection()
29 if (hdr->magic != LP::magic) in objectHasObjCSection()
33 findCommand<typename LP::segment_command>(hdr, LP::segmentLCType)) { in objectHasObjCSection()
H A DTarget.h45 template <class LP> TargetInfo(LP) { in TargetInfo() argument
48 magic = LP::magic; in TargetInfo()
49 pageZeroSize = LP::pageZeroSize; in TargetInfo()
50 headerSize = sizeof(typename LP::mach_header); in TargetInfo()
51 wordSize = LP::wordSize; in TargetInfo()
52 p2WordSize = llvm::CTLog2<LP::wordSize>(); in TargetInfo()
H A DWriter.cpp53 template <class LP> void createOutputSections();
54 template <class LP> void createLoadCommands();
67 template <class LP> void run();
222 template <class LP> class LCSegment final : public LoadCommand {
227 return sizeof(typename LP::segment_command) + in getSize()
228 seg->numNonHiddenSections() * sizeof(typename LP::section); in getSize()
232 using SegmentCommand = typename LP::segment_command; in writeTo()
233 using SectionHeader = typename LP::section; in writeTo()
238 c->cmd = LP::segmentLCType; in writeTo()
546 template <class LP> class LCEncryptionInfo final : public LoadCommand {
[all …]
H A DInputFiles.h163 template <class LP> void parse();
184 template <class LP> void parseLazy();
186 template <class LP>
187 void parseSymbols(ArrayRef<typename LP::section> sectionHeaders,
188 ArrayRef<typename LP::nlist> nList, const char *strtab,
H A DWriter.h27 template <class LP> void writeResult();
H A DInputFiles.cpp780 template <class LP>
781 void ObjFile::parseSymbols(ArrayRef<typename LP::section> sectionHeaders, in parseSymbols()
782 ArrayRef<typename LP::nlist> nList, in parseSymbols()
784 using NList = typename LP::nlist; in parseSymbols()
964 template <class LP> void ObjFile::parse() { in parse()
965 using Header = typename LP::mach_header; in parse()
966 using SegmentCommand = typename LP::segment_command; in parse()
967 using SectionHeader = typename LP::section; in parse()
968 using NList = typename LP::nlist; in parse()
997 if (const load_command *cmd = findCommand(hdr, LP::segmentLCType)) { in parse()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineFunctionSplitter.cpp128 for (auto *LP : EHBlocks) { in setDescendantEHBlocksCold() local
129 addSuccesors(LP); in setDescendantEHBlocksCold()
130 Statuses[LP] = EH; in setDescendantEHBlocksCold()
226 for (const MachineBasicBlock *LP : LandingPads) { in runOnMachineFunction() local
227 if (!isColdBlock(*LP, MBFI, PSI)) in runOnMachineFunction()
231 for (MachineBasicBlock *LP : LandingPads) in runOnMachineFunction()
232 LP->setSectionID(MBBSectionID::ColdSectionID); in runOnMachineFunction()
H A DDwarfEHPrepare.cpp137 for (auto *LP : CleanupLPads) { in pruneUnreachableResumes() local
138 if (isPotentiallyReachable(LP, RI, nullptr, &DTU->getDomTree())) { in pruneUnreachableResumes()
179 if (auto *LP = BB.getLandingPadInst()) in InsertUnwindResumeCalls() local
180 if (LP->isCleanup()) in InsertUnwindResumeCalls()
181 CleanupLPads.push_back(LP); in InsertUnwindResumeCalls()
202 if (auto *LP = BB.getLandingPadInst()) in InsertUnwindResumeCalls() local
203 if (LP->isCleanup()) in InsertUnwindResumeCalls()
H A DMachineFunction.cpp747 LandingPadInfo &LP = LandingPads[i]; in getOrCreateLandingPadInfo() local
748 if (LP.LandingPadBlock == LandingPad) in getOrCreateLandingPadInfo()
749 return LP; in getOrCreateLandingPadInfo()
758 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); in addInvoke() local
759 LP.BeginLabels.push_back(BeginLabel); in addInvoke()
760 LP.EndLabels.push_back(EndLabel); in addInvoke()
765 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); in addLandingPad() local
766 LP.LandingPadLabel = LandingPadLabel; in addLandingPad()
773 LP.TypeIds.push_back(0); in addLandingPad()
781 LP.TypeIds.push_back( in addLandingPad()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/deltas/
H A DReduceBasicBlocks.cpp50 LandingPadInst *LP = Invoke->getLandingPadInst(); in replaceBranchTerminator() local
53 if (none_of(LP->getParent()->users(), [Invoke](User *U) { in replaceBranchTerminator()
56 LP->replaceAllUsesWith(getDefaultValue(LP->getType())); in replaceBranchTerminator()
57 LP->eraseFromParent(); in replaceBranchTerminator()
59 ChunkSuccessors[0] == LP->getParent()) { in replaceBranchTerminator()
/openbsd-src/gnu/llvm/lld/MachO/Arch/
H A DARM64Common.h22 template <class LP> ARM64Common(LP lp) : TargetInfo(lp) {} in ARM64Common()
122 template <class LP>
136 in.got->addr + in.stubHelper->stubBinder->gotIndex * LP::wordSize; in writeStubHelperHeader()
155 template <class LP>
168 uint64_t selectorOffset = selectorIndex * LP::wordSize; in writeObjCMsgSendStub()
175 encodePage21(&buf32[3], d, objcStubsFastCode[3], msgSendIndex * LP::wordSize); in writeObjCMsgSendStub()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DLoopPass.h99 LoopPass *LP = static_cast<LoopPass *>(PassVector[N]); in getContainedPass() local
100 return LP; in getContainedPass()
/openbsd-src/usr.sbin/lpr/lpd/
H A Dprintjob.c1289 if (cgetstr(bp, DEFLP, &LP) == -1) in init()
1290 LP = _PATH_DEFDEVLP; in init()
1357 if (!remote && *LP) { in openpr()
1358 if ((cp = strchr(LP, '@'))) in openpr()
1413 port = atoi(LP); in opennet()
1415 syslog(LOG_ERR, "%s: bad port number: %s", printer, LP); in opennet()
1436 pstatus("waiting for %s to come up", LP); in opennet()
1438 pstatus("waiting for access to printer on %s", LP); in opennet()
1454 pfd = open(LP, RW ? O_RDWR : O_WRONLY); in opentty()
1460 syslog(LOG_ERR, "%s: %m", LP); in opentty()
/openbsd-src/regress/usr.bin/mandoc/man/PP/
H A Dargs.out_lint2 mandoc: args.in:9:2: ERROR: skipping all arguments: LP arg1 ...
H A Dargs.out_ascii9 LP with arguments:
/openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/
H A D946.crt12 eHi8sIWyYwAPjj91G7UoccIgkLSQ0QQmwBZ96UNoblnnVdhbfjn1xJpg4PfVZ+LP
H A D1357.crt17 b22HBH8AAAEwDQYJKoZIhvcNAQELBQADggEBAGGq3NTIh7As9TVyJad1KtNT7+LP
H A D1661.crt19 3GjHQo8seLNXoKFFyNEv5QK2Fz/r/jAgA79bLwgnbS2GjDgh+LP+WXKcBy6kCt8p
H A D1251.crt15 LP+AQUUiPM9jg+VmCTOiMT2tdRpyB66WiXAoJu4HCmmLWRvPN8c0R0xSiOe+a/UC
H A D2027.key17 FhBZ76t7SkayVfLV/LP+ZRPEIC0+odRbrvEYlyGAy1jScyFEbcYBJvPpDgFrPBNm
H A D3044.key5 JpHVXhYxQfi3hg29jzfXxVVw+LP/8DLMRiE5cwC+1T83YuALx75Pbo5htUiA4QlX
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp310 bool allowSpeculativeCounterPromotion(Loop *LP) { in allowSpeculativeCounterPromotion() argument
324 isPromotionPossible(Loop *LP, in isPromotionPossible() argument
332 if (!LP->hasDedicatedExits()) in isPromotionPossible()
335 BasicBlock *PH = LP->getLoopPreheader(); in isPromotionPossible()
343 unsigned getMaxNumOfPromotionsInLoop(Loop *LP) { in getMaxNumOfPromotionsInLoop() argument
345 LP->getExitBlocks(LoopExitBlocks); in getMaxNumOfPromotionsInLoop()
346 if (!isPromotionPossible(LP, LoopExitBlocks)) in getMaxNumOfPromotionsInLoop()
350 LP->getExitingBlocks(ExitingBlocks); in getMaxNumOfPromotionsInLoop()
/openbsd-src/usr.sbin/lpr/common_source/
H A Dlp.h51 extern char *LP; /* line printer device name */
H A Drmjob.c88 if (cgetstr(bp, DEFLP, &LP) < 0) in rmjob()
89 LP = _PATH_DEFDEVLP; in rmjob()
/openbsd-src/gnu/usr.bin/binutils/gas/
H A Datof-generic.c617 #define print_littlenum(LP) (printf (littlenum_format, LP)) argument

1234