Searched refs:write (Results 576 - 600 of 747) sorted by relevance

<<21222324252627282930

/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64mi/
H A Daccess.S23 # jalr to an illegal address should commit (hence should write rd).
/gem5/ext/googletest/googlemock/test/
H A Dgmock_output_test.py177 golden_file.write(output)
/gem5/ext/googletest/googletest/scripts/
H A Drelease_docs.py145 file(versioned_file, 'w').write(new_text)
/gem5/src/dev/arm/
H A Dpl011.hh68 Tick write(PacketPtr pkt) override;
H A Dgic_v3.hh127 Tick write(PacketPtr pkt) override;
H A Drv_ctrl.cc132 RealViewCtrl::write(PacketPtr pkt) function in class:RealViewCtrl
151 warn_once("Ignoring write to reset control\n");
163 // A request is being submitted to read/write the system control
168 DPRINTF(RVCTRL, "SCReg: write %#x to ctrl but not starting\n",
181 // Service the request as a read or write depending on the
187 dev.write(scData);
195 case CfgStat: // Weird to write this
197 warn("Tried to write RVIO at offset %#x (data %#x) that doesn't exist\n",
297 RealViewOsc::write(uint32_t freq) function in class:RealViewOsc
H A Dtimer_a9global.cc146 A9GlobalTimer::write(PacketPtr pkt) function in class:A9GlobalTimer
156 global_timer.write(pkt, daddr);
158 panic("Tried to write A9GlobalTimer at offset %#x doesn't exist\n",
165 A9GlobalTimer::Timer::write(PacketPtr pkt, Addr daddr) function in class:A9GlobalTimer::Timer
172 DPRINTF(Timer, "Ignoring unsupported write to Global Timer Counter\n");
206 panic("Tried to write A9GlobalTimer at offset %#x\n", daddr);
H A Dgic_v3.cc137 Gicv3::write(PacketPtr pkt) function in class:Gicv3
148 DPRINTF(GIC, "Gicv3::write(): (distributor) context_id %d "
151 distributor->write(daddr, data, size, is_secure_access);
157 DPRINTF(GIC, "Gicv3::write(): (redistributor %d) context_id %d "
162 redist->write(daddr, data, size, is_secure_access);
166 panic("Gicv3::write(): unknown address %#x\n", addr);
H A Dtimer_cpulocal.cc170 CpuLocalTimer::write(PacketPtr pkt) function in class:CpuLocalTimer
181 localTimer[cpu_id]->write(pkt, daddr);
183 panic("Tried to write CpuLocalTimer at offset %#x that doesn't exist\n", daddr);
189 CpuLocalTimer::Timer::write(PacketPtr pkt, Addr daddr) function in class:CpuLocalTimer::Timer
259 panic("Tried to write CpuLocalTimer timer at offset %#x\n", daddr);
/gem5/util/
H A Dgit-pre-commit.py82 f.write(status)
/gem5/src/dev/x86/
H A Dcmos.cc67 X86ISA::Cmos::write(PacketPtr pkt) function in class:X86ISA::Cmos
/gem5/src/gpu-compute/
H A Ddispatcher.hh148 Tick write(PacketPtr pkt) override;
/gem5/util/term/
H A Dterm.c187 if ((ret = atomicio(write, lfd, buf, n)) != n)
206 (ret = atomicio(write, nfd, buf2, 1)) != n)
214 if ((ret = atomicio(write, nfd, buf, n)) != n)
255 * ensure all of data on socket comes through. f==read || f==write
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_fifo.h107 // blocking write
108 virtual void write( const T& );
110 // non-blocking write
133 { write( a ); return *this; }
163 int m_wi; // index of next write
259 // blocking write
264 sc_fifo<T>::write( const T& val_ ) function in class:sc_core::sc_fifo
274 // non-blocking write
H A Dsc_clock.h90 virtual void write( const bool& );
H A Dsc_signal_ifs.h214 // write the new value
215 virtual void write( const T& ) = 0;
/gem5/src/arch/hsail/
H A Dgen.py910 header_code.write(sys.argv[1])
911 decoder_code.write(sys.argv[2])
912 exec_code.write(sys.argv[3])
/gem5/src/dev/storage/
H A Ddisk_image.cc71 panic("Attempting to fork system with read-write raw disk image.");
137 RawDiskImage::write(const uint8_t *data, std::streampos offset) function in class:RawDiskImage
143 panic("Cannot write to a read only disk image");
152 DPRINTF(DiskImageWrite, "write: offset=%d\n", (uint64_t)offset);
156 stream.write((const char *)data, SectorSize);
307 stream.write((const char *)data, count);
383 child->write((*i).second->data, (*i).first);
413 CowDiskImage::write(const uint8_t *data, std::streampos offset) function in class:CowDiskImage
430 DPRINTF(DiskImageWrite, "write: offset=%d\n", (uint64_t)offset);
/gem5/src/systemc/tests/systemc/compliance_1666/test00/
H A Dtest00.cpp62 virtual void write() = 0;
83 virtual void write() function in struct:Chan
103 (*p)->write();
129 void write() { request_update(); } function in struct:Prim
196 prim.write();
/gem5/util/stats/
H A Dbarchart.py278 # f.write(', '.join(list(self.xlabel)) + '\n')
279 f.write(', '.join([ '%f' % val for val in data]) + '\n')
282 # f.write(', '.join([''] + list(self.xlabel)) + '\n')
287 f.write(', '.join(ylabel + [ '%f' % v for v in row]) + '\n')
289 f.write("don't do 3D csv files\n")
/gem5/src/systemc/tests/systemc/1666-2011-compliance/throw_it/
H A Dthrow_it.cpp180 areset.write(false);
192 areset.write(true);
208 areset.write(false);
/gem5/src/dev/net/
H A Dethertap.cc395 ssize_t ret = write(socket, &frame_len, sizeof(frame_len));
398 return write(socket, data, len) == len;
458 // `tap` is a nonblock fd. Here we try to write until success, and use
460 while ((n = write(tap, data, len)) != len) {
462 panic("Failed to write data to tap device.\n");
468 panic("Failed when polling to write data to tap device.\n");
/gem5/src/dev/pci/
H A Dhost.hh283 Tick write(PacketPtr pkt) override;
/gem5/util/statetrace/arch/amd64/
H A Dtracechild.cc50 if (write(socket, &regVal64, sizeof(regVal64)) == -1) {
57 if (write(socket, &regVal64, sizeof(regVal64)) == -1) {
64 if (write(socket, &regVal32, sizeof(regVal32)) == -1) {
72 if (write(socket, &regVal32, sizeof(regVal32)) == -1) {
/gem5/src/dev/sparc/
H A Diob.hh136 Tick write(PacketPtr pkt) override;

Completed in 24 milliseconds

<<21222324252627282930