48,49d47
< #if FULL_SYSTEM
<
58,59d55
< uint64_t writefile(ThreadContext *tc, Addr vaddr, uint64_t len,
< uint64_t offset, Addr filenameAddr);
63,127d58
<
< #else
<
< static inline void
< panicFsOnlyPseudoInst(const char *name)
< {
< panic("Pseudo inst \"%s\" is only available in Full System mode.");
< }
<
< static inline void
< arm(ThreadContext *tc)
< {
< panicFsOnlyPseudoInst("arm");
< }
< static inline void
< quiesce(ThreadContext *tc)
< {
< panicFsOnlyPseudoInst("quiesce");
< }
< static inline void
< quiesceSkip(ThreadContext *tc)
< {
< panicFsOnlyPseudoInst("quiesceSkip");
< }
< static inline void
< quiesceNs(ThreadContext *tc, uint64_t ns)
< {
< panicFsOnlyPseudoInst("quiesceNs");
< }
< static inline void
< quiesceCycles(ThreadContext *tc, uint64_t cycles)
< {
< panicFsOnlyPseudoInst("quiesceCycles");
< }
< static inline uint64_t
< quiesceTime(ThreadContext *tc)
< {
< panicFsOnlyPseudoInst("quiesceTime");
< return 0;
< }
< static inline uint64_t
< readfile(ThreadContext *tc, Addr vaddr, uint64_t len, uint64_t offset)
< {
< panicFsOnlyPseudoInst("readFile");
< return 0;
< }
< static inline void
< loadsymbol(ThreadContext *xc)
< {
< panicFsOnlyPseudoInst("loadSymbol");
< }
< static inline void
< addsymbol(ThreadContext *tc, Addr addr, Addr symbolAddr)
< {
< panicFsOnlyPseudoInst("addSymbol");
< }
< static inline uint64_t
< initParam(ThreadContext *tc)
< {
< panicFsOnlyPseudoInst("initParam");
< return 0;
< }
<
< #endif
<