Searched refs:line (Results 101 - 125 of 136) sorted by relevance

123456

/gem5/ext/pybind11/include/pybind11/
H A Diostream.h44 str line(pbase(), static_cast<size_t>(pptr() - pbase()));
48 pywrite(line);
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h74 // the current line number. For more details, see
160 ScopedTrace(const char* file, int line, const Message& message);
505 CodeLocation(const string& a_file, int a_line) : file(a_file), line(a_line) {}
508 int line; member in struct:testing::internal::CodeLocation
555 bool AddTestName(const char* file, int line, const char* case_name, argument
560 FormatFileLocation(file, line).c_str(), test_name, case_name);
565 ::std::make_pair(test_name, CodeLocation(file, line)));
583 const char* file, int line, const char* registered_tests);
684 code_location.line).c_str());
1102 #define GTEST_MESSAGE_AT_(file, line, messag
[all...]
/gem5/src/cpu/minor/
H A Dfetch1.cc83 DPRINTF(Fetch, "lineSnap set to cache line size of: %d\n",
89 DPRINTF(Fetch, "maxLineWidth set to cache line size of: %d\n",
154 * line. */
160 /* Fill in the line's id */
196 /* Step the PC for the next line onto the line aligned next address.
198 * reliable 'new' PC if the next line has a new stream sequence number. */
317 DPRINTF(Fetch, "Not advancing line fetch\n");
396 /** Print the appropriate MinorLine line for a fetch response */
540 ForwardLineData &line)
539 processResponse(Fetch1::FetchRequestPtr response, ForwardLineData &line) argument
[all...]
H A Dfetch2.cc96 /* Get a line from the inputBuffer to work with */
278 DPRINTF(Fetch, "Discarding line %s"
306 * using more than one input line. Note that lineWidth will be 0
317 /* Discard line due to prediction sequence number being wrong but
348 /* Rest of line was from an older prediction in the same
350 DPRINTF(Fetch, "Discarding line %s (from inputIndex: %d)"
357 /* Make a new instruction and pick up the line, stream,
358 * prediction, thread ids from the incoming line */
377 uint8_t *line = line_in->line; local
[all...]
H A Dfetch1.hh118 Complete /* Complete. Either a fault, or a fetched line */
123 /** Identity of the line that this request will generate */
135 /** PC to fixup with line address */
148 /** Is this line out of date with the current stream/prediction
153 /** Is this a complete read line or fault */
209 * extend beyond this limit. Setting this to the machine L1 cache line
210 * length will result in fetches never crossing line boundaries. */
214 * machine L1 cache line length will result in fetches of whole cache
307 /** Sequence number for line fetch used for ordering lines to flush */
334 ForwardLineData &line);
[all...]
/gem5/ext/googletest/googlemock/src/
H A Dgmock-spec-builders.cc58 // Logs a message including file and line number information.
60 const char* file, int line,
63 s << file << ":" << line << ": " << message << ::std::endl;
437 untyped_expectation->line(), ss.str());
491 untyped_expectation->line(), ss.str());
722 const char* file, int line)
728 state.first_used_line = line;
59 LogWithLocation(testing::internal::LogSeverity severity, const char* file, int line, const string& message) argument
/gem5/ext/googletest/googletest/test/
H A Dgtest_filter_unittest.py37 environments and command line flags.
96 # The command line flag for specifying the test filters.
99 # The command line flag for including disabled tests.
114 # The command line flag to tell Google Test to output the list of tests it
195 for line in p.output.split('\n'):
196 match = TEST_CASE_REGEX.match(line)
200 match = TEST_REGEX.match(line)
229 """Tests the env variable or the command line flag to filter tests."""
280 # Next, tests using the command line flag.
341 # Construct the command line
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc878 // Formats a source file path and a line number as they would appear
880 GTEST_API_ ::std::string FormatFileLocation(const char* file, int line) { argument
883 if (line < 0) {
887 return file_name + "(" + StreamableToString(line) + "):";
889 return file_name + ":" + StreamableToString(line) + ":";
899 const char* file, int line) {
902 if (line < 0)
905 return file_name + ":" + StreamableToString(line);
908 GTestLog::GTestLog(GTestLogSeverity severity, const char* file, int line) argument
915 << FormatFileLocation(file, line)
898 FormatCompilerIndependentFileLocation( const char* file, int line) argument
[all...]
/gem5/ext/mcpat/
H A Dcore.cc61 int idx, tag, data, size, line, assoc, banks; local
90 line = int(ceil(data / BITS_PER_BYTE));
92 line;
98 interface_ip.line_sz = line;
101 interface_ip.out_w = line * BITS_PER_BYTE;
140 line = inst_fetch_params.btb_block_size;
143 idx = int(ceil(log2(size / line / assoc)));
148 interface_ip.line_sz = line;
151 interface_ip.out_w = line * BITS_PER_BYTE;
515 int line; local
803 int line; local
917 int line; local
1100 int line; local
[all...]
/gem5/ext/testlib/
H A Dsandbox.py104 for line in iter(pipe.readline, ''):
105 log_callback(line)
H A Dresult.py281 for line in f:
282 file_.write(xml.sax.saxutils.escape(line))
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dgmock_class.py77 for line in [
78 '// The following line won\'t really compile, as the return',
81 output_lines.append(indent + line)
116 # parameters together on a single line. Ensure there is a
/gem5/util/batch/
H A Djob.py136 for line in f: pass
138 # the first word on the last line is the status
139 return line.split(' ')[0]
/gem5/util/pbs/
H A Djob.py138 for line in f: pass
140 # the first word on the last line is the status
141 return line.split(' ')[0]
/gem5/configs/example/
H A Dse.py98 process.env = [line.rstrip() for line in f]
/gem5/src/python/m5/stats/
H A D__init__.py140 Text stat files contain one stat per line with an optional
227 for line in doc.splitlines():
228 print("| %s" % line)
/gem5/util/streamline/
H A Dm5stats2streamline.py598 for line in process_file:
599 match = re.match(process_re, line)
897 line = f.readline()
903 if not line:
908 m = sim_freq_regex.match(line)
916 m = final_tick_regex.match(line)
924 if (window_end_regex.match(line) or error):
954 if stats.regex.match(line):
959 m = stat.per_cpu_regex[i].match(line)
978 m = stat.regex.match(line)
[all...]
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h675 // Returns the line where this test is defined.
676 int line() const { return location_.line; } function in class:testing::TestInfo
1355 // RUN_ALL_TESTS(). In particular, it parses a command line for the
1453 // The following line prevents this overload from being considered if T2
1673 int line,
1691 : type(t), file(srcfile), line(line_num), message(msg) { }
1695 int const line; member in struct:testing::internal::AssertHelper::AssertHelperData
1812 #define ADD_FAILURE_AT(file, line) \
1813 GTEST_MESSAGE_AT_(file, line, "Faile
[all...]
/gem5/src/mem/ruby/structures/
H A DCacheMemory.hh73 // b) an unused line in the same cache "way"
91 // Returns with the physical address of the conflicting cache line
160 int findTagInSet(int64_t line, Addr tag) const;
/gem5/util/
H A Dgem5img.py141 # This line has information about the first partition.
156 for line in mountTable:
157 chunks = line.split()
/gem5/configs/common/
H A DSimulation.py311 line = simpoint_file.readline()
312 if not line:
314 m = re.match("(\d+)\s+(\d+)", line)
318 fatal('unrecognized line in simpoint file!')
320 line = weight_file.readline()
321 if not line:
323 m = re.match("([0-9\.e\-]+)\s+(\d+)", line)
327 fatal('unrecognized line in simpoint weight file!')
702 # Checkpoints being taken via the command line at <when> and at
705 # favor of command line checkpoin
[all...]
/gem5/ext/mcpat/cacti/
H A Dnuca.cc56 char line[5000]; local
69 assert(fscanf(cont, "%[^\n]\n", line) != EOF);
70 sscanf(line, "%[^:]: %d %d %d %d %d %d %d %d", jk,
/gem5/src/arch/arm/kvm/
H A Dgic.cc104 const uint32_t line(
109 vm.setIRQLine(line, high);
/gem5/tests/
H A Ddiff-out54 # Things that really should be adjustable via the command line
83 next if /^(command line:|M5 compiled on |M5 simulation started |M5 executing on )/;
135 # end line of distribution: clear $in_dist flag
152 # start line of distribution: set $in_dist flag
/gem5/src/systemc/tests/
H A Dverify.py231 for line in difflib.unified_diff(
235 diff_f.write(line)

Completed in 59 milliseconds

123456