forked from Github_Repos/cvw
Added SPDX header to scripts.
This commit is contained in:
parent
19966033f1
commit
1b6d5cbbc9
@ -1,8 +1,30 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# james.stine@okstate.edu 4 Jan 2022
|
###########################################
|
||||||
# Script to run elf2hex for memfile for
|
## Written: james.stine@okstate.edu
|
||||||
# Imperas and riscv-arch-test benchmarks
|
## Created: 4 Jan 2022
|
||||||
|
## Modified:
|
||||||
|
##
|
||||||
|
## Purpose: Script to run elf2hex for memfile for
|
||||||
|
## Imperas and riscv-arch-test benchmarks
|
||||||
|
##
|
||||||
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
|
##
|
||||||
|
## Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
||||||
|
##
|
||||||
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
|
##
|
||||||
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
|
## may obtain a copy of the License at
|
||||||
|
##
|
||||||
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
|
##
|
||||||
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
|
## License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
||||||
|
## either express or implied. See the License for the specific language governing permissions
|
||||||
|
## and limitations under the License.
|
||||||
|
################################################################################################
|
||||||
|
|
||||||
for file in work/rv64i_m/*/*.elf ; do
|
for file in work/rv64i_m/*/*.elf ; do
|
||||||
memfile=${file%.elf}.elf.memfile
|
memfile=${file%.elf}.elf.memfile
|
||||||
|
@ -1,9 +1,35 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/perl -w
|
||||||
|
|
||||||
# exe2memfile.pl
|
###########################################
|
||||||
# David_Harris@hmc.edu 26 November 2020
|
## exe2memfile.pl
|
||||||
# Converts an executable file to a series of 32-bit hex instructions
|
##
|
||||||
# to read into a Verilog simulation with $readmemh
|
## Written: David_Harris@hmc.edu
|
||||||
|
## Created: 26 November 2020
|
||||||
|
## Modified:
|
||||||
|
##
|
||||||
|
## Purpose: Converts an executable file to a series of 32-bit hex instructions
|
||||||
|
## to read into a Verilog simulation with $readmemh
|
||||||
|
##
|
||||||
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
|
##
|
||||||
|
## Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
||||||
|
##
|
||||||
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
|
##
|
||||||
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
|
## may obtain a copy of the License at
|
||||||
|
##
|
||||||
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
|
##
|
||||||
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
|
## License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
||||||
|
## either express or implied. See the License for the specific language governing permissions
|
||||||
|
## and limitations under the License.
|
||||||
|
################################################################################################
|
||||||
|
|
||||||
|
#
|
||||||
|
#
|
||||||
|
|
||||||
use File::stat;
|
use File::stat;
|
||||||
use IO::Handle;
|
use IO::Handle;
|
||||||
@ -167,4 +193,4 @@ sub fixadr {
|
|||||||
my $adr = shift;
|
my $adr = shift;
|
||||||
if ($adr =~ s/^8/0/) { return hex($adr); }
|
if ($adr =~ s/^8/0/) { return hex($adr); }
|
||||||
else { die("address $adr lacks leading 8\n"); }
|
else { die("address $adr lacks leading 8\n"); }
|
||||||
}
|
}
|
||||||
|
@ -1,34 +1,33 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
######################
|
######################
|
||||||
# extractFunctionRadix.sh
|
## extractFunctionRadix.sh
|
||||||
#
|
##
|
||||||
# Written: Ross Thompson
|
## Written: Ross Thompson
|
||||||
# email: ross1728@gmail.com
|
## email: ross1728@gmail.com
|
||||||
# Created: March 1, 2021
|
## Created: March 1, 2021
|
||||||
# Modified: March 10, 2021
|
## Modified: March 10, 2021
|
||||||
#
|
##
|
||||||
# Purpose: Processes all compiled object files into 2 types of files which assist in debuging applications.
|
## Purpose: Processes all compiled object files into 2 types of files which assist in debuging applications.
|
||||||
# File 1: .addr: A sorted list of function starting addresses.
|
## File 1: .addr: A sorted list of function starting addresses.
|
||||||
# When a the PCE is greater than or equal to the function's starting address, the label will be associated with this address.
|
## When a the PCE is greater than or equal to the function's starting address, the label will be associated with this address.
|
||||||
# File 2: .lab: A sorted list of funciton labels. The names of functions. Modelsim will display these names rather than the function address.
|
## File 2: .lab: A sorted list of funciton labels. The names of functions. Modelsim will display these names rather than the function address.
|
||||||
#
|
##
|
||||||
# A component of the Wally configurable RISC-V project.
|
## Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
||||||
#
|
##
|
||||||
# Copyright (C) 2021 Harvey Mudd College & Oklahoma State University
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
#
|
##
|
||||||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
# files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
# modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software
|
## may obtain a copy of the License at
|
||||||
# is furnished to do so, subject to the following conditions:
|
##
|
||||||
#
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
##
|
||||||
#
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
## License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
||||||
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
## either express or implied. See the License for the specific language governing permissions
|
||||||
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
|
## and limitations under the License.
|
||||||
# OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
################################################################################################
|
||||||
######################
|
|
||||||
|
|
||||||
|
|
||||||
function processProgram {
|
function processProgram {
|
||||||
|
@ -1,5 +1,30 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
###########################################
|
||||||
|
## Written: Ross Thompson ross1728@gmail.com
|
||||||
|
## Created: 4 Jan 2022
|
||||||
|
## Modified:
|
||||||
|
##
|
||||||
|
## Purpose: Parses the performance counters from a modelsim trace.
|
||||||
|
##
|
||||||
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
|
##
|
||||||
|
## Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
||||||
|
##
|
||||||
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
|
##
|
||||||
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
|
## may obtain a copy of the License at
|
||||||
|
##
|
||||||
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
|
##
|
||||||
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
|
## License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
||||||
|
## either express or implied. See the License for the specific language governing permissions
|
||||||
|
## and limitations under the License.
|
||||||
|
################################################################################################
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
|
@ -1,8 +1,33 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# testcount.pl
|
|
||||||
# David_Harris@hmc.edu 25 December 2022
|
###########################################
|
||||||
# Read the riscv-test-suite directories from riscv-arch-test
|
## testcount.pl
|
||||||
# and count how many tests are in each
|
##
|
||||||
|
## Written: David_Harris@hmc.edu
|
||||||
|
## Created: 25 December 2022
|
||||||
|
## Modified: Read the riscv-test-suite directories from riscv-arch-test
|
||||||
|
## and count how many tests are in each
|
||||||
|
##
|
||||||
|
## Purpose: Read the riscv-test-suite directories from riscv-arch-test
|
||||||
|
## and count how many tests are in each
|
||||||
|
##
|
||||||
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
|
##
|
||||||
|
## Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
||||||
|
##
|
||||||
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
|
##
|
||||||
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
|
## may obtain a copy of the License at
|
||||||
|
##
|
||||||
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
|
##
|
||||||
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
|
## License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
||||||
|
## either express or implied. See the License for the specific language governing permissions
|
||||||
|
## and limitations under the License.
|
||||||
|
################################################################################################
|
||||||
|
|
||||||
for dir in `ls ${WALLY}/addins/riscv-arch-test/riscv-test-suite/rv*/*`
|
for dir in `ls ${WALLY}/addins/riscv-arch-test/riscv-test-suite/rv*/*`
|
||||||
do
|
do
|
||||||
|
@ -1,8 +1,33 @@
|
|||||||
#!/bin/perl -W
|
#!/bin/perl -W
|
||||||
# testlist.pl
|
|
||||||
# David_Harris@hmc.edu 25 December 2021
|
###########################################
|
||||||
# Read the work directories from riscv-arch-test or imperas-riscv-tests
|
## testlist.pl
|
||||||
# and generate a list of tests and signature addresses for tests.vh
|
##
|
||||||
|
## Written: David_Harris@hmc.edu
|
||||||
|
## Created: 25 December 2021
|
||||||
|
## Modified:
|
||||||
|
##
|
||||||
|
## Purpose: Read the work directories from riscv-arch-test or imperas-riscv-tests
|
||||||
|
## and generate a list of tests and signature addresses for tests.vh
|
||||||
|
##
|
||||||
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
|
##
|
||||||
|
## Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
||||||
|
##
|
||||||
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
|
##
|
||||||
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
|
## may obtain a copy of the License at
|
||||||
|
##
|
||||||
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
|
##
|
||||||
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
|
## License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
||||||
|
## either express or implied. See the License for the specific language governing permissions
|
||||||
|
## and limitations under the License.
|
||||||
|
################################################################################################
|
||||||
|
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
@ -1,9 +1,32 @@
|
|||||||
#!/usr/bin/perl -w
|
#!/usr/bin/perl -w
|
||||||
|
|
||||||
# vclean.pl
|
###########################################
|
||||||
# David_Harris@hmc.edu 7 December 2023
|
## vclean.pl
|
||||||
# Identifies unused signals in Verilog files
|
##
|
||||||
# verilator should do this, but it also reports partially used signals
|
## Written: David_Harris@hmc.edu
|
||||||
|
## Created: 7 December 2023
|
||||||
|
## Modified:
|
||||||
|
##
|
||||||
|
## Purpose: Identifies unused signals in Verilog files
|
||||||
|
## verilator should do this, but it also reports partially used signals
|
||||||
|
##
|
||||||
|
## A component of the CORE-V-WALLY configurable RISC-V project.
|
||||||
|
##
|
||||||
|
## Copyright (C) 2021-23 Harvey Mudd College & Oklahoma State University
|
||||||
|
##
|
||||||
|
## SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
|
||||||
|
##
|
||||||
|
## Licensed under the Solderpad Hardware License v 2.1 (the “License”); you may not use this file
|
||||||
|
## except in compliance with the License, or, at your option, the Apache License version 2.0. You
|
||||||
|
## may obtain a copy of the License at
|
||||||
|
##
|
||||||
|
## https:##solderpad.org/licenses/SHL-2.1/
|
||||||
|
##
|
||||||
|
## Unless required by applicable law or agreed to in writing, any work distributed under the
|
||||||
|
## License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
||||||
|
## either express or implied. See the License for the specific language governing permissions
|
||||||
|
## and limitations under the License.
|
||||||
|
################################################################################################
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
@ -43,4 +66,4 @@ sub clean {
|
|||||||
printf("$sig not used in $fname\n");
|
printf("$sig not used in $fname\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
###########################################
|
###########################################
|
||||||
## cache
|
## Tool chain install script.
|
||||||
##
|
##
|
||||||
## Written: Ross Thompson ross1728@gmail.com
|
## Written: Ross Thompson ross1728@gmail.com
|
||||||
## Created: 18 January 2023
|
## Created: 18 January 2023
|
||||||
|
Loading…
Reference in New Issue
Block a user