Searched refs:stage2 (Results 1 - 12 of 12) sorted by relevance

/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.1/
H A Dstage2.h22 stage2.h --
38 /* Filename stage2.h */
39 /* This is the interface file for synchronous process `stage2' */
43 SC_MODULE( stage2 )
45 SC_HAS_PROCESS( stage2 );
55 stage2(sc_module_name NAME, function
H A Dstage2.cpp22 stage2.cpp --
38 /* Filename stage2.cc */
39 /* This is the implementation file for synchronous process `stage2' */
41 #include "stage2.h"
43 void stage2::entry()
H A Dmain.cpp41 #include "stage2.h"
61 stage2 S2("Stage2", clk, sum, diff, prod, quot);
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.2/
H A Dstage2.h22 stage2.h --
38 /* Filename stage2.h */
39 /* This is the interface file for synchronous process `stage2' */
43 SC_MODULE( stage2 )
45 SC_HAS_PROCESS( stage2 );
55 stage2(sc_module_name NAME, function
H A Dstage2.cpp22 stage2.cpp --
38 /* Filename stage2.cc */
39 /* This is the implementation file for synchronous process `stage2' */
41 #include "stage2.h"
43 void stage2::entry()
H A Dstage1_2.h48 stage2 S2; // component
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.4/
H A Dstage2.h22 stage2.h --
38 /* Filename stage2.h */
39 /* This is the interface file for synchronous process `stage2' */
43 SC_MODULE( stage2 )
45 SC_HAS_PROCESS( stage2 );
55 stage2(sc_module_name NAME, function
H A Dstage2.cpp22 stage2.cpp --
38 /* Filename stage2.cc */
39 /* This is the implementation file for synchronous process `stage2' */
41 #include "stage2.h"
44 void stage2::entry()
66 SC_NEW(stage2(NAME, CLK, SUM, DIFF, PROD, QUOT));
/gem5/src/dev/arm/
H A Dsmmu_v3_ptops.hh53 virtual bool isWritable(pte_t pte, unsigned level, bool stage2) const = 0;
66 bool isWritable(pte_t pte, unsigned level, bool stage2) const override;
79 bool isWritable(pte_t pte, unsigned level, bool stage2) const override;
92 bool isWritable(pte_t pte, unsigned level, bool stage2) const override;
105 bool isWritable(pte_t pte, unsigned level, bool stage2) const override;
H A Dsmmu_v3_ptops.cc68 V7LPageTableOps::isWritable(pte_t pte, unsigned level, bool stage2) const
70 return stage2 ? bits(pte, 7, 6)==3 : bits(pte, 7)==0;
161 V8PageTableOps4k::isWritable(pte_t pte, unsigned level, bool stage2) const
163 return stage2 ? bits(pte, 7, 6)==3 : bits(pte, 7)==0;
259 V8PageTableOps16k::isWritable(pte_t pte, unsigned level, bool stage2) const
261 return stage2 ? bits(pte, 7, 6) == 3 : bits(pte, 7) == 0;
358 V8PageTableOps64k::isWritable(pte_t pte, unsigned level, bool stage2) const
360 return stage2 ? bits(pte, 7, 6)==3 : bits(pte, 7)==0;
/gem5/src/arch/arm/
H A Dfaults.hh428 bool stage2; member in class:ArmISA::AbortFault
438 stage2(_stage2), s1ptw(false), tranMethod(_tranMethod)
450 bool isStage2() const override { return stage2; }
H A Dfaults.cc1087 } else if (stage2) {
1099 if (stage2) {
1238 va = (stage2 ? OVAddr : faultAddr);
1292 toHyp |= (stage2 ||
1353 toHyp |= (stage2 ||
1374 if (!s1ptw && stage2 && (!to64 || toEL == EL2)) {

Completed in 24 milliseconds