x86: Some small style fixes in arch/x86/process.hh.
authorGabe Black <gabe.black@gmail.com>
Sun, 13 Dec 2020 10:57:02 +0000 (02:57 -0800)
committerGabe Black <gabe.black@gmail.com>
Wed, 16 Dec 2020 00:47:58 +0000 (00:47 +0000)
Moved two single line functions to be all on one line, and added some
consts.

Change-Id: Iecfa3a9c2bde69ce2f26e9531864a7cb92b0a1df
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/38489
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/arch/x86/process.hh

index 7288aae0524ef827dce5543d072b8d81e87ceb33..184d0ba0476a9db49a0e40ce8382d15345d76541 100644 (file)
@@ -68,11 +68,8 @@ namespace X86ISA
                       std::vector<AuxVector<IntType> > extraAuxvs);
 
       public:
-        Addr gdtStart()
-        { return _gdtStart; }
-
-        Addr gdtSize()
-        { return _gdtSize; }
+        Addr gdtStart() const { return _gdtStart; }
+        Addr gdtSize() const { return _gdtSize; }
 
         void clone(ThreadContext *old_tc, ThreadContext *new_tc,
                    Process *process, RegVal flags) override;
@@ -159,7 +156,7 @@ namespace X86ISA
         I386Process(const ProcessParams &params,
                     ::Loader::ObjectFile *objFile);
 
-        const VSyscallPage &getVSyscallPage() { return vsyscallPage; }
+        const VSyscallPage &getVSyscallPage() const { return vsyscallPage; }
 
         void argsInit(int pageSize);
         void initState() override;