| /freebsd-12-stable/contrib/llvm-project/lld/MachO/ |
| D | ObjC.cpp | 22 template <class LP> static bool hasObjCSection(MemoryBufferRef mb) { in hasObjCSection() 23 using Section = typename LP::section; in hasObjCSection() 26 reinterpret_cast<const typename LP::mach_header *>(mb.getBufferStart()); in hasObjCSection() 27 if (hdr->magic != LP::magic) in hasObjCSection() 31 findCommand<typename LP::segment_command>(hdr, LP::segmentLCType)) { in hasObjCSection()
|
| D | Target.h | 33 template <class LP> TargetInfo(LP) { in TargetInfo() argument 36 magic = LP::magic; in TargetInfo() 37 pageZeroSize = LP::pageZeroSize; in TargetInfo() 38 headerSize = sizeof(typename LP::mach_header); in TargetInfo() 39 wordSize = LP::wordSize; in TargetInfo()
|
| D | Writer.cpp | 53 template <class LP> void createOutputSections(); 54 template <class LP> void createLoadCommands(); 65 template <class LP> void run(); 219 template <class LP> class LCSegment final : public LoadCommand { 224 return sizeof(typename LP::segment_command) + in getSize() 225 seg->numNonHiddenSections() * sizeof(typename LP::section); in getSize() 229 using SegmentCommand = typename LP::segment_command; in writeTo() 230 using Section = typename LP::section; in writeTo() 235 c->cmd = LP::segmentLCType; in writeTo() 511 template <class LP> class LCEncryptionInfo final : public LoadCommand { [all …]
|
| D | InputFiles.h | 109 template <class LP> void parse(); 111 template <class LP> 112 void parseSymbols(ArrayRef<typename LP::section> sectionHeaders, 113 ArrayRef<typename LP::nlist> nList, const char *strtab,
|
| D | SyntheticSections.cpp | 732 template <class LP> 734 using SegmentCommand = typename LP::segment_command; in collectDataInCodeEntries() 735 using Section = typename LP::section; in collectDataInCodeEntries() 743 findCommand(objFile->mb.getBufferStart(), LP::segmentLCType)); in collectDataInCodeEntries() 995 template <class LP> class SymtabSectionImpl final : public SymtabSection { 1003 template <class LP> uint64_t SymtabSectionImpl<LP>::getRawSize() const { in getRawSize() 1004 return getNumSymbols() * sizeof(typename LP::nlist); in getRawSize() 1007 template <class LP> void SymtabSectionImpl<LP>::writeTo(uint8_t *buf) const { in writeTo() 1008 auto *nList = reinterpret_cast<typename LP::nlist *>(buf); in writeTo() 1073 template <class LP> [all …]
|
| D | InputFiles.cpp | 593 template <class LP> 594 void ObjFile::parseSymbols(ArrayRef<typename LP::section> sectionHeaders, in parseSymbols() 595 ArrayRef<typename LP::nlist> nList, in parseSymbols() 597 using NList = typename LP::nlist; in parseSymbols() 749 template <class LP> void ObjFile::parse() { in parse() 750 using Header = typename LP::mach_header; in parse() 751 using SegmentCommand = typename LP::segment_command; in parse() 752 using Section = typename LP::section; in parse() 753 using NList = typename LP::nlist; in parse() 776 if (const load_command *cmd = findCommand(hdr, LP::segmentLCType)) { in parse() [all …]
|
| D | Writer.h | 28 template <class LP> void writeResult();
|
| /freebsd-12-stable/contrib/llvm-project/lld/MachO/Arch/ |
| D | ARM64Common.h | 23 template <class LP> ARM64Common(LP lp) : TargetInfo(lp) {} in ARM64Common() 93 template <class LP> 101 in.lazyPointers->addr + sym.stubsIndex * LP::wordSize; in writeStub() 108 template <class LP> 122 in.got->addr + in.stubHelper->stubBinder->gotIndex * LP::wordSize; in writeStubHelperHeader()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | MachineFunctionSplitter.cpp | 139 for (const MachineBasicBlock *LP : LandingPads) { in runOnMachineFunction() local 140 if (!isColdBlock(*LP, MBFI, PSI)) in runOnMachineFunction() 144 for (MachineBasicBlock *LP : LandingPads) in runOnMachineFunction() 145 LP->setSectionID(MBBSectionID::ColdSectionID); in runOnMachineFunction()
|
| 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()
|
| D | MachineFunction.cpp | 706 LandingPadInfo &LP = LandingPads[i]; in getOrCreateLandingPadInfo() local 707 if (LP.LandingPadBlock == LandingPad) in getOrCreateLandingPadInfo() 708 return LP; in getOrCreateLandingPadInfo() 717 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); in addInvoke() local 718 LP.BeginLabels.push_back(BeginLabel); in addInvoke() 719 LP.EndLabels.push_back(EndLabel); in addInvoke() 724 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); in addLandingPad() local 725 LP.LandingPadLabel = LandingPadLabel; in addLandingPad() 771 LandingPadInfo &LP = getOrCreateLandingPadInfo(LandingPad); in addCatchTypeInfo() local 773 LP.TypeIds.push_back(getTypeIDFor(TyInfo[N - 1])); in addCatchTypeInfo() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| D | LoopPass.h | 98 LoopPass *LP = static_cast<LoopPass *>(PassVector[N]); in getContainedPass() local 99 return LP; in getContainedPass()
|
| /freebsd-12-stable/contrib/elftoolchain/ar/ |
| D | acpyacc.y | 105 %token LP 167 : ADDLIB FNAME LP mod_list RP { arscp_addlib($2, $4); } 189 | DIRECTORY FNAME LP mod_list RP { arscp_dir($2, $4, NULL); } 190 | DIRECTORY FNAME LP mod_list RP FNAME { arscp_dir($2, $4, $6); }
|
| D | acplex.l | 68 "(" { return (LP); }
|
| /freebsd-12-stable/usr.bin/ar/ |
| D | acpyacc.y | 104 %token LP 166 : ADDLIB FNAME LP mod_list RP { arscp_addlib($2, $4); } 188 | DIRECTORY FNAME LP mod_list RP { arscp_dir($2, $4, NULL); } 189 | DIRECTORY FNAME LP mod_list RP FNAME { arscp_dir($2, $4, $6); }
|
| D | acplex.l | 68 "(" { return (LP); }
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| D | InstrProfiling.cpp | 321 bool allowSpeculativeCounterPromotion(Loop *LP) { in allowSpeculativeCounterPromotion() argument 334 bool isPromotionPossible(Loop *LP, in isPromotionPossible() argument 342 if (!LP->hasDedicatedExits()) in isPromotionPossible() 345 BasicBlock *PH = LP->getLoopPreheader(); in isPromotionPossible() 353 unsigned getMaxNumOfPromotionsInLoop(Loop *LP) { in getMaxNumOfPromotionsInLoop() argument 355 LP->getExitBlocks(LoopExitBlocks); in getMaxNumOfPromotionsInLoop() 356 if (!isPromotionPossible(LP, LoopExitBlocks)) in getMaxNumOfPromotionsInLoop() 360 LP->getExitingBlocks(ExitingBlocks); in getMaxNumOfPromotionsInLoop()
|
| /freebsd-12-stable/contrib/bearssl/mk/ |
| D | Defaults.mk | 30 BEARSSLLIB = $(BUILD)$P$(LP)bearssl$L
|
| /freebsd-12-stable/contrib/bearssl/conf/ |
| D | Unix.mk | 13 LP = lib
|
| D | Win.mk | 13 LP =
|
| /freebsd-12-stable/contrib/binutils/gas/ |
| D | atof-generic.c | 601 #define print_littlenum(LP) (printf (littlenum_format, LP)) argument
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| D | LoopPredication.cpp | 339 LoopPredication LP(AA, DT, SE, LI, &BPI); in runOnLoop() local 340 return LP.runOnLoop(L); in runOnLoop() 366 LoopPredication LP(&AR.AA, &AR.DT, &AR.SE, &AR.LI, &BPI); in run() local 367 if (!LP.runOnLoop(&L)) in run()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | CGException.cpp | 773 llvm::BasicBlock *LP = EHStack.begin()->getCachedLandingPad(); in getInvokeDestImpl() local 774 if (LP) return LP; in getInvokeDestImpl() 783 LP = getEHDispatchBlock(EHStack.getInnermostEHScope()); in getInvokeDestImpl() 786 LP = EmitLandingPad(); in getInvokeDestImpl() 789 assert(LP); in getInvokeDestImpl() 794 ir->setCachedLandingPad(LP); in getInvokeDestImpl() 798 return LP; in getInvokeDestImpl()
|
| /freebsd-12-stable/share/misc/ |
| D | pci_vendors | 2408 6761 Seymour LP [Radeon HD 6430M] 2742 6826 Chelsea LP [Radeon HD 7700M Series] 2753 682f Chelsea LP [Radeon HD 7730M] 3287 1043 03c2 EAH5450 SILENT/DI/512MD2 (LP) 5373 102b 2061 PJ-40LP 5402 102b 2080 M9140 LP PCIe x16 5407 102b 2180 M9120 Plus LP PCIe x16 5408 102b 21c0 M9120 Plus LP PCIe x1 5410 102b 2240 M9148 LP PCIe x16 5411 102b 2241 M9138 LP PCIe x16 [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/ |
| D | VEISelLowering.cpp | 2195 for (auto &LP : CallSiteNumToLPad[CSI]) { in emitSjLjDispatchBlock() local 2196 LPadList.push_back(LP); in emitSjLjDispatchBlock() 2197 InvokeBBs.insert(LP->pred_begin(), LP->pred_end()); in emitSjLjDispatchBlock() 2399 for (auto &LP : LPadList) in emitSjLjDispatchBlock() local 2400 if (SeenMBBs.insert(LP).second) in emitSjLjDispatchBlock() 2401 DispContBB->addSuccessor(LP); in emitSjLjDispatchBlock() 2448 for (auto &LP : MBBLPads) in emitSjLjDispatchBlock() local 2449 LP->setIsEHPad(false); in emitSjLjDispatchBlock()
|