/////////////////////////////////////////// // datapath.sv // // Written: Ross Thompson // email: ross1728@gmail.com // Created: November 9, 2019 // Modified: March 04, 2021 // // Purpose: Finds the current function or global assembly label based on PCE. // // A component of the Wally configurable RISC-V project. // // Copyright (C) 2021 Harvey Mudd College & Oklahoma State University // // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation // files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, // modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software // is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS // BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT // OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /////////////////////////////////////////// `include "wally-config.vh" module function_radix(reset, ProgramName); parameter FunctionRadixFile, ProgramIndexFile; input logic reset; /* -----\/----- EXCLUDED -----\/----- input string FunctionRadixFile; input string ProgramIndexFile; -----/\----- EXCLUDED -----/\----- */ input string ProgramName; localparam TestSize = 16; localparam TotalSize = `XLEN+TestSize; logic [TotalSize-1:0] memory_bank []; logic [TotalSize-1:0] index; integer ProgramBank [string]; logic [`XLEN-1:0] pc; logic [TestSize-1:0] TestNumber; logic [TotalSize-1:0] TestAddr; // *** I should look into the system verilog objects instead of signal spy. initial begin $init_signal_spy("/testbench/dut/hart/PCE", "/testbench/functionRadix/function_radix/pc"); end assign TestAddr = {TestNumber, pc}; task automatic bin_search_min; input logic [TotalSize-1:0] pc; input logic [TotalSize-1:0] length; ref logic [TotalSize-1:0] array []; output logic [TotalSize-1:0] minval; logic [TotalSize-1:0] left, right; logic [TotalSize-1:0] mid; begin left = 0; right = length; while (left <= right) begin mid = left + ((right - left) / 2); if (array[mid] == pc) begin minval = array[mid]; return; end if (array[mid] < pc) begin left = mid + 1; end else if( array[mid] > pc) begin right = mid -1; end else begin $display("Critical Error in function radix. PC, %x not found.", pc); return; //$stop(); end end // while (left <= right) // if the element pc is now found, right and left will be equal at this point. // we need to check if pc is less than the array at left or greather. // if it is less than pc, then we select left as the index. // if it is greather we want 1 less than left. if (array[left] < pc) begin minval = array[left]; return; end else begin minval = array[left-1]; return; end end endtask // bin_search_min integer fp, ProgramFP; integer line_count, ProgramLineCount; logic [TotalSize-1:0] line; string ProgramLine; // preload //always @ (posedge reset) begin initial begin $readmemh(FunctionRadixFile, memory_bank); // we need to count the number of lines in the file so we can set line_count. line_count = 0; fp = $fopen(FunctionRadixFile, "r"); // read line by line to count lines if (fp) begin while (! $feof(fp)) begin $fscanf(fp, "%h\n", line); line_count = line_count + 1; end end else begin $display("Cannot open file %s for reading.", FunctionRadixFile); end $fclose(fp); // ProgramIndexFile maps the program name to the compile index. // The compile index is then used to inditify the application // in the custom radix. // Build an associative array to convert the name to an index. ProgramLineCount = 0; ProgramFP = $fopen(ProgramIndexFile, "r"); if (ProgramFP) begin while (! $feof(ProgramFP)) begin $fscanf(ProgramFP, "%s\n", ProgramLine); ProgramBank[ProgramLine] = ProgramLineCount; ProgramLineCount = ProgramLineCount + 1; end end else begin $display("Cannot open file %s for reading.", ProgramIndexFile); end $fclose(ProgramFP); end always @(pc) begin bin_search_min(TestAddr, line_count, memory_bank, index); end // Each time there is a new program update the test number always @(ProgramName) begin TestNumber = ProgramBank[ProgramName]; end endmodule // function_radix