| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | TraceGDBRemotePackets.h | 36 llvm::json::Value toJSON(const TraceSupportedResponse &packet); 57 llvm::json::Value toJSON(const TraceStartRequest &packet); 81 llvm::json::Value toJSON(const TraceStopRequest &packet); 94 llvm::json::Value toJSON(const TraceGetStateRequest &packet); 106 llvm::json::Value toJSON(const TraceBinaryData &packet); 117 llvm::json::Value toJSON(const TraceThreadState &packet); 127 llvm::json::Value toJSON(const TraceGetStateResponse &packet); 149 llvm::json::Value toJSON(const lldb_private::TraceGetBinaryDataRequest &packet);
|
| H A D | TraceIntelPTGDBRemotePackets.h | 40 llvm::json::Value toJSON(const TraceIntelPTStartRequest &packet);
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
| H A D | ASTSrcLocProcessor.cpp | 52 llvm::json::Object toJSON(llvm::StringMap<std::vector<StringRef>> const &Obj) { in toJSON() function 53 using llvm::json::toJSON; in toJSON() 62 llvm::json::Object toJSON(llvm::StringMap<std::string> const &Obj) { in toJSON() function 63 using llvm::json::toJSON; in toJSON() 72 llvm::json::Object toJSON(ClassData const &Obj) { in toJSON() function 92 llvm::json::Object toJSON(llvm::StringMap<ClassData> const &Obj) { in toJSON() function 93 using llvm::json::toJSON; in toJSON() 97 JsonObj[Item.first()] = ::toJSON(Item.second); in toJSON() 106 using llvm::json::toJSON; in WriteJSON() 136 WriteJSON(JsonPath, ::toJSON(ClassInheritance), ::toJSON(ClassesInClade), in generate() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | TraceGDBRemotePackets.cpp | 24 json::Value toJSON(const TraceSupportedResponse &packet) { in toJSON() function 39 json::Value toJSON(const TraceStartRequest &packet) { in toJSON() function 61 json::Value toJSON(const TraceStopRequest &packet) { in toJSON() function 74 json::Value toJSON(const TraceGetStateRequest &packet) { in toJSON() function 83 json::Value toJSON(const TraceBinaryData &packet) { in toJSON() function 93 json::Value toJSON(const TraceThreadState &packet) { in toJSON() function 105 json::Value toJSON(const TraceGetStateResponse &packet) { in toJSON() function 113 json::Value toJSON(const TraceGetBinaryDataRequest &packet) { in toJSON() function
|
| H A D | TraceIntelPTGDBRemotePackets.cpp | 36 json::Value toJSON(const TraceIntelPTStartRequest &packet) { in toJSON() function 37 json::Value base = toJSON((const TraceStartRequest &)packet); in toJSON()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| H A D | InstructionInfoView.h | 81 json::Value toJSON() const override; 82 json::Object toJSON(const InstructionInfoViewData &IIVD) const;
|
| H A D | InstructionInfoView.cpp | 125 InstructionInfoView::toJSON(const InstructionInfoViewData &IIVD) const { in toJSON() function in llvm::mca::InstructionInfoView 135 json::Value InstructionInfoView::toJSON() const { in toJSON() function in llvm::mca::InstructionInfoView 146 json::Object JO = toJSON(IIVDEntry); in toJSON()
|
| H A D | View.h | 33 virtual json::Value toJSON() const { return "not implemented"; } in toJSON() function
|
| H A D | InstructionView.cpp | 33 json::Value InstructionView::toJSON() const { in toJSON() function in llvm::mca::InstructionView
|
| H A D | ResourcePressureView.h | 98 json::Value toJSON() const override;
|
| H A D | DispatchStatistics.h | 82 json::Value toJSON() const override;
|
| H A D | SummaryView.h | 91 json::Value toJSON() const override;
|
| H A D | InstructionView.h | 53 json::Value toJSON() const override;
|
| H A D | TimelineView.h | 183 json::Value toJSON() const override;
|
| H A D | DispatchStatistics.cpp | 86 json::Value DispatchStatistics::toJSON() const { in toJSON() function in llvm::mca::DispatchStatistics
|
| H A D | SummaryView.cpp | 99 json::Value SummaryView::toJSON() const { in toJSON() function in llvm::mca::SummaryView
|
| H A D | ResourcePressureView.cpp | 175 json::Value ResourcePressureView::toJSON() const { in toJSON() function in llvm::mca::ResourcePressureView
|
| H A D | TimelineView.cpp | 312 json::Value TimelineView::toJSON() const { in toJSON() function in llvm::mca::TimelineView
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
| H A D | DIPrinter.cpp | 280 static json::Object toJSON(const Request &Request, StringRef ErrorMsg = "") { in toJSON() function 323 json::Object Json = toJSON(Request); in print() 336 json::Object Json = toJSON(Request); in print() 359 json::Object Json = toJSON(Request); in print() 378 json::Object Json = toJSON(Request, ErrorInfo.message()); in printError()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
| H A D | TraceIntelPTSessionFileParser.h | 82 toJSON(const lldb_private::trace_intel_pt::TraceIntelPTSessionFileParser::
|
| H A D | TraceIntelPT.cpp | 280 return Trace::Start(toJSON(request)); in Start() 317 return Trace::Start(toJSON(request)); in Start()
|
| H A D | TraceIntelPTSessionFileParser.cpp | 98 Value toJSON( in toJSON() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/ |
| H A D | PipelinePrinter.cpp | 43 JO.try_emplace(V->getNameAsString().str(), V->toJSON()); in getJSONReportRegion()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | JSON.h | 86 template <typename T> Value toJSON(const llvm::Optional<T> &Opt); 361 Value, decltype(toJSON(*(const T *)nullptr))>::value>, 363 Value(const T &V) : Value(toJSON(V)) {} in Value() 734 template <typename T> Value toJSON(const llvm::Optional<T> &Opt) { in toJSON() function
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationClient.cpp | 3468 os << toJSON(request); in SendTraceStop() 3538 os << toJSON(TraceGetStateRequest{type.str()}); in SendTraceGetState() 3572 os << toJSON(request); in SendTraceGetBinaryData()
|