arch-mips: Stop "using namespace std"
authorGabe Black <gabe.black@gmail.com>
Thu, 21 Jan 2021 11:17:40 +0000 (03:17 -0800)
committerGabe Black <gabe.black@gmail.com>
Sat, 23 Jan 2021 22:48:05 +0000 (22:48 +0000)
Change-Id: I0ad5ad71d8ba2d7c050d3f368341ce98d3f87a90
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/39559
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
Maintainer: Gabe Black <gabe.black@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
src/arch/mips/dsp.cc
src/arch/mips/isa/formats/branch.isa
src/arch/mips/isa/formats/dsp.isa
src/arch/mips/isa/formats/int.isa
src/arch/mips/isa/formats/util.isa
src/arch/mips/process.cc
src/arch/mips/remote_gdb.cc
src/arch/mips/tlb.cc
src/arch/mips/utility.cc

index 9b0f098f7d53e4017711fc067355bd35d6142312..73babf1f0b520df01d4b91f5c81ce34ee798f458 100644 (file)
@@ -35,7 +35,6 @@
 #include "sim/serialize.hh"
 
 using namespace MipsISA;
-using namespace std;
 
 int32_t
 MipsISA::bitrev(int32_t value)
index 42a0dea38e94f47c3413cdf07542bc7aa562f881..09bab474953aba327318c9e1a90efba6df383fc1 100644 (file)
@@ -34,7 +34,6 @@
 output header {{
 
 #include <iostream>
-    using namespace std;
 
     /**
      * Base class for instructions whose disassembly is not purely a
index 12af2d61fe608ec25d4527a87f3c54773bf9a76d..fc0895677a3581e234bea070aba3a807129aba77 100644 (file)
@@ -32,7 +32,6 @@
 //
 output header {{
 #include <iostream>
-    using namespace std;
     /**
      * Base class for integer operations.
      */
index f47e7289115680f351579b2f459b2461a666ece3..35bbef691d34db4a5eab7833f3d20a6e9e11ddec 100644 (file)
@@ -32,7 +32,6 @@
 //
 output header {{
 #include <iostream>
-    using namespace std;
     /**
      * Base class for integer operations.
      */
index 39ece7a2db9753c13449b7bdb5734f2986b8dd15..3870955157029d93be182bf0208023d509a3b2e5 100644 (file)
@@ -80,7 +80,7 @@ output decoder {{
 
 std::string inst2string(MachInst machInst)
 {
-    string str = "";
+    std::string str = "";
     uint32_t mask = 0x80000000;
 
     for(int i=0; i < 32; i++) {
index 44f4f32378579604a3ebbd3989a39aa556705370..e2f2bb9630e351a9dfa5761308ba6398a6b6363c 100644 (file)
@@ -42,7 +42,6 @@
 #include "sim/syscall_return.hh"
 #include "sim/system.hh"
 
-using namespace std;
 using namespace MipsISA;
 
 MipsProcess::MipsProcess(const ProcessParams &params,
@@ -68,9 +67,9 @@ MipsProcess::MipsProcess(const ProcessParams &params,
     // Set up region for mmaps.  Start it 1GB above the top of the heap.
     Addr mmap_end = brk_point + 0x40000000L;
 
-    memState = make_shared<MemState>(this, brk_point, stack_base,
-                                     max_stack_size, next_thread_stack_base,
-                                     mmap_end);
+    memState = std::make_shared<MemState>(
+            this, brk_point, stack_base, max_stack_size,
+            next_thread_stack_base, mmap_end);
 }
 
 void
@@ -126,7 +125,7 @@ MipsProcess::argsInit(int pageSize)
     int auxv_array_size = intSize * 2 * (auxv.size() + 1);
 
     int arg_data_size = 0;
-    for (vector<string>::size_type i = 0; i < argv.size(); ++i) {
+    for (std::vector<std::string>::size_type i = 0; i < argv.size(); ++i) {
         arg_data_size += argv[i].size() + 1;
     }
 
@@ -134,7 +133,7 @@ MipsProcess::argsInit(int pageSize)
     int aux_data_size = numRandomBytes;
 
     int env_data_size = 0;
-    for (vector<string>::size_type i = 0; i < envp.size(); ++i) {
+    for (std::vector<std::string>::size_type i = 0; i < envp.size(); ++i) {
         env_data_size += envp[i].size() + 1;
     }
 
index bd9a40f68646987f4c2b6ed39fe938ff97247489..9d7179231cdb51f64f341934096eb904ff949c89 100644 (file)
 #include "mem/page_table.hh"
 #include "sim/full_system.hh"
 
-using namespace std;
 using namespace MipsISA;
 
 RemoteGDB::RemoteGDB(System *_system, ThreadContext *tc, int _port)
index 3ceb1ae14970bf68596ede94f041b564accf83d2..5373ba9a15ce3f639e3e16e98fc1b602dbb68747 100644 (file)
@@ -46,7 +46,6 @@
 #include "params/MipsTLB.hh"
 #include "sim/process.hh"
 
-using namespace std;
 using namespace MipsISA;
 
 ///////////////////////////////////////////////////////////////////////
@@ -169,7 +168,7 @@ TLB::insertAt(PTE &pte, unsigned Index, int _smallPages)
         }
         table[Index]=pte;
         // Update fast lookup table
-        lookupTable.insert(make_pair(table[Index].VPN, Index));
+        lookupTable.insert(std::make_pair(table[Index].VPN, Index));
     }
 }
 
@@ -211,7 +210,7 @@ TLB::unserialize(CheckpointIn &cp)
         ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
         table[i].unserialize(cp);
         if (table[i].V0 || table[i].V1) {
-            lookupTable.insert(make_pair(table[i].VPN, i));
+            lookupTable.insert(std::make_pair(table[i].VPN, i));
         }
     }
 }
index 930c36bcf7df04bb74d42717564e41956e9820a3..db4e110d1bd509713d7e60e158057532ec3b5434 100644 (file)
@@ -39,7 +39,6 @@
 #include "sim/serialize.hh"
 
 using namespace MipsISA;
-using namespace std;
 
 namespace MipsISA {