Searched refs:config (Results 26 - 50 of 71) sorted by relevance

123

/gem5/ext/testlib/
H A Dconfig.py33 1. config
34 2. constants (Also attached to the config variable as an attribute)
45 The config variable is initialzed by calling :func:`initialize_config`.
47 that library function writers never accidentally get stale config attributes.
49 Program arguments/flag arguments are available from the config as attributes.
50 If an attribute was not set by the command line or the optional config file,
55 Provided by the config if the attribute is not found in the config or
61 Values not directly exposed by the config, but are attached to the object
63 :code:`config
657 config = _Config() variable
[all...]
H A Duid.py32 import config
45 os.path.commonprefix((config.constants.testing_base,
50 return os.path.join(config.constants.testing_base, short_path)
H A Dloader.py73 import config
137 It modifies the sys path and global config.
224 config.config.file_under_load = path
231 config.config.file_under_load = None
259 # FIXME Use the config based default to group all uncollected
/gem5/tests/
H A Drun.py154 (category, mode, name, isa, opsys, config) = sys.argv[1].split('/')[-6:]
180 def run_config(config, argv=None):
184 abs_path = joinpath(src_root, config)
188 '__file__' : config,
201 sys.argv = [ config, ]
208 test_filename = config
/gem5/util/
H A Ddiff_config.pl39 # Script which takes two config.ini files and generates a semantic diff. The
67 # Read in the two config files
71 # Compare the two config files. For the first comparision we also compare the
124 # Compare two config files. Print differences.
197 # Read in the config file section by section.
201 my %config;
205 readSection( $line, \%config );
209 return %config;
214 # Read in each section of the config file.
H A Dhgfilesize.py20 limit = int(ui.config('limit_file_size', 'maximum_file_size', 1024*1024))
/gem5/site_scons/site_tools/
H A Dmercurial.py89 style_hooks = (ui.config('hooks', 'pretxncommit.style', None),
90 ui.config('hooks', 'pre-qrefresh.style', None))
92 style_extension = ui.config('extensions', 'style', None)
/gem5/ext/dsent/libutil/
H A DConfig.cc31 void readFile(const char *filename_, map<String, String> &config) argument
72 ASSERT((delimPos < String::npos), "Invalid config line: '" + line + "'");
114 config[key] = line; // overwrites if key is repeated
/gem5/util/tlm/
H A Drun_gem5_fs.sh53 time ./build/examples/slave_port/gem5.sc m5out/config.ini -o 2147483648
/gem5/ext/googletest/googlemock/scripts/
H A Dgmock-config.in9 echo "Usage: gmock-config [OPTIONS...]"
17 The `gmock-config' script provides access to the necessary compile and linking
31 gmock-config --min-version=1.0 || echo "Insufficient Google Mock version."
33 g++ $(gmock-config --cppflags --cxxflags) -o foo.o -c foo.cpp
34 g++ $(gmock-config --ldflags --libs) -o foo foo.o
37 g++ $(../../my_gmock_build/scripts/gmock-config ...) ...
41 g++ $(gmock-config --libdir="/opt/lib64" ...) ...
204 # gtest-config script rather than searching the PATH and our bindir for one.
229 # Directly invoke the gtest-config script used during the build process.
240 # We also prefer any gtest-config scrip
[all...]
/gem5/ext/dsent/
H A DDSENT.cc127 // For all parameters, grab values from the config file
132 // If it exists in the config file, set the parameter
145 // For all properties, grab values from the config file
150 // If it exists in the config file, set the parameter
277 Model *initialize(const char *config_file_name, map<String, String> &config) argument
282 // Init the config file
283 LibUtil::readFile(config_file_name, config);
286 TechModel *tech_model = constructTechModel(config);
288 // Build the specified model in the config file
289 return buildModel(config, tech_mode
292 finalize(map<String, String> &config, Model *ms_model) argument
327 getEnvVar(const String& var_name_, const map<String, String> &config, Model *ms_model) const argument
[all...]
/gem5/configs/example/
H A Dread_config.py38 # This script allows .ini and .json system config file generated from a
43 # simulation control) to read pre-described systems from config scripts
170 """Manager for parsing a Root configuration from a config file"""
171 def __init__(self, config):
172 self.config = config
174 self.flags = config.get_flags()
186 object_type = self.config.get_param(object_name, 'type')
199 param_values = self.config.get_param_vector(object_name,
206 self.flags, self.config
540 config = ConfigIniFile() variable
543 config = ConfigJsonFile() variable
[all...]
/gem5/ext/
H A Dgit-commit-msg48 if test "false" = "`git config --bool --get gerrit.createChangeId`"
67 # Get core.commentChar from git config or use default symbol
68 commentChar=`git config --get core.commentChar`
/gem5/tests/gem5/cpu_tests/
H A Dtest.py63 config=joinpath(getcwd(), 'run.py'), variable
/gem5/src/dev/pci/
H A Ddevice.hh68 * PCI device, base implementation is only config space.
75 /** The current config space. */
76 PCIConfig config; member in class:PciDevice
166 * Write to the PCI config space data that is stored locally. This may be
169 * @param pkt packet containing the write the offset into config space
175 * Read from the PCI config space data that is stored locally. This may be
178 * @param pkt packet containing the write the offset into config space
196 uint8_t interruptLine() const { return letoh(config.interruptLine); }
207 * config file object PCIConfigData and registers the device with
/gem5/tests/test-progs/asmtest/src/riscv/
H A Drun-tests.py87 config = os.path.join(gem5_dir, 'configs', 'example', 'se.py') variable
112 config,
/gem5/tests/gem5/
H A Dfixture.py50 from testlib.config import config, constants
125 executing. If None is provided, will choose the config base_dir.
133 if config.skip_build:
138 '-j', str(config.threads),
164 target_dir = joinpath(config.build_dir, isa.upper())
176 self.directory = config.base_dir
/gem5/src/dev/virtio/
H A Dblock.cc53 config.capacity = image.size();
65 cfg_out.capacity = htov_legacy(config.capacity);
H A Dblock.hh89 Config config; member in class:VirtIOBlock
H A Dconsole.hh88 Config config; member in class:VirtIOConsole
/gem5/ext/googletest/googletest/scripts/
H A Dgtest-config.in9 echo "Usage: gtest-config [OPTIONS...]"
17 The `gtest-config' script provides access to the necessary compile and linking
31 gtest-config --min-version=1.0 || echo "Insufficient Google Test version."
33 g++ $(gtest-config --cppflags --cxxflags) -o foo.o -c foo.cpp
34 g++ $(gtest-config --ldflags --libs) -o foo foo.o
37 g++ $(../../my_gtest_build/scripts/gtest-config ...) ...
41 g++ $(gtest-config --libdir="/opt/lib64" ...) ...
/gem5/util/m5/
H A DMakefile.x8636 LUA_HEADER_INCLUDE=$(shell pkg-config --cflags-only-I lua51)
H A DMakefile.arm67 LUA_HEADER_INCLUDE=$(shell pkg-config --cflags lua51) \
/gem5/ext/mcpat/cacti/
H A Dcacti.mk34 INCLUDES = -I /usr/include/python2.4 -I /usr/lib/python2.4/config
/gem5/util/dist/
H A Dgem5-dist.sh81 echo " fullsystem: fullsystem config file"
82 echo " fs_args : fullsystem config specific argument list: arg1 arg2 ..."
84 echo " switch : switch config file"
85 echo " sw_args : switch config specific argument list: arg1 arg2 ..."
86 echo " conf_args : common (for both fullsystem and switch) config argument list: arg1 arg2 ..."
182 [ -f "$FS_CONFIG" ] || { echo "FS config ${FS_CONFIG} not found"; exit 1; }
183 [ -f "$SW_CONFIG" ] || { echo "Switch config ${SW_CONFIG} not found"; exit 1; }

Completed in 28 milliseconds

123