Searched refs:line (Results 51 - 75 of 136) sorted by relevance

123456

/gem5/util/plot_dram/
H A Ddram_sweep_plot.py88 for line in simout:
90 "burst: (\d+), banks: (\d+), max stride: (\d+)", line)
108 for line in stats:
109 match = re.match(".*busUtil\s+(\d+\.\d+)\s+#.*", line)
113 match = re.match(".*peakBW\s+(\d+\.\d+)\s+#.*", line)
117 match = re.match(".*averagePower\s+(\d+\.?\d*)\s+#.*", line)
/gem5/tests/test-progs/asmtest/src/riscv/
H A Drun-tests.py97 for line in execute("ls %s/*" % (test_dir)).splitlines():
98 if line:
99 tests.append(line.split('/')[-1])
/gem5/src/unittest/
H A Dunittest.hh44 * @param line The line number this check is on.
48 void checkVal(const char *file, const unsigned line,
/gem5/src/base/
H A Dinifile.cc106 cerr << "Can't parse .ini line " << assignment << endl;
191 string line; local
192 getline(f, line);
193 if (line.size() == 0)
196 eat_end_white(line);
197 int last = line.size() - 1;
199 if (line[0] == '[' && line[last] == ']') {
200 string sectionName = line.substr(1, last - 1);
209 if (!section->add(line))
[all...]
H A Dtrace.hh66 std::ostringstream line;
67 ccprintf(line, fmt, args...);
68 logMessage(when, name, line.str());
H A Dlogging.hh83 Loc(const char *file, int line) : file(file), line(line) {} argument
85 int line; member in struct:Logger::Loc
/gem5/src/dev/
H A Dpixelpump.hh69 /** How many pixel clocks are required for one line? */
79 /** Calculate the first line of the vsync signal */
84 /** Calculate the first line of the vertical back porch */
89 /** Calculate the first line of the visible region */
94 /** Calculate the first line of the back porch */
132 * <li>Vertical Sync (starting at line 0)
138 * Pixel order within a scan line:
180 /** Is the current line within the visible range? */
182 return line >= _timings.lineFirstVisible() &&
183 line < _timing
314 unsigned line; member in class:BasePixelPump
[all...]
/gem5/src/dev/x86/
H A Dpc.cc133 Pc::postPciInt(int line) argument
135 southBridge->ioApic->signalInterrupt(line);
139 Pc::clearPciInt(int line) argument
141 warn_once("Tried to clear PCI interrupt %d\n", line);
/gem5/src/mem/
H A Ddramsim2_wrapper.cc43 * When building the debug binary, we need to undo the command-line
132 std::string line; local
134 getline(file_stream, line);
135 if (line.substr(0, field_name.size()) == field_name) {
137 istringstream iss(line.substr(field_name.size()));
/gem5/ext/ply/example/BASIC/
H A Dbasinterp.py11 # containing (line,statement) mappings
170 # Change the current line number
187 self.stat = list(self.prog) # Ordered list of all line numbers
200 line = self.stat[self.pc]
201 instr = self.prog[line]
288 print("NEXT WITHOUT FOR AT LINE %s" % line)
296 print("NEXT DOESN'T MATCH FOR AT LINE %s" % line)
302 print("ALREADY IN A SUBROUTINE AT LINE %s" % line)
310 print("RETURN WITHOUT A GOSUB AT LINE %s" % line)
362 stat = list(self.prog) # Ordered list of all line number
[all...]
/gem5/configs/common/
H A DPlatformConfig.py97 for line in doc_wrapper.wrap(doc):
98 print(line)
H A DCpuConfig.py98 for line in doc_wrapper.wrap(doc):
99 print(line)
/gem5/util/
H A Dencode_packet_trace.py46 # The ASCII trace format uses one line per request on the format cmd,
111 # For each line in the ASCII trace, create a packet message and
113 for line in ascii_in:
114 cmd, addr, size, tick = line.split(',')
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py560 line = p.stdout.readline()
561 if not line:
563 print line.strip("\n")
564 output_array.append(line)
595 options: Command line options.
618 for line in unknown_files:
619 print line
651 for line in diff.splitlines(True):
652 if line.startswith('Index:') or line
[all...]
/gem5/ext/googletest/googletest/scripts/
H A Dupload.py560 line = p.stdout.readline()
561 if not line:
563 print line.strip("\n")
564 output_array.append(line)
595 options: Command line options.
618 for line in unknown_files:
619 print line
651 for line in diff.splitlines(True):
652 if line.startswith('Index:') or line
[all...]
/gem5/ext/googletest/googlemock/include/gmock/internal/
H A Dgmock-internal-utils.h269 virtual void ReportFailure(FailureType type, const char* file, int line,
281 inline void Assert(bool condition, const char* file, int line,
285 file, line, msg);
288 inline void Assert(bool condition, const char* file, int line) {
289 Assert(condition, file, line, "Assertion failed.");
294 inline void Expect(bool condition, const char* file, int line,
298 file, line, msg);
301 inline void Expect(bool condition, const char* file, int line) {
302 Expect(condition, file, line, "Expectation failed.");
/gem5/src/cpu/minor/
H A Dpipe_data.hh169 /** Line fetch data in the forward direction. Contains a single cache line
170 * (or fragment of a line), its address, a sequence number assigned when
171 * that line was fetched and a bubbleFlag that can allow ForwardLineData to
172 * be used to represent the absence of line data in a pipeline. */
176 /** This line is a bubble. No other data member is required to be valid
181 /** First byte address in the line. This is allowed to be
185 /** PC of the first requested inst within this line */
188 /** Explicit line width, don't rely on data.size */
192 /** This line has a fault. The bubble flag will be false and seqNums
196 /** Thread, stream, prediction ... id of this line */
201 uint8_t *line; member in class:Minor::ForwardLineData
[all...]
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_report_handler.h66 int line);
73 int line );
167 int line);
176 // eliminate source line number skew when check-ins are done.
/gem5/src/systemc/ext/utils/
H A Dsc_report_handler.hh70 const char *file, int line);
72 int verbosity, const char *file, int line);
76 int line);
/gem5/src/base/gtest/
H A Dlogging.cc64 ADD_FAILURE_AT(loc.file, loc.line) << s;
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h80 const char* file, int line, DeathTest** test);
144 const char* file, int line, DeathTest** test) = 0;
151 const char* file, int line, DeathTest** test);
249 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
/gem5/ext/ply/test/
H A Dtestyacc.py19 for line in result.splitlines():
20 if line.startswith("WARNING: "):
21 line = line[9:]
22 elif line.startswith("ERROR: "):
23 line = line[7:]
24 resultlines.append(line)
114 "yacc_dup.py:27: Function p_statement redefined. Previously defined on line 23\n"
/gem5/ext/googletest/googlemock/src/
H A Dgmock-internal-utils.cc78 virtual void ReportFailure(FailureType type, const char* file, int line, argument
84 line,
147 // Pre-pends a new-line to message if it doesn't start with one.
162 // Appends a new-line to message if it doesn't end with one.
/gem5/ext/googletest/googletest/src/
H A Dgtest-typed-test.cc61 const char* file, int line, const char* registered_tests) {
106 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
60 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/gem5/util/maint/
H A Dshow_changes_by_file.py58 path = [line.split('\t')[1] for line in raw.splitlines()]

Completed in 34 milliseconds

123456