Skip to content

Commit

Permalink
add setenv pass
Browse files Browse the repository at this point in the history
  • Loading branch information
nakengelhardt committed Nov 28, 2024
1 parent 98b4aff commit 34e02ad
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 0 deletions.
1 change: 1 addition & 0 deletions passes/cmds/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ OBJS += passes/cmds/future.o
OBJS += passes/cmds/box_derive.o
OBJS += passes/cmds/example_dt.o
OBJS += passes/cmds/portarcs.o
OBJS += passes/cmds/setenv.o
49 changes: 49 additions & 0 deletions passes/cmds/setenv.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
* yosys -- Yosys Open SYnthesis Suite
*
* Copyright (C) 2024 N. Engelhardt <[email protected]>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
*/

#include "kernel/register.h"
#include "kernel/rtlil.h"
#include "kernel/log.h"
#include <stdlib.h>

USING_YOSYS_NAMESPACE
PRIVATE_NAMESPACE_BEGIN
struct SetenvPass : public Pass {
SetenvPass() : Pass("setenv", "set an environment variable") { }
void help() override
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
log(" setenv name value\n");
log("\n");
log("Set the given environment variable on the current process. String values must be\n");
log("passed in double quotes (\").\n");
log("\n");
}
void execute(std::vector<std::string> args, [[maybe_unused]] RTLIL::Design *design) override
{
if(args.size() != 3)
log_cmd_error("Wrong number of arguments given.\n");

setenv(args[1].c_str(), args[2].c_str(), 1);

}
} SetenvPass;

PRIVATE_NAMESPACE_END
1 change: 1 addition & 0 deletions tests/verific/setenv.flist
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
${filename}
4 changes: 4 additions & 0 deletions tests/verific/setenv.ys
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
setenv filename case.sv
verific -f -sv setenv.flist
verific -import top
select -assert-mod-count 1 top

0 comments on commit 34e02ad

Please sign in to comment.