Searched refs:target (Results 101 - 114 of 114) sorted by relevance

12345

/gem5/src/arch/arm/insts/
H A Dstatic_inst.cc395 ArmStaticInst::printTarget(std::ostream &os, Addr target,
401 if (symtab && symtab->findNearestSymbol(target, symbol, symbolAddr)) {
403 if (symbolAddr != target)
404 ccprintf(os, "+%d>", target - symbolAddr);
408 ccprintf(os, "%#x", target);
806 // Check if target exception level is implemented.
810 // target exception level (where the trap will be handled)
846 // Check if target exception level is implemented.
H A Dstatic_inst.hh172 void printTarget(std::ostream &os, Addr target,
/gem5/src/mem/cache/
H A Dcache.cc373 // There's no reason to add a prefetch as an additional target
702 for (auto &target: targets) {
703 Packet *tgt_pkt = target.pkt;
704 switch (target.source) {
780 completion_time - target.recvTime;
852 // If the response is invalidating, a snooping target can
857 // non-invalidating snoop is added as a target here since this is
859 // the snooping target will snoop further the cache above with the
868 panic("Illegal target->source enum %d\n", target
[all...]
/gem5/src/cpu/o3/
H A Ddecode_impl.hh748 TheISA::PCState target = inst->branchTarget(); local
753 tid, inst->seqNum, target);
755 inst->setPredTarg(target);
/gem5/src/cpu/pred/
H A Dmultiperspective_perceptron_tage.cc189 bool speculative, const StaticInstPtr &inst, Addr target)
203 updatePathAndGlobalHistory(tHist, brtype, taken, branch_pc, target);
208 ThreadHistory& tHist, int brtype, bool taken, Addr branch_pc, Addr target)
187 updateHistories( ThreadID tid, Addr branch_pc, bool taken, TAGEBase::BranchInfo* b, bool speculative, const StaticInstPtr &inst, Addr target) argument
207 updatePathAndGlobalHistory( ThreadHistory& tHist, int brtype, bool taken, Addr branch_pc, Addr target) argument
H A Dmultiperspective_perceptron.cc687 unsigned int target = corrTarget; local
688 if (target < bi->getPC()) {
H A Dtage_base.cc585 const StaticInstPtr &inst, Addr target)
625 Addr target)
583 updateHistories(ThreadID tid, Addr branch_pc, bool taken, BranchInfo* bi, bool speculative, const StaticInstPtr &inst, Addr target) argument
624 squash(ThreadID tid, bool taken, TAGEBase::BranchInfo *bi, Addr target) argument
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_signal.h54 sc_writer_policy_check_write::check_write( sc_object* target, bool ) argument
60 sc_signal_invalid_writer( target, m_writer_p, writer_p, m_check_delta );
/gem5/ext/pybind11/tests/
H A Dtest_callbacks.cpp108 auto result = f.target<fn_type>();
/gem5/util/streamline/
H A Dm5stats2streamline.py43 # some patches applied to target Linux kernel.)
77 enabled and some patches applied to the target Linux kernel.)
1022 target = ET.SubElement(xml, "target")
1023 target.set("name", "gem5")
1024 target.set("sample_rate", "1000")
1025 target.set("cores", str(num_cpus))
/gem5/src/arch/arm/kvm/
H A Darm_cpu.cc357 ArmKvmCPU::kvmArmVCpuInit(uint32_t target) argument
363 init.target = target;
/gem5/ext/testlib/
H A Dhandlers.py390 self.thread = threading.Thread(target=self.process)
/gem5/src/cpu/minor/
H A Dfetch1.cc517 thread.pc = branch.target;
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc4416 const std::string& target = GTEST_FLAG(stream_result_to); local
4417 if (!target.empty()) {
4418 const size_t pos = target.find(':');
4420 listeners()->Append(new StreamingListener(target.substr(0, pos),
4421 target.substr(pos+1)));
4423 printf("WARNING: unrecognized streaming target \"%s\" ignored.\n",
4424 target.c_str());

Completed in 64 milliseconds

12345