/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
H A D | MCContext.h | 678 Optional<StringRef> Source, unsigned CUID); 680 bool isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID = 0); 686 MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) { in getMCDwarfLineTable() argument 687 return MCDwarfLineTablesCUMap[CUID]; in getMCDwarfLineTable() 690 const MCDwarfLineTable &getMCDwarfLineTable(unsigned CUID) const { in getMCDwarfLineTable() argument 691 auto I = MCDwarfLineTablesCUMap.find(CUID); in getMCDwarfLineTable() 696 const SmallVectorImpl<MCDwarfFile> &getMCDwarfFiles(unsigned CUID = 0) { 697 return getMCDwarfLineTable(CUID).getMCDwarfFiles(); 700 const SmallVectorImpl<std::string> &getMCDwarfDirs(unsigned CUID = 0) { 701 return getMCDwarfLineTable(CUID).getMCDwarfDirs(); [all …]
|
H A D | MCStreamer.h | 864 unsigned CUID = 0) { 867 Source, CUID)); 878 unsigned CUID = 0); 884 unsigned CUID = 0); 975 virtual MCSymbol *getDwarfLineTableSymbol(unsigned CUID);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
H A D | MCStreamer.cpp | 231 unsigned CUID) { in tryEmitDwarfFileDirective() argument 233 Source, CUID); in tryEmitDwarfFileDirective() 240 unsigned CUID) { in emitDwarfFile0Directive() argument 241 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive() 260 MCSymbol *MCStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument 261 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in getDwarfLineTableSymbol() 265 Context.getOrCreateSymbol(Prefix + "line_table_start" + Twine(CUID))); in getDwarfLineTableSymbol()
|
H A D | MCAsmStreamer.cpp | 259 unsigned CUID = 0) override; 263 unsigned CUID = 0) override; 268 MCSymbol *getDwarfLineTableSymbol(unsigned CUID) override; 1478 Optional<MD5::MD5Result> Checksum, Optional<StringRef> Source, unsigned CUID) { in tryEmitDwarfFileDirective() argument 1479 assert(CUID == 0 && "multiple CUs not supported by MCAsmStreamer"); in tryEmitDwarfFileDirective() 1481 MCDwarfLineTable &Table = getContext().getMCDwarfLineTable(CUID); in tryEmitDwarfFileDirective() 1513 unsigned CUID) { in emitDwarfFile0Directive() argument 1514 assert(CUID == 0); in emitDwarfFile0Directive() 1519 getContext().setMCLineTableRootFile(CUID, Directory, Filename, Checksum, in emitDwarfFile0Directive() 1587 MCSymbol *MCAsmStreamer::getDwarfLineTableSymbol(unsigned CUID) { in getDwarfLineTableSymbol() argument
|
H A D | MCContext.cpp | 868 unsigned CUID) { in getDwarfFile() argument 869 MCDwarfLineTable &Table = MCDwarfLineTablesCUMap[CUID]; in getDwarfFile() 876 bool MCContext::isValidDwarfFileNumber(unsigned FileNumber, unsigned CUID) { in isValidDwarfFileNumber() argument 877 const MCDwarfLineTable &LineTable = getMCDwarfLineTable(CUID); in isValidDwarfFileNumber()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | LangOptions.h | 355 std::string CUID; variable
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfCompileUnit.cpp | 126 unsigned CUID = Asm->OutStreamer->hasRawTextSupport() ? 0 : getUniqueID(); in getOrCreateSourceID() local 129 CUID); in getOrCreateSourceID() 132 File->getSource(), CUID); in getOrCreateSourceID()
|
H A D | DwarfDebug.h | 656 DebugLoc emitInitialLocDirective(const MachineFunction &MF, unsigned CUID);
|
H A D | DwarfDebug.cpp | 2051 const MDNode *S, unsigned Flags, unsigned CUID, in recordSourceLine() argument 2063 FileNo = static_cast<DwarfCompileUnit &>(*DCUs[CUID]) in recordSourceLine() 2071 unsigned CUID) { in emitInitialLocDirective() argument 2082 CUID, getDwarfVersion(), getUnits()); in emitInitialLocDirective()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ |
H A D | Driver.cpp | 2557 std::string CUID = FixedCUID.str(); in addDeviceDepences() local 2558 if (CUID.empty()) { in addDeviceDepences() 2560 CUID = llvm::utohexstr(llvm::sys::Process::GetRandomNumber(), in addDeviceDepences() 2575 CUID = llvm::utohexstr(Hash.low(), /*LowerCase=*/true); in addDeviceDepences() 2578 IA->setId(CUID); in addDeviceDepences()
|
/netbsd-src/external/ibm-public/postfix/dist/proto/ |
H A D | stop.spell-cc | 225 CUID
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGCUDANV.cpp | 280 !CGM.getLangOpts().CUID.empty()) { in getDeviceSideName()
|
H A D | CodeGenModule.cpp | 1269 CGM.getLangOpts().CUDAIsDevice && !CGM.getLangOpts().CUID.empty()) in getMangledNameImpl()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
H A D | Clang.cpp | 6561 auto CUID = cast<InputAction>(SourceAction)->getId(); in ConstructJob() local 6562 if (!CUID.empty()) in ConstructJob() 6563 CmdArgs.push_back(Args.MakeArgString(Twine("-cuid=") + Twine(CUID))); in ConstructJob()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | ASTContext.cpp | 11646 if (LangOpts.CUID.empty()) in getCUIDHash() 11648 CUIDHash = llvm::utohexstr(llvm::MD5Hash(LangOpts.CUID), /*LowerCase=*/true); in getCUIDHash()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
H A D | Options.td | 997 MarshallingInfoString<LangOpts<"CUID">>;
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | ChangeLog-1998 | 5871 mem_first_set, mem_last_set; because 0 can be a CUID.
|
H A D | ChangeLog-2005 | 10348 * postreload-gcse.c (alloc_mem): Start CUID numbering at 1.
|