/external/llvm/tools/dsymutil/ |
D | MachODebugMapParser.cpp | 25 MachODebugMapParser(StringRef BinaryPath, ArrayRef<std::string> Archs, in MachODebugMapParser() argument 27 : BinaryPath(BinaryPath), Archs(Archs.begin(), Archs.end()), in MachODebugMapParser() 42 std::string BinaryPath; member in __anon0dd9b8570111::MachODebugMapParser 66 StringRef BinaryPath); 96 StringRef BinaryPath); 146 StringRef BinaryPath) { in parseOneBinary() argument 148 Result = make_unique<DebugMap>(MainBinary.getArchTriple(), BinaryPath); in parseOneBinary() 200 OS << "Symbol table for: '" << BinaryPath << "' (" << Arch.data() << ")\n"; in dumpSymTabHeader() 267 StringRef BinaryPath) { in dumpOneBinaryStab() argument 306 MainBinaryHolder.GetFilesAs<MachOObjectFile>(BinaryPath); in dumpStab() [all …]
|
D | DebugMap.h | 69 std::string BinaryPath; variable 80 DebugMap(const Triple &BinaryTriple, StringRef BinaryPath) in DebugMap() argument 81 : BinaryTriple(BinaryTriple), BinaryPath(BinaryPath) {} in DebugMap() 100 StringRef getBinaryPath() const { return BinaryPath; } in getBinaryPath()
|
D | DebugMap.cpp | 185 io.mapOptional("binary-path", DM.BinaryPath); in mapping() 196 io.mapOptional("binary-path", DM->BinaryPath); in mapping()
|
/external/llvm-project/llvm/tools/dsymutil/ |
D | MachODebugMapParser.cpp | 27 StringRef BinaryPath, ArrayRef<std::string> Archs, in MachODebugMapParser() argument 30 : BinaryPath(std::string(BinaryPath)), Archs(Archs.begin(), Archs.end()), in MachODebugMapParser() 45 std::string BinaryPath; member in __anon6f1264450111::MachODebugMapParser 70 StringRef BinaryPath); 105 StringRef BinaryPath); 191 StringRef BinaryPath) { in parseOneBinary() argument 195 std::make_unique<DebugMap>(MainBinary.getArchTriple(), BinaryPath, UUID); in parseOneBinary() 247 OS << "Symbol table for: '" << BinaryPath << "' (" << Arch.data() << ")\n"; in dumpSymTabHeader() 318 StringRef BinaryPath) { in dumpOneBinaryStab() argument 353 auto ObjectEntry = BinHolder.getObjectEntry(BinaryPath); in dumpStab() [all …]
|
D | DebugMap.h | 76 std::string BinaryPath; variable 91 DebugMap(const Triple &BinaryTriple, StringRef BinaryPath, 93 : BinaryTriple(BinaryTriple), BinaryPath(std::string(BinaryPath)), in BinaryTriple() 121 StringRef getBinaryPath() const { return BinaryPath; } in getBinaryPath()
|
D | DebugMap.cpp | 208 io.mapOptional("binary-path", DM.BinaryPath); in mapping() 219 io.mapOptional("binary-path", DM->BinaryPath); in mapping()
|
D | DwarfLinkerForBinary.cpp | 230 static Error emitRemarks(const LinkOptions &Options, StringRef BinaryPath, in emitRemarks() argument 247 sys::path::append(Path, sys::path::filename(BinaryPath)); in emitRemarks()
|
/external/llvm-project/llvm/tools/llvm-profgen/ |
D | PerfReader.cpp | 150 ProfiledBinary &PerfReader::loadBinary(const StringRef BinaryPath, in loadBinary() argument 155 StringRef BinaryName = llvm::sys::path::filename(BinaryPath); in loadBinary() 158 auto Ret = BinaryTable.insert({BinaryName, ProfiledBinary(BinaryPath)}); in loadBinary() 161 std::string ErrorMsg = "Binary name conflict: " + BinaryPath.str() + in loadBinary() 171 StringRef BinaryPath = Event.BinaryPath; in updateBinaryAddress() local 172 StringRef BinaryName = llvm::sys::path::filename(BinaryPath); in updateBinaryAddress() 433 Event.BinaryPath = Fields[BINARY_PATH]; in parseMMap2Event() 436 outs() << "Mmap: Binary " << Event.BinaryPath << " loaded at " in parseMMap2Event()
|
D | PerfReader.h | 298 StringRef BinaryPath; member 304 ProfiledBinary &loadBinary(const StringRef BinaryPath,
|
/external/llvm-project/clang/include/clang/Driver/ |
D | Driver.h | 300 static std::string GetResourcesPath(StringRef BinaryPath,
|
/external/swiftshader/docs/ |
D | dEQP.md | 80 * Just below, modify the BinaryPath from 'Debug' to 'Release' if you did a Release build at step 17 224 * Just below, remove 'Debug/' from the BinaryPath.
|
/external/llvm-project/clang/lib/Driver/ |
D | Driver.cpp | 104 std::string Driver::GetResourcesPath(StringRef BinaryPath, in GetResourcesPath() argument 111 std::string Dir = std::string(llvm::sys::path::parent_path(BinaryPath)); in GetResourcesPath()
|