Home
last modified time | relevance | path

Searched refs:ToolName (Results 1 – 11 of 11) sorted by relevance

/external/llvm/lib/Analysis/
DProfileInfoLoader.cpp41 static void ReadProfilingBlock(const char *ToolName, FILE *F, in ReadProfilingBlock() argument
47 errs() << ToolName << ": data packet truncated!\n"; in ReadProfilingBlock()
58 errs() << ToolName << ": data packet truncated!\n"; in ReadProfilingBlock()
85 ProfileInfoLoader::ProfileInfoLoader(const char *ToolName, in ProfileInfoLoader() argument
92 errs() << ToolName << ": Error opening '" << Filename << "': "; in ProfileInfoLoader()
110 errs() << ToolName << ": arguments packet truncated!\n"; in ProfileInfoLoader()
121 errs() << ToolName << ": arguments packet truncated!\n"; in ProfileInfoLoader()
130 ReadProfilingBlock(ToolName, F, ShouldByteSwap, FunctionCounts); in ProfileInfoLoader()
134 ReadProfilingBlock(ToolName, F, ShouldByteSwap, BlockCounts); in ProfileInfoLoader()
138 ReadProfilingBlock(ToolName, F, ShouldByteSwap, EdgeCounts); in ProfileInfoLoader()
[all …]
/external/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp71 StringRef ToolName; variable
341 ToolName = argv[0]; in main()
350 errs() << ToolName << ": Timeout value too large, must be less than: " in main()
361 errs() << ToolName << ": Failed to find program: '" << CommandLine in main()
367 errs() << ToolName << ": Found Program: " << ProgramToRun << '\n'; in main()
377 errs() << ToolName << ": Program Image Path: " << ProgramToRun << '\n' in main()
378 << ToolName << ": Command Line: " << CommandLine << '\n'; in main()
402 errs() << ToolName << ": Failed to run program: '" << ProgramToRun in main()
418 errs() << ToolName << ": Debugging...\n"; in main()
433 errs() << ToolName << ": Failed to get process times: " in main()
[all …]
/external/llvm/lib/CompilerDriver/
DCompilationGraph.cpp96 const std::string& ToolName = Edg->ToolName(); in AddEdge() local
99 if ((*B)->ToolName() == ToolName) { in AddEdge()
111 Node* CompilationGraph::getNode(const std::string& ToolName) { in getNode() argument
112 nodes_map_type::iterator I = NodesMap.find(ToolName); in getNode()
114 PrintError("Node " + ToolName + " is not in the graph"); in getNode()
120 const Node* CompilationGraph::getNode(const std::string& ToolName) const { in getNode()
121 nodes_map_type::const_iterator I = NodesMap.find(ToolName); in getNode()
123 PrintError("Node " + ToolName + " is not in the graph!"); in getNode()
147 Node* B = getNode(Edg->ToolName()); in insertEdge()
205 CurNode = getNode(Edg->ToolName()); in PassThroughGraph()
[all …]
/external/llvm/tools/llvm-nm/
Dllvm-nm.cpp109 std::string ToolName; variable
150 outs() << ToolName << ": error reading file: " << ec.message() << ".\n"; in error()
304 errs() << ToolName << ": '" << Filename << "': " << "No such file\n"; in DumpSymbolNamesFromFile()
318 errs() << ToolName << ": " << Filename << ": " << ErrorMessage << "\n"; in DumpSymbolNamesFromFile()
325 errs() << ToolName << ": " << Filename << ": " << ErrorMessage << "\n"; in DumpSymbolNamesFromFile()
328 errs() << ToolName << ": " << Filename << ": " << ErrorMessage << "\n"; in DumpSymbolNamesFromFile()
336 errs() << ToolName << ": " << Filename << ": " << ec.message() << ".\n"; in DumpSymbolNamesFromFile()
342 errs() << ToolName << ": " << Filename << ": " in DumpSymbolNamesFromFile()
356 ToolName = argv[0]; in main()
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp63 StringRef ToolName; variable
68 outs() << ToolName << ": error reading file: " << ec.message() << ".\n"; in error()
94 errs() << ToolName << ": error: unable to get target for '" << TripleName in GetTarget()
148 errs() << ToolName << ": " << Filename << ": " << ec.message() << "\n"; in DisassembleInput()
253 errs() << ToolName << ": warning: invalid instruction encoding\n"; in DisassembleInput()
281 ToolName = argv[0]; in main()
/external/llvm/include/llvm/CompilerDriver/
DCompilationGraph.h48 const std::string& ToolName() const { return ToolName_; } in ToolName() function
150 Node* getNode(const std::string& ToolName);
151 const Node* getNode(const std::string& ToolName) const;
278 return OwningGraph->getNode((*EdgeIter)->ToolName());
/external/llvm/tools/bugpoint/
DExecutionDriver.cpp315 errs() << ToolName << ": Error making unique filename: " << ErrMsg in compileProgram()
320 errs() << ToolName << ": Error emitting bitcode to file '" in compileProgram()
351 errs() << ToolName << ": Error making unique filename: " in executeProgram()
358 errs() << ToolName << ": Error emitting bitcode to file '" in executeProgram()
375 errs() << ToolName << ": Error making unique filename: " in executeProgram()
DBugDriver.cpp72 : Context(ctxt), ToolName(toolname), ReferenceOutputFile(OutputFile), in BugDriver()
131 errs() << ToolName << ": error linking in '" << Filenames[i] << "': " in addSources()
DBugDriver.h48 const char *ToolName; // argv[0] of bugpoint variable
70 const char *getToolName() const { return ToolName; } in getToolName()
/external/llvm/include/llvm/Analysis/
DProfileInfoLoader.h42 ProfileInfoLoader(const char *ToolName, const std::string &Filename,
/external/llvm/utils/TableGen/
DLLVMCConfigurationEmitter.cpp1786 void EmitCmdLineVecFill(const Init* CmdLine, const std::string& ToolName, in EmitCmdLineVecFill() argument
1793 throw "Tool '" + ToolName + "' has empty command line!"; in EmitCmdLineVecFill()