llvm-project/llvm/test/tools/llvm-profdata/sample-profile-json.test
Ellis Hoag ea607d033a [llvm-profdata] Rename show flag to --show-format
In https://reviews.llvm.org/D135127 we created the show flag
`--output-format` which was confusing because it behaved differently
than the same flag in the merge command. So, rename the flag to
`--show-format`. This also allows us to add the `text` option to mean
"normal text output" rather than "text-encoded profiles" like it does
for the merge command.

Reviewed By: wenlei

Differential Revision: https://reviews.llvm.org/D135467
2022-10-07 11:35:07 -07:00

106 lines
2.9 KiB
Plaintext

RUN: llvm-profdata show --sample --json %p/Inputs/sample-profile.proftext | FileCheck %s --check-prefix=JSON
RUN: llvm-profdata show --sample --show-format=json %p/Inputs/sample-profile.proftext | FileCheck %s --check-prefix=JSON
JSON: [
JSON-NEXT: {
JSON-NEXT: "name": "main",
JSON-NEXT: "total": 184019,
JSON-NEXT: "head": 0,
JSON-NEXT: "body": [
JSON-NEXT: {
JSON-NEXT: "line": 4,
JSON-NEXT: "samples": 534
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "line": 4,
JSON-NEXT: "discriminator": 2,
JSON-NEXT: "samples": 534
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "line": 5,
JSON-NEXT: "samples": 1075
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "line": 5,
JSON-NEXT: "discriminator": 1,
JSON-NEXT: "samples": 1075
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "line": 6,
JSON-NEXT: "samples": 2080
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "line": 7,
JSON-NEXT: "samples": 534
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "line": 9,
JSON-NEXT: "samples": 2064,
JSON-NEXT: "calls": [
JSON-NEXT: {
JSON-NEXT: "function": "_Z3bari",
JSON-NEXT: "samples": 1471
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "function": "_Z3fooi",
JSON-NEXT: "samples": 631
JSON-NEXT: }
JSON-NEXT: ]
JSON-NEXT: }
JSON-NEXT: ],
JSON-NEXT: "callsites": [
JSON-NEXT: {
JSON-NEXT: "line": 10,
JSON-NEXT: "samples": [
JSON-NEXT: {
JSON-NEXT: "name": "inline1",
JSON-NEXT: "total": 1000,
JSON-NEXT: "body": [
JSON-NEXT: {
JSON-NEXT: "line": 1,
JSON-NEXT: "samples": 1000
JSON-NEXT: }
JSON-NEXT: ]
JSON-NEXT: }
JSON-NEXT: ]
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "line": 10,
JSON-NEXT: "samples": [
JSON-NEXT: {
JSON-NEXT: "name": "inline2",
JSON-NEXT: "total": 2000,
JSON-NEXT: "body": [
JSON-NEXT: {
JSON-NEXT: "line": 1,
JSON-NEXT: "samples": 2000
JSON-NEXT: }
JSON-NEXT: ]
JSON-NEXT: }
JSON-NEXT: ]
JSON-NEXT: }
JSON-NEXT: ]
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "name": "_Z3bari",
JSON-NEXT: "total": 20301,
JSON-NEXT: "head": 1437,
JSON-NEXT: "body": [
JSON-NEXT: {
JSON-NEXT: "line": 1,
JSON-NEXT: "samples": 1437
JSON-NEXT: }
JSON-NEXT: ]
JSON-NEXT: },
JSON-NEXT: {
JSON-NEXT: "name": "_Z3fooi",
JSON-NEXT: "total": 7711,
JSON-NEXT: "head": 610,
JSON-NEXT: "body": [
JSON-NEXT: {
JSON-NEXT: "line": 1,
JSON-NEXT: "samples": 610
JSON-NEXT: }
JSON-NEXT: ]
JSON-NEXT: }
JSON-NEXT: ]