Searched refs:reason (Results 1 - 25 of 26) sorted by relevance

12

/gem5/ext/testlib/
H A Dstate.py42 def __init__(self, value, reason=None):
44 self.reason = reason
H A Drunner.py55 return Result(result.value, result.reason)
57 failed.append(result.reason)
59 skipped.append(result.reason)
98 def avoid_children(self, reason):
100 testable.result = Result(self.testable.result.value, reason)
H A Dhandlers.py275 def _display_outcome(self, name, outcome, reason=None):
283 if reason is not None:
286 log.test_log.info(reason)
/gem5/src/cpu/minor/
H A Dpipe_data.hh100 /** Is a request with this reason actually a request to change the
102 static bool isStreamChange(const BranchData::Reason reason);
104 /** Is a request with this reason actually a 'real' branch, that is,
107 static bool isBranch(const BranchData::Reason reason);
111 Reason reason; member in class:Minor::BranchData
128 reason(NoBranch), threadId(InvalidThreadID), newStreamSeqNum(0),
140 reason(reason_),
150 bool isBubble() const { return reason == NoBranch; }
153 bool isStreamChange() const { return isStreamChange(reason); }
156 bool isBranch() const { return isBranch(reason); }
[all...]
H A Dpipe_data.cc46 operator <<(std::ostream &os, BranchData::Reason reason) argument
48 switch (reason)
83 BranchData::isStreamChange(const BranchData::Reason reason) argument
87 switch (reason)
111 BranchData::isBranch(const BranchData::Reason reason) argument
115 switch (reason)
144 os << reason
155 os << branch.reason << " target: 0x"
H A Dexecute.cc239 /* The reason for the branch data we're about to generate, set below */
240 BranchData::Reason reason = BranchData::NoBranch; local
260 reason = BranchData::BadlyPredictedBranch;
270 reason = BranchData::CorrectlyPredictedBranch;
278 reason = BranchData::BadlyPredictedBranchTarget;
285 reason = BranchData::UnpredictedBranch;
288 reason = BranchData::NoBranch;
291 updateBranchData(inst->id.threadId, reason, inst, target, branch);
297 BranchData::Reason reason,
301 if (reason !
295 updateBranchData( ThreadID tid, BranchData::Reason reason, MinorDynInstPtr inst, const TheISA::PCState &target, BranchData &branch) argument
[all...]
H A Dexecute.hh223 void updateBranchData(ThreadID tid, BranchData::Reason reason,
H A Dfetch2.cc134 switch (branch.reason) {
/gem5/tests/configs/
H A Dt1000-simple-atomic.py37 skip_test(reason=str(e))
/gem5/ext/pybind11/tests/
H A Dconftest.py211 pytest.requires_numpy = skipif(not np, reason="numpy is not installed")
212 pytest.requires_scipy = skipif(not np, reason="scipy is not installed")
214 reason="eigen and/or numpy are not installed")
216 not have_eigen or not scipy, reason="eigen and/or scipy are not installed")
217 pytest.unsupported_on_pypy = skipif(pypy, reason="unsupported on PyPy")
219 reason="unsupported on Python 2.x")
H A Dtest_stl.py108 @pytest.mark.skipif(not hasattr(m, "has_optional"), reason='no <optional>')
131 @pytest.mark.skipif(not hasattr(m, "has_exp_optional"), reason='no <experimental/optional>')
152 @pytest.mark.skipif(not hasattr(m, "load_variant"), reason='no <variant>')
H A Dtest_copy_move.py68 @pytest.mark.skipif(not m.has_optional, reason='no <optional>')
H A Dtest_builtin_casters.py112 @pytest.mark.skipif(not hasattr(m, "has_string_view"), reason="no <string_view>")
H A Dtest_virtual_functions.py163 @pytest.mark.skipif(not hasattr(m, "NCVirt"), reason="NCVirt test broken on ICPC")
/gem5/tests/
H A Drun.py54 def skip_test(reason=""):
58 reason -- Reason why the test failed. Output is omitted if empty.
61 if reason:
62 print("Skipping test: %s" % reason)
/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h90 # define PYBIND11_DEPRECATED(reason) [[deprecated(reason)]]
92 # define PYBIND11_DEPRECATED(reason) __attribute__((deprecated(reason)))
680 [[noreturn]] PYBIND11_NOINLINE inline void pybind11_fail(const char *reason) { throw std::runtime_error(reason); } argument
681 [[noreturn]] PYBIND11_NOINLINE inline void pybind11_fail(const std::string &reason) { throw std::runtime_error(reason); } argument
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py121 self.reason = args["Error"]
259 if e.reason == "BadAuthentication":
262 if e.reason == "CaptchaRequired":
268 if e.reason == "NotVerified":
271 if e.reason == "TermsNotAgreed":
274 if e.reason == "AccountDeleted":
277 if e.reason == "AccountDisabled":
280 if e.reason == "ServiceDisabled":
284 if e.reason == "ServiceUnavailable":
/gem5/ext/googletest/googletest/scripts/
H A Dupload.py121 self.reason = args["Error"]
259 if e.reason == "BadAuthentication":
262 if e.reason == "CaptchaRequired":
268 if e.reason == "NotVerified":
271 if e.reason == "TermsNotAgreed":
274 if e.reason == "AccountDeleted":
277 if e.reason == "AccountDisabled":
280 if e.reason == "ServiceDisabled":
284 if e.reason == "ServiceUnavailable":
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h124 virtual void Abort(AbortReason reason) = 0;
/gem5/src/arch/riscv/
H A Dfaults.hh161 const std::string reason; member in class:RiscvISA::IllegalInstFault
H A Dfaults.cc166 tc->pcState().pc(), reason.c_str());
/gem5/src/cpu/o3/
H A Dlsq.hh388 void release(Flag reason) argument
390 assert(reason == Flag::LSQEntryFreed || reason == Flag::Discarded);
397 flags.set(reason);
/gem5/ext/googletest/googletest/src/
H A Dgtest-death-test.cc387 void Abort(AbortReason reason);
481 void DeathTestImpl::Abort(AbortReason reason) { argument
486 reason == TEST_DID_NOT_DIE ? kDeathTestLived :
487 reason == TEST_THREW_EXCEPTION ? kDeathTestThrew : kDeathTestReturned;
/gem5/util/minorview/
H A Dmodel.py179 reason and a new PC"""
184 self.reason = "NoBranch"
191 self.reason, newStreamSeqNum, newPredictionSeqNum, \
/gem5/ext/googletest/googletest/test/
H A Dgtest-death-test_test.cc955 virtual void Abort(AbortReason reason) { argument
956 parent_->abort_args_.push_back(reason);

Completed in 56 milliseconds

12