Searched refs:context (Results 26 - 43 of 43) sorted by relevance

12

/gem5/src/arch/alpha/
H A Dkernel_stats.hh88 void context(Addr oldpcbb, Addr newpcbb, ThreadContext *tc);
H A Dkernel_stats.cc122 .desc("number of times the context was actually changed")
195 Statistics::context(Addr oldpcbb, Addr newpcbb, ThreadContext *tc) function in class:AlphaISA::Kernel::Statistics
H A Dev5.cc274 stats->context(ipr[idx], val, tc);
/gem5/util/
H A Dhgstyle.py107 from mercurial import context
108 wctx = context.workingctx(repo)
/gem5/src/mem/ruby/structures/
H A DCacheMemory.hh118 void setLocked (Addr addr, int context);
120 bool isLocked (Addr addr, int context);
H A DCacheMemory.cc457 CacheMemory::setLocked(Addr address, int context)
459 DPRINTF(RubyCache, "Setting Lock for addr: %#x to %d\n", address, context);
464 m_cache[cacheSet][loc]->setLocked(context);
479 CacheMemory::isLocked(Addr address, int context)
486 address, m_cache[cacheSet][loc]->m_locked, context);
487 return m_cache[cacheSet][loc]->isLocked(context);
/gem5/src/arch/x86/
H A Dremote_gdb.hh146 RemoteGDB(System *system, ThreadContext *context, int _port);
/gem5/src/cpu/minor/
H A Dexecute.cc327 ExecContext context(cpu, *cpu.threads[thread_id], *this, inst);
337 * context predicate, otherwise, it will be set to false */
360 if (!context.readMemAccPredicate())
361 inst->staticInst->completeAcc(nullptr, &context, inst->traceData);
379 fault = inst->staticInst->completeAcc(packet, &context,
402 context.readPredicate() : false));
464 ExecContext context(cpu, *cpu.threads[inst->id.threadId],
469 Fault init_fault = inst->staticInst->initiateAcc(&context,
491 if (!context.readMemAccPredicate()) {
493 assert(context
[all...]
H A Dlsq.cc82 ExecContext context(port.cpu, thread, port.execute, inst);
86 inst->translationFault = inst->staticInst->initiateAcc(&context, nullptr);
105 ExecContext context(port.cpu, thread, port.execute, inst);
107 context.setMemAccPredicate(false);
108 inst->staticInst->completeAcc(nullptr, &context, inst->traceData);
1123 ExecContext context(cpu, thread, execute, request->inst);
1127 TheISA::handleLockedRead(&context, request->request);
1129 do_access = TheISA::handleLockedWrite(&context,
/gem5/src/arch/mips/
H A Dfaults.hh247 ContextReg context = tc->readMiscReg(MISCREG_CONTEXT); local
248 context.badVPN2 = this->vpn >> 2;
249 tc->setMiscRegNoEffect(MISCREG_CONTEXT, context);
/gem5/src/base/
H A Dremote_gdb.hh126 BaseRemoteGDB(System *system, ThreadContext *context, int _port);
287 ThreadContext *context() { return tc; } function in class:BaseRemoteGDB
/gem5/src/arch/sparc/
H A Dtlb.hh109 * real is true or the partition id, and context id if real is false.
113 * @param context_id if this is virt->phys what context
136 /** Remove all entries that match a given context/partition id. */
152 void writeTagAccess(Addr va, int context);
/gem5/src/dev/arm/
H A Dsmmu_v3_transl.hh98 TranslContext context; member in class:SMMUTranslationProcess
/gem5/system/alpha/console/
H A Ddbmentry.S194 .ent SlaveSpin 2 # and swap context without
/gem5/ext/systemc/src/sysc/qt/md/
H A Dhppa.s15 ; PA-RISC 1.1 architecture. This file implements context switches
/gem5/src/arch/
H A Disa_parser.py247 context = parser.exportContext.copy()
252 context.update({ 'name' : name, 'Name' : Name })
254 vars = self.func(self.user_code, context, *args[0], **args[1])
2014 # special variable context 'exportContext' to prevent the code
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h192 size_t context = 2);
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc1200 // 'context' represents the desired unchanged prefix/suffix around the diff.
1205 size_t context) {
1219 const size_t prefix_context = std::min(l_i, context);
1229 if (n_suffix >= context) {
1233 if (it == edits.end() || (it - edits.begin()) - edit_i >= context) {
4220 // tests or this is executing in the context of death test child
4368 // context of a test, to current test case's ad_hoc_test_result when invoke
1203 CreateUnifiedDiff(const std::vector<std::string>& left, const std::vector<std::string>& right, size_t context) argument

Completed in 69 milliseconds

12