Skip to content

Commit

Permalink
Add testdata for a function with a simple loop
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 696656413
  • Loading branch information
dhoekwater authored and copybara-github committed Nov 15, 2024
1 parent 8723536 commit e91629f
Show file tree
Hide file tree
Showing 2 changed files with 95 additions and 0 deletions.
1 change: 1 addition & 0 deletions propeller/testdata/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ exports_files([
"sample.c",
"sample_section.bin",
"simple_conditionals_join.protobuf",
"simple_loop.protobuf",
"test_comdat.h",
"test_comdat_1.cc",
"test_comdat_2.cc",
Expand Down
94 changes: 94 additions & 0 deletions propeller/testdata/simple_loop.protobuf
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
## CFG Proto for a function consisting of a conditional and a loop on one side
## of the conditional.
##
## foo
## |
## |5
## V
## a.BB.foo <--+
## / \ |
## 0/ \95 |90
## / \ |
## v \ |
## aa.BB.foo v |
## \ aaa.BB.foo
## \ /
## \ /
## 0\ /10
## \ /
## v v
## raaa.BB.foo

cfg {
name: "foo"
name: "foo.alias"
function_index: 0
node {
bb_id: 0
size: 10
out_edges {
sink: {
function_index: 0
bb_index: 1
}
weight: 5
kind: BRANCH_OR_FALLTHROUGH
}
}
node {
bb_id: 1
size: 6
out_edges {
sink: {
function_index: 0
bb_index: 2
}
weight: 0
kind: BRANCH_OR_FALLTHROUGH
}
out_edges {
sink: {
function_index: 0
bb_index: 3
}
weight: 95
kind: BRANCH_OR_FALLTHROUGH
}
}
node {
bb_id: 2
size: 4
out_edges {
sink: {
function_index: 0
bb_index: 4
}
weight: 0
kind: BRANCH_OR_FALLTHROUGH
}
}
node {
bb_id: 3
size: 4
out_edges {
sink: {
function_index: 0
bb_index: 1
}
weight: 90
kind: BRANCH_OR_FALLTHROUGH
}
out_edges {
sink: {
function_index: 0
bb_index: 4
}
weight: 10
kind: BRANCH_OR_FALLTHROUGH
}
}
node {
bb_id: 4
size: 6
}
}

0 comments on commit e91629f

Please sign in to comment.