| /openbsd-src/gnu/llvm/lld/MachO/ |
| H A D | ObjC.cpp | 24 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 D | Target.h | 45 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 D | Writer.cpp | 53 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 D | InputFiles.h | 163 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 D | Writer.h | 27 template <class LP> void writeResult();
|
| H A D | InputFiles.cpp | 780 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 D | MachineFunctionSplitter.cpp | 128 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 D | DwarfEHPrepare.cpp | 137 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 D | MachineFunction.cpp | 747 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 D | ReduceBasicBlocks.cpp | 50 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 D | ARM64Common.h | 22 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 D | LoopPass.h | 99 LoopPass *LP = static_cast<LoopPass *>(PassVector[N]); in getContainedPass() local 100 return LP; in getContainedPass()
|
| /openbsd-src/usr.sbin/lpr/lpd/ |
| H A D | printjob.c | 1289 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 D | args.out_lint | 2 mandoc: args.in:9:2: ERROR: skipping all arguments: LP arg1 ...
|
| H A D | args.out_ascii | 9 LP with arguments:
|
| /openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/ |
| H A D | 946.crt | 12 eHi8sIWyYwAPjj91G7UoccIgkLSQ0QQmwBZ96UNoblnnVdhbfjn1xJpg4PfVZ+LP
|
| H A D | 1357.crt | 17 b22HBH8AAAEwDQYJKoZIhvcNAQELBQADggEBAGGq3NTIh7As9TVyJad1KtNT7+LP
|
| H A D | 1661.crt | 19 3GjHQo8seLNXoKFFyNEv5QK2Fz/r/jAgA79bLwgnbS2GjDgh+LP+WXKcBy6kCt8p
|
| H A D | 1251.crt | 15 LP+AQUUiPM9jg+VmCTOiMT2tdRpyB66WiXAoJu4HCmmLWRvPN8c0R0xSiOe+a/UC
|
| H A D | 2027.key | 17 FhBZ76t7SkayVfLV/LP+ZRPEIC0+odRbrvEYlyGAy1jScyFEbcYBJvPpDgFrPBNm
|
| H A D | 3044.key | 5 JpHVXhYxQfi3hg29jzfXxVVw+LP/8DLMRiE5cwC+1T83YuALx75Pbo5htUiA4QlX
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrProfiling.cpp | 310 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 D | lp.h | 51 extern char *LP; /* line printer device name */
|
| H A D | rmjob.c | 88 if (cgetstr(bp, DEFLP, &LP) < 0) in rmjob() 89 LP = _PATH_DEFDEVLP; in rmjob()
|
| /openbsd-src/gnu/usr.bin/binutils/gas/ |
| H A D | atof-generic.c | 617 #define print_littlenum(LP) (printf (littlenum_format, LP)) argument
|