| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfo.cpp | 663 DISubprogram *getReplacementSubprogram(DISubprogram *MDS) { in getReplacementSubprogram() argument 664 auto *FileAndScope = cast_or_null<DIFile>(map(MDS->getFile())); in getReplacementSubprogram() 665 StringRef LinkageName = MDS->getName().empty() ? MDS->getLinkageName() : ""; in getReplacementSubprogram() 667 auto *Type = cast_or_null<DISubroutineType>(map(MDS->getType())); in getReplacementSubprogram() 669 cast_or_null<DIType>(map(MDS->getContainingType())); in getReplacementSubprogram() 670 auto *Unit = cast_or_null<DICompileUnit>(map(MDS->getUnit())); in getReplacementSubprogram() 677 MDS->getContext(), FileAndScope, MDS->getName(), LinkageName, in getReplacementSubprogram() 678 FileAndScope, MDS->getLine(), Type, MDS->getScopeLine(), in getReplacementSubprogram() 679 ContainingType, MDS->getVirtualIndex(), MDS->getThisAdjustment(), in getReplacementSubprogram() 680 MDS->getFlags(), MDS->getSPFlags(), Unit, TemplateParams, Declaration, in getReplacementSubprogram() [all …]
|
| H A D | Module.cpp | 743 if (auto *MDS = dyn_cast_or_null<MDString>(MD)) in getStackProtectorGuard() local 744 return MDS->getString(); in getStackProtectorGuard() 755 if (auto *MDS = dyn_cast_or_null<MDString>(MD)) in getStackProtectorGuardReg() local 756 return MDS->getString(); in getStackProtectorGuardReg() 767 if (auto *MDS = dyn_cast_or_null<MDString>(MD)) in getStackProtectorGuardSymbol() local 768 return MDS->getString(); in getStackProtectorGuardSymbol()
|
| H A D | Function.cpp | 2051 if (MDString *MDS = dyn_cast<MDString>(MD->getOperand(0))) { in getEntryCount() local 2052 if (MDS->getString() == "function_entry_count") { in getEntryCount() 2061 MDS->getString() == "synthetic_function_entry_count") { in getEntryCount() 2073 if (MDString *MDS = dyn_cast<MDString>(MD->getOperand(0))) in getImportGUIDs() local 2074 if (MDS->getString() == "function_entry_count") in getImportGUIDs()
|
| H A D | Verifier.cpp | 2404 MDString *MDS = cast<MDString>(MD->getOperand(0)); in verifyFunctionMetadata() local 2405 StringRef ProfName = MDS->getString(); in verifyFunctionMetadata() 4831 MDString *MDS = cast<MDString>(MD->getOperand(0)); in visitProfMetadata() local 4832 StringRef ProfName = MDS->getString(); in visitProfMetadata()
|
| H A D | AsmWriter.cpp | 2671 if (const MDString *MDS = dyn_cast<MDString>(MD)) { in WriteAsOperandInternal() local 2673 printEscapedString(MDS->getString(), Out); in WriteAsOperandInternal()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemoryProfileInfo.cpp | 91 auto *MDS = dyn_cast<MDString>(MIB->getOperand(1)); in getMIBAllocType() local 92 assert(MDS); in getMIBAllocType() 93 if (MDS->getString() == "cold") { in getMIBAllocType() 95 } else if (MDS->getString() == "hot") { in getMIBAllocType()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | InputFile.cpp | 206 auto MDS = getModuleDebugStream(File->pdb(), Name, Modi); in initializeForPdb() local 207 if (!MDS) { in initializeForPdb() 208 consumeError(MDS.takeError()); in initializeForPdb() 212 DebugStream = std::make_shared<ModuleDebugStreamRef>(std::move(*MDS)); in initializeForPdb()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
| H A D | AMDGPUPALMetadata.cpp | 39 if (auto MDS = dyn_cast<MDString>(MDN->getOperand(0))) in readFromIR() local 40 setFromMsgPackBlob(MDS->getString()); in readFromIR()
|
| /freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | MetadataLoader.cpp | 1152 auto MDS = MDString::get(Context, MDStringRef[ID]); in lazyLoadOneMDString() local 1153 MetadataList.assignValue(MDS, ID); in lazyLoadOneMDString() 1154 return MDS; in lazyLoadOneMDString() 1285 auto MDS = getMDOrNull(ID); in parseOneMetadata() local 1286 return cast_or_null<MDString>(MDS); in parseOneMetadata()
|
| H A D | BitcodeReader.cpp | 6975 MDString *MDS = cast<MDString>(MD->getOperand(0)); in materialize() local 6976 StringRef ProfName = MDS->getString(); in materialize()
|
| /freebsd/sys/contrib/device-tree/src/powerpc/fsl/ |
| H A D | p1021mds.dts | 3 * P1021 MDS Device Tree Source
|
| H A D | mpc8568mds.dts | 3 * MPC8568E MDS Device Tree Source
|
| H A D | mpc8569mds.dts | 3 * MPC8569E MDS Device Tree Source
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/ |
| H A D | MIRParser.cpp | 1051 for (const auto &MDS : YMF.MachineMetadataNodes) { in parseMachineMetadataNodes() local 1052 if (parseMachineMetadata(PFS, MDS)) in parseMachineMetadataNodes()
|
| /freebsd/sys/contrib/device-tree/src/powerpc/ |
| H A D | mpc832x_mds.dts | 8 * To enable external serial I/O on a Freescale MPC 8323 SYS/MDS board, do
|
| H A D | mpc834x_mds.dts | 3 * MPC8349E MDS Device Tree Source
|
| H A D | mpc8377_mds.dts | 3 * MPC8377E MDS Device Tree Source
|
| H A D | mpc8378_mds.dts | 3 * MPC8378E MDS Device Tree Source
|
| H A D | mpc8379_mds.dts | 3 * MPC8379E MDS Device Tree Source
|
| /freebsd/lib/libc++/ |
| H A D | Makefile | 910 INCSGROUPS+= MDS 919 MDS+= ${HDRDIR}/__mdspan/${hdr}
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | LowerTypeTests.cpp | 1124 if (auto MDS = dyn_cast<MDString>(TypeId)) in lowerTypeTestCalls() 1125 dbgs() << MDS->getString() << ": "; in lowerTypeTestCalls()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
| H A D | DXILBitcodeWriter.cpp | 1779 const MDString *MDS = cast<MDString>(MD); in writeMetadataStrings() local 1781 Record.append(MDS->bytes_begin(), MDS->bytes_end()); in writeMetadataStrings()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| H A D | PPCAsmPrinter.cpp | 3320 const MDString *MDS = cast<MDString>(N->getOperand(0)); in emitModuleCommandLines() local 3323 RSOS << "@(#)opt " << MDS->getString() << "\n"; in emitModuleCommandLines()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenModule.cpp | 2136 llvm::MDString *MDS = dyn_cast<llvm::MDString>(MD); in CreateCrossDsoCfiTypeId() local 2137 if (!MDS) return nullptr; in CreateCrossDsoCfiTypeId() 2139 return llvm::ConstantInt::get(Int64Ty, llvm::MD5Hash(MDS->getString())); in CreateCrossDsoCfiTypeId()
|
| /freebsd/share/misc/ |
| H A D | usb_vendors | 12677 09b4 MDS Telephone Systems
|