Lines Matching refs:json_of
959 TurboJsonFile json_of(info, std::ios_base::app); in TraceScheduleAndVerify() local
960 json_of << "{\"name\":\"" << phase_name << "\",\"type\":\"schedule\"" in TraceScheduleAndVerify()
966 json_of << AsEscapedUC16ForJSON(c); in TraceScheduleAndVerify()
968 json_of << "\"},\n"; in TraceScheduleAndVerify()
1016 TurboJsonFile json_of(info, std::ios_base::trunc); in CreatePipelineStatistics() local
1017 json_of << "{\"function\" : "; in CreatePipelineStatistics()
1018 JsonPrintFunctionSource(json_of, -1, info->GetDebugName(), script, isolate, in CreatePipelineStatistics()
1020 json_of << ",\n\"phases\":["; in CreatePipelineStatistics()
1042 TurboJsonFile json_of(info, std::ios_base::trunc); in CreatePipelineStatistics() local
1044 json_of << "{\"function\":\"" << function_name.get() << "\", \"source\":\""; in CreatePipelineStatistics()
1051 json_of << AsEscapedUC16ForJSON(c); in CreatePipelineStatistics()
1053 json_of << "\",\n\"sourceLineToBytecodePosition\" : ["; in CreatePipelineStatistics()
1057 json_of << ", "; in CreatePipelineStatistics()
1059 json_of << val; in CreatePipelineStatistics()
1062 json_of << "],\n\"phases\":["; in CreatePipelineStatistics()
2210 TurboJsonFile json_of(data->info(), std::ios_base::app); in DECL_PIPELINE_PHASE_CONSTANTS() local
2211 json_of << "{\"name\":\"" << phase_name() in DECL_PIPELINE_PHASE_CONSTANTS()
2439 TurboJsonFile json_of(info, std::ios_base::app); in DECL_PIPELINE_PHASE_CONSTANTS() local
2440 json_of << "{\"name\":\"" << phase << "\",\"type\":\"graph\",\"data\":" in DECL_PIPELINE_PHASE_CONSTANTS()
2582 TurboJsonFile json_of(&info_, std::ios_base::trunc); in ExecuteJobImpl() local
2583 json_of << "{\"function\":\"" << info_.GetDebugName().get() in ExecuteJobImpl()
2924 TurboJsonFile json_of(&info, std::ios_base::trunc); in GenerateCodeForCodeStub() local
2925 json_of << "{\"function\" : "; in GenerateCodeForCodeStub()
2926 JsonPrintFunctionSource(json_of, -1, info.GetDebugName(), in GenerateCodeForCodeStub()
2929 json_of << ",\n\"phases\":["; in GenerateCodeForCodeStub()
3051 TurboJsonFile json_of(&info, std::ios_base::trunc); in GenerateCodeForWasmNativeStub() local
3052 json_of << "{\"function\":\"" << info.GetDebugName().get() in GenerateCodeForWasmNativeStub()
3086 TurboJsonFile json_of(&info, std::ios_base::app); in GenerateCodeForWasmNativeStub() local
3087 json_of << "{\"name\":\"disassembly\",\"type\":\"disassembly\"" in GenerateCodeForWasmNativeStub()
3097 json_of << AsEscapedUC16ForJSON(c); in GenerateCodeForWasmNativeStub()
3100 json_of << "\"}\n]"; in GenerateCodeForWasmNativeStub()
3101 json_of << "\n}"; in GenerateCodeForWasmNativeStub()
3204 TurboJsonFile json_of(data.info(), std::ios_base::app); in GenerateCodeForWasmFunction() local
3205 json_of << "{\"name\":\"disassembly\",\"type\":\"disassembly\"" in GenerateCodeForWasmFunction()
3215 json_of << AsEscapedUC16ForJSON(c); in GenerateCodeForWasmFunction()
3218 json_of << "\"}\n]"; in GenerateCodeForWasmFunction()
3219 json_of << "\n}"; in GenerateCodeForWasmFunction()
3320 TurboJsonFile json_of(info, std::ios_base::trunc); in GenerateCodeForTesting() local
3321 json_of << "{\"function\":\"" << info->GetDebugName().get() in GenerateCodeForTesting()
3360 TurboJsonFile json_of(&info, std::ios_base::trunc); in AllocateRegistersForTesting() local
3361 json_of << "{\"function\":\"" << info.GetDebugName().get() in AllocateRegistersForTesting()
3610 TurboJsonFile json_of(data->info(), std::ios_base::app); in AssembleCode() local
3611 json_of << "{\"name\":\"code generation\"" in AssembleCode()
3616 json_of << "},\n"; in AssembleCode()
3640 TurboJsonFile json_of(info(), std::ios_base::app); in FinalizeCode() local
3642 json_of << "{\"name\":\"disassembly\",\"type\":\"disassembly\"" in FinalizeCode()
3650 json_of << AsEscapedUC16ForJSON(c); in FinalizeCode()
3653 json_of << "\"}\n],\n"; in FinalizeCode()
3654 json_of << "\"nodePositions\":"; in FinalizeCode()
3655 json_of << data->source_position_output() << ",\n"; in FinalizeCode()
3656 JsonPrintAllSourceWithPositions(json_of, data->info(), isolate()); in FinalizeCode()
3657 json_of << "\n}"; in FinalizeCode()
3701 TurboJsonFile json_of(info, std::ios_base::app); in TraceSequence() local
3702 json_of << "{\"name\":\"" << phase_name << "\",\"type\":\"sequence\"" in TraceSequence()