Searched refs:status (Results 1 - 25 of 141) sorted by relevance

123456

/gem5/ext/nomali/lib/
H A Dmali_t6xx.cc27 unsigned major, unsigned minor, unsigned status)
28 : MaliMidgard(gpuType, major, minor, status)
45 MaliT60x::MaliT60x(unsigned major, unsigned minor, unsigned status) argument
46 : MaliT6xxBase(GPU_ID_PI_T60X, major, minor, status)
50 MaliT62x::MaliT62x(unsigned major, unsigned minor, unsigned status) argument
51 : MaliT6xxBase(GPU_ID_PI_T62X, major, minor, status)
26 MaliT6xxBase(unsigned gpuType, unsigned major, unsigned minor, unsigned status) argument
H A Dmali_t7xx.hh32 unsigned major, unsigned minor, unsigned status);
45 MaliT76x(unsigned major, unsigned minor, unsigned status);
H A Dmali_t7xx.cc27 unsigned major, unsigned minor, unsigned status)
28 : MaliMidgard(gpuType, major, minor, status)
45 MaliT76x::MaliT76x(unsigned major, unsigned minor, unsigned status) argument
46 : MaliT7xxBase(GPU_ID_PI_T76X, major, minor, status)
26 MaliT7xxBase(unsigned gpuType, unsigned major, unsigned minor, unsigned status) argument
H A Dmali_t6xx.hh32 unsigned major, unsigned minor, unsigned status);
46 MaliT60x(unsigned major, unsigned minor, unsigned status);
56 MaliT62x(unsigned major, unsigned minor, unsigned status);
H A Dmali_midgard.hh39 unsigned major, unsigned minor, unsigned status);
/gem5/tests/test-progs/gpu-hello/src/
H A Dgpu-hello.cpp100 cl_int status = 0; local
106 status = clGetPlatformIDs(0, NULL, &numPlatforms);
107 if (status != CL_SUCCESS) {
114 status = clGetPlatformIDs(numPlatforms, platforms, NULL);
115 if (status != CL_SUCCESS) {
121 status = clGetPlatformInfo(platforms[i], CL_PLATFORM_VENDOR,
123 if (status != CL_SUCCESS) {
144 &status);
145 if (status != CL_SUCCESS) {
152 status
211 cl_int status; local
291 cl_int status; local
[all...]
/gem5/src/dev/ps2/
H A Dmouse.cc53 status(0), resolution(4), sampleRate(100)
68 status.enabled = 0;
73 status.enabled = 1;
82 status.twoToOne = 0;
83 status.enabled = 0;
91 status.twoToOne = 0;
96 status.twoToOne = 1;
111 DPRINTF(PS2, "Getting mouse status.\n");
113 send((uint8_t *)&(status), 1);
141 status
[all...]
/gem5/src/arch/riscv/
H A Dfaults.cc61 STATUS status = tc->readMiscReg(MISCREG_STATUS); local
84 // Set fault registers and status
93 status.upie = status.uie;
94 status.uie = 0;
102 status.spp = pp;
103 status.spie = status.sie;
104 status.sie = 0;
112 status
144 STATUS status = tc->readMiscReg(MISCREG_STATUS); local
[all...]
/gem5/src/dev/serial/
H A Duart.cc42 status = 0;
H A Duart.hh51 int status; member in class:Uart
72 * @return interrupt status
74 bool intStatus() { return status ? true : false; }
H A Duart8250.cc56 status |= intrBit;
116 status &= ~RX_INT;
133 DPRINTF(Uart, "IIR Read, status = %#x\n", (uint32_t)status);
135 if (status & RX_INT) /* Rx data interrupt has a higher priority */
137 else if (status & TX_INT) {
140 status &= ~TX_INT;
194 status &= ~TX_INT;
224 if (status & TX_INT)
226 status
[all...]
/gem5/tests/testing/
H A Dhelpers.py50 def __init__(self, status, stdout, stderr):
51 self.status = status
77 status = self.wait()
80 return status
95 status, stdout, stderr = None, None, None
101 status = self.wait()
109 return status, stdout, stderr
165 status, stdout, stderr = p.call()
167 assert status
[all...]
/gem5/src/systemc/core/
H A Dkernel.hh59 static sc_core::sc_status status();
60 static void status(sc_core::sc_status s);
H A Dkernel.cc56 sc_core::sc_status Kernel::status() { return _status; } function in class:sc_gem5::Kernel
57 void Kernel::status(sc_core::sc_status s) { _status = s; } function in class:sc_gem5::Kernel
75 status(::sc_core::SC_BEFORE_END_OF_ELABORATION);
98 status(::sc_core::SC_END_OF_ELABORATION);
122 status(::sc_core::SC_START_OF_SIMULATION);
138 kernel->status(::sc_core::SC_RUNNING);
144 if (status() < ::sc_core::SC_RUNNING)
153 status(::sc_core::SC_END_OF_SIMULATION);
167 status(::sc_core::SC_STOPPED);
179 status(
[all...]
/gem5/util/
H A Dmemtest-soak.py64 status = subprocess.call([gem5_binary, 'configs/example/memtest.py', variable
66 if status != 0:
H A Dgit-pre-commit.py69 for status, fname in git.status(filter="MA", cached=True):
74 if status == "M":
80 status = git.file_from_index(fname) variable
82 f.write(status)
/gem5/src/cpu/
H A Dbase_dyn_inst.hh121 PinnedRegsSquashDone, /// Regs pinning status updated after squash
183 /** The status of this BaseDynInst. Several bits can be set. */
184 std::bitset<NumStatus> status; member in class:BaseDynInst
530 { return staticInst->isSerializeBefore() || status[SerializeBefore]; }
532 { return staticInst->isSerializeAfter() || status[SerializeAfter]; }
549 void setSerializeBefore() { status.set(SerializeBefore); }
552 void clearSerializeBefore() { status.reset(SerializeBefore); }
555 bool isTempSerializeBefore() { return status[SerializeBefore]; }
558 void setSerializeAfter() { status.set(SerializeAfter); }
561 void clearSerializeAfter() { status
[all...]
/gem5/ext/testlib/
H A Dwrappers.py52 def __init__(self, name, uid, path, result, status, suite_uid):
56 self.status = status
62 def __init__(self, name, uid, tags, path, status, result):
67 self.status = status
72 def __init__(self, name, result, status):
75 self.status = status
82 :property:`result` and :property:`status` setter
91 def status(self): member in class:LoadedTestable
95 def status(self, status): member in class:LoadedTestable
[all...]
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_main_main.cpp70 int status = 1; local
84 status = sc_main( argc, &argv_call[0] );
123 return status;
/gem5/src/mem/cache/tags/
H A Dsuper_blk.cc49 return (status & BlkCompressed) != 0;
55 status |= BlkCompressed;
61 status &= ~BlkCompressed;
/gem5/src/arch/mips/
H A Dinterrupts.cc116 StatusReg status = tc->readMiscRegNoEffect(MISCREG_STATUS);
119 if ((status.ie == 1) && (status.erl == 0) && (status.exl == 0)) {
124 if (status.im && cause.ip)
137 StatusReg M5_VAR_USED status = tc->readMiscRegNoEffect(MISCREG_STATUS); local
140 (unsigned)status.im, (unsigned)cause.ip);
H A Dfaults.cc106 StatusReg status = tc->readMiscReg(MISCREG_STATUS); local
107 if (status.exl != 1 && status.bev != 1) {
116 status.exl = 1;
117 tc->setMiscRegNoEffect(MISCREG_STATUS, status);
158 StatusReg status = tc->readMiscRegNoEffect(MISCREG_STATUS); local
159 status.cu.cu1 = 1;
160 tc->setMiscReg(MISCREG_STATUS, status);
/gem5/src/dev/virtio/
H A Dblock.cc138 Status status; local
144 status = parent.read(req, desc, sizeof(BlkRequest), data_size);
148 status = parent.write(req, desc, sizeof(BlkRequest), data_size);
152 status = S_OK;
157 status = S_UNSUPP;
162 &status, sizeof(status));
/gem5/ext/fputils/tests/
H A Dtest_helper.c90 test_vstatus(const char *status, const char *test, argument
94 printf("%s %i", status, test_current);
110 test_status(const char *status, const char *test, argument
117 test_vstatus(status, test, directive, fmt_why, ap);
/gem5/ext/nomali/tests/
H A Dtest_helpers.c80 test_vstatus(const char *status, const char *test, argument
84 printf("%s %i", status, test_current);
100 test_status(const char *status, const char *test, argument
107 test_vstatus(status, test, directive, fmt_why, ap);

Completed in 27 milliseconds

123456