/external/llvm/include/llvm/MC/ |
D | MCDwarf.h | 201 StringRef CompilationDir; member 216 void setCompilationDir(StringRef CompilationDir) { in setCompilationDir() argument 217 Header.CompilationDir = CompilationDir; in setCompilationDir() 247 void setCompilationDir(StringRef CompilationDir) { in setCompilationDir() argument 248 Header.CompilationDir = CompilationDir; in setCompilationDir()
|
D | MCContext.h | 129 SmallString<128> CompilationDir; variable 431 StringRef getCompilationDir() const { return CompilationDir; } in getCompilationDir() 434 void setCompilationDir(StringRef S) { CompilationDir = S.str(); } in setCompilationDir() 481 void setMCLineTableCompilationDir(unsigned CUID, StringRef CompilationDir) { in setMCLineTableCompilationDir() argument 482 getMCDwarfLineTable(CUID).setCompilationDir(CompilationDir); in setMCLineTableCompilationDir()
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCContext.h | 147 SmallString<128> CompilationDir; variable 582 StringRef getCompilationDir() const { return CompilationDir; } in getCompilationDir() 585 void setCompilationDir(StringRef S) { CompilationDir = S.str(); } in setCompilationDir() 639 void setMCLineTableRootFile(unsigned CUID, StringRef CompilationDir, in setMCLineTableRootFile() argument 643 getMCDwarfLineTable(CUID).setRootFile(CompilationDir, Filename, Checksum, in setMCLineTableRootFile()
|
D | MCDwarf.h | 223 std::string CompilationDir; member 260 CompilationDir = std::string(Directory); in setRootFile() 333 Header.CompilationDir = std::string(Directory); in setRootFile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCContext.h | 144 SmallString<128> CompilationDir; variable 527 StringRef getCompilationDir() const { return CompilationDir; } in getCompilationDir() 530 void setCompilationDir(StringRef S) { CompilationDir = S.str(); } in setCompilationDir() 584 void setMCLineTableRootFile(unsigned CUID, StringRef CompilationDir, in setMCLineTableRootFile() argument 588 getMCDwarfLineTable(CUID).setRootFile(CompilationDir, Filename, Checksum, in setMCLineTableRootFile()
|
D | MCDwarf.h | 218 std::string CompilationDir; member 255 CompilationDir = Directory; in setRootFile() 328 Header.CompilationDir = Directory; in setRootFile()
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnit.cpp | 296 const char *CompilationDir = in parseDWO() local 299 if (sys::path::is_relative(DWOFileName) && CompilationDir != nullptr) { in parseDWO() 300 sys::path::append(AbsolutePath, CompilationDir); in parseDWO()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCContext.cpp | 100 CompilationDir.clear(); in reset() 596 std::string CompDir = CompilationDir.str(); in RemapDebugPaths() 598 CompilationDir = CompDir; in RemapDebugPaths()
|
D | MCDwarf.cpp | 391 const StringRef CompDir = CompilationDir.empty() in emitV5FileDirTables() 393 : StringRef(CompilationDir); in emitV5FileDirTables() 561 if (Directory == CompilationDir) in tryGetFile()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnit.cpp | 570 auto CompilationDir = dwarf::toString(UnitDie.find(DW_AT_comp_dir)); in parseDWO() local 572 if (sys::path::is_relative(*DWOFileName) && CompilationDir && in parseDWO() 573 *CompilationDir) { in parseDWO() 574 sys::path::append(AbsolutePath, *CompilationDir); in parseDWO()
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnit.cpp | 531 auto CompilationDir = dwarf::toString(UnitDie.find(DW_AT_comp_dir)); in parseDWO() local 533 if (sys::path::is_relative(*DWOFileName) && CompilationDir && in parseDWO() 534 *CompilationDir) { in parseDWO() 535 sys::path::append(AbsolutePath, *CompilationDir); in parseDWO()
|
/external/llvm-project/llvm/lib/MC/ |
D | MCContext.cpp | 101 CompilationDir.clear(); in reset() 729 std::string CompDir = std::string(CompilationDir.str()); in RemapDebugPaths() 731 CompilationDir = CompDir; in RemapDebugPaths()
|
D | MCDwarf.cpp | 410 const StringRef CompDir = CompilationDir.empty() in emitV5FileDirTables() 412 : StringRef(CompilationDir); in emitV5FileDirTables() 590 if (Directory == CompilationDir) in tryGetFile()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfDebug.cpp | 387 CompilationDir = DIUnit->getDirectory(); in constructDwarfCompileUnit() 406 NewCU.getUniqueID(), CompilationDir); in constructDwarfCompileUnit() 418 if (!CompilationDir.empty()) in constructDwarfCompileUnit() 419 NewCU.addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); in constructDwarfCompileUnit() 1794 if (!CompilationDir.empty()) in initSkeletonUnit() 1795 NewU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); in initSkeletonUnit()
|
D | DwarfDebug.h | 229 StringRef CompilationDir; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfDebug.cpp | 841 if (!CompilationDir.empty()) in finishUnitAttributes() 842 NewCU.addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); in finishUnitAttributes() 880 CompilationDir = DIUnit->getDirectory(); in getOrCreateDwarfCompileUnit() 896 CompilationDir, DIUnit->getFilename(), in getOrCreateDwarfCompileUnit() 2820 if (!CompilationDir.empty()) in initSkeletonUnit() 2821 NewU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); in initSkeletonUnit()
|
D | DwarfDebug.h | 334 StringRef CompilationDir; variable
|
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfDebug.cpp | 1020 if (!CompilationDir.empty()) in finishUnitAttributes() 1021 NewCU.addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); in finishUnitAttributes() 1058 CompilationDir = DIUnit->getDirectory(); in getOrCreateDwarfCompileUnit() 1074 CompilationDir, DIUnit->getFilename(), getMD5AsBytes(DIUnit->getFile()), in getOrCreateDwarfCompileUnit() 3120 if (!CompilationDir.empty()) in initSkeletonUnit() 3121 NewU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); in initSkeletonUnit()
|
D | DwarfDebug.h | 332 StringRef CompilationDir; variable
|
/external/llvm/lib/MC/ |
D | MCContext.cpp | 86 CompilationDir.clear(); in reset()
|
D | MCDwarf.cpp | 339 if (Directory == CompilationDir) in getFile()
|
/external/google-breakpad/src/common/ |
D | dwarf_cu_to_module_unittest.cc | 646 TEST_F(SimpleCU, CompilationDir) { in TEST_F() argument
|