-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into issue-561
- Loading branch information
Showing
232 changed files
with
1,881 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*.diff.txt | ||
*.out.txt | ||
*Layout | ||
default-tests.sh | ||
default-update-ref.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,5 @@ | ||
#!/bin/sh -e | ||
|
||
. ../../../../scripts/utils.sh | ||
export COMPILER_ROOT=../../../.. | ||
|
||
clean | ||
rm -f default-tests.sh default-update-ref.sh | ||
|
||
for file in `find . -name '*.ref.txt' -or -name '*.out.txt'` | ||
do | ||
rm $file | ||
done | ||
|
||
for dir in `find . -type d -name '*Layout.ref'` | ||
do | ||
rm -r $dir | ||
done | ||
sh ../scripts/clean.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ module M { | |
} | ||
|
||
topology Duplicate { | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ duplicate() | |
{ | ||
run_test '' duplicate && \ | ||
compare_out duplicate | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,5 @@ | ||
#!/bin/sh -e | ||
|
||
. ../../../../scripts/utils.sh | ||
export COMPILER_ROOT=../../../.. | ||
|
||
clean | ||
rm -f default-tests.sh default-update-ref.sh | ||
|
||
for file in `find . -name '*.ref.txt' -or -name '*.out.txt'` | ||
do | ||
rm $file | ||
done | ||
|
||
for dir in `find . -type d -name '*Layout*'` | ||
do | ||
rm -r $dir | ||
done | ||
sh ../scripts/clean.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ multiple_tops() | |
compare T1 C2 && \ | ||
compare T2 C3 && \ | ||
compare_out multiple_tops | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ multiple_tops() | |
update "" multiple_tops | ||
move_layout_files T1 C1 C2 | ||
move_layout_files T2 C3 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
compiler/tools/fpp-to-layout/test/top_basic/TLayout.ref/C.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
c1 | ||
pOut | ||
0 | ||
c2 | ||
pIn | ||
0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
module M { | ||
|
||
port P | ||
|
||
passive component C1 { | ||
|
||
output port pOut: P | ||
|
||
} | ||
|
||
passive component C2 { | ||
|
||
sync input port pIn: P | ||
|
||
} | ||
|
||
instance c1: C1 base id 0x100 | ||
instance c2: C2 base id 0x200 | ||
|
||
topology T { | ||
|
||
instance c1 | ||
instance c2 | ||
|
||
connections C { | ||
c1.pOut -> c2.pIn | ||
} | ||
|
||
} | ||
|
||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh -e | ||
|
||
export COMPILER_ROOT=../../../.. | ||
|
||
sh ../scripts/clean.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
export COMPILER_ROOT=../../../.. | ||
|
||
sh ../scripts/run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
basic() | ||
{ | ||
run_test "" basic && \ | ||
compare T C && \ | ||
compare_out basic | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
tests=" | ||
basic | ||
" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
export COMPILER_ROOT=../../../.. | ||
|
||
sh ../scripts/update-ref.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
basic() | ||
{ | ||
update "" basic | ||
move_layout_files T C | ||
} |
7 changes: 7 additions & 0 deletions
7
compiler/tools/fpp-to-layout/test/top_import/basic/SLayout.ref/C1.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
a1 | ||
pOut | ||
0 | ||
b | ||
pIn | ||
0 | ||
|
7 changes: 7 additions & 0 deletions
7
compiler/tools/fpp-to-layout/test/top_import/basic/TLayout.ref/C2.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
a2 | ||
pOut | ||
0 | ||
b | ||
pIn | ||
0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh -e | ||
|
||
export COMPILER_ROOT=../../../../.. | ||
|
||
sh ../../scripts/clean.sh |
45 changes: 45 additions & 0 deletions
45
compiler/tools/fpp-to-layout/test/top_import/basic/import_basic.fpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
module M { | ||
|
||
port P | ||
|
||
passive component A { | ||
|
||
output port pOut: P | ||
|
||
} | ||
|
||
passive component B { | ||
|
||
sync input port pIn: P | ||
|
||
} | ||
|
||
instance a1: A base id 0x100 | ||
instance a2: A base id 0x200 | ||
|
||
instance b: B base id 0x400 | ||
|
||
topology S { | ||
|
||
instance a1 | ||
instance b | ||
|
||
connections C1 { | ||
a1.pOut -> b.pIn | ||
} | ||
|
||
} | ||
|
||
topology T { | ||
|
||
import S | ||
|
||
instance a2 | ||
|
||
connections C2 { | ||
a2.pOut -> b.pIn | ||
} | ||
|
||
} | ||
|
||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
export COMPILER_ROOT=../../../../.. | ||
|
||
sh ../../scripts/run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import_basic() | ||
{ | ||
run_test "" import_basic && \ | ||
compare S C1 && \ | ||
compare T C2 && \ | ||
compare_out import_basic | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
tests=" | ||
import_basic | ||
" |
5 changes: 5 additions & 0 deletions
5
compiler/tools/fpp-to-layout/test/top_import/basic/update-ref
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
export COMPILER_ROOT=../../../../../ | ||
|
||
sh ../../scripts/update-ref.sh |
6 changes: 6 additions & 0 deletions
6
compiler/tools/fpp-to-layout/test/top_import/basic/update-ref.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import_basic() | ||
{ | ||
update "" import_basic | ||
move_layout_files S C1 | ||
move_layout_files T C2 | ||
} |
7 changes: 7 additions & 0 deletions
7
compiler/tools/fpp-to-layout/test/top_import/merge/SLayout.ref/C.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
a1 | ||
pOut | ||
0 | ||
b | ||
pIn | ||
0 | ||
|
21 changes: 21 additions & 0 deletions
21
compiler/tools/fpp-to-layout/test/top_import/merge/TLayout.ref/C.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
a1 | ||
pOut | ||
0 | ||
b | ||
pIn | ||
0 | ||
|
||
a1 | ||
pOut | ||
1 | ||
b | ||
pIn | ||
0 | ||
|
||
a2 | ||
pOut | ||
0 | ||
b | ||
pIn | ||
0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh -e | ||
|
||
export COMPILER_ROOT=../../../../.. | ||
|
||
sh ../../scripts/clean.sh |
Oops, something went wrong.