clang: Enable compiling gem5 using clang 2.9 and 3.0
authorKoan-Sin Tan <koansin.tan@gmail.com>
Tue, 31 Jan 2012 17:05:52 +0000 (12:05 -0500)
committerKoan-Sin Tan <koansin.tan@gmail.com>
Tue, 31 Jan 2012 17:05:52 +0000 (12:05 -0500)
commit7d4f18770073d968c70cd3ffcdd117f50a6056a2
treed28ffbee135c6cac0bc89224d2bf7f98224aeb51
parent4590b91fb8842f6a3b823bbc06334132de43d54b
clang: Enable compiling gem5 using clang 2.9 and 3.0

This patch adds the necessary flags to the SConstruct and SConscript
files for compiling using clang 2.9 and later (on Ubuntu et al and OSX
XCode 4.2), and also cleans up a bunch of compiler warnings found by
clang. Most of the warnings are related to hidden virtual functions,
comparisons with unsigneds >= 0, and if-statements with empty
bodies. A number of mismatches between struct and class are also
fixed. clang 2.8 is not working as it has problems with class names
that occur in multiple namespaces (e.g. Statistics in
kernel_stats.hh).

clang has a bug (http://llvm.org/bugs/show_bug.cgi?id=7247) which
causes confusion between the container std::set and the function
Packet::set, and this is currently addressed by not including the
entire namespace std, but rather selecting e.g. "using std::vector" in
the appropriate places.
88 files changed:
SConstruct
ext/libelf/SConscript
src/SConscript
src/arch/alpha/tlb.cc
src/arch/alpha/tlb.hh
src/arch/arm/insts/static_inst.hh
src/arch/arm/insts/vfp.hh
src/arch/arm/isa/templates/basic.isa
src/arch/arm/miscregs.cc
src/arch/generic/memhelpers.hh
src/arch/mips/faults.cc
src/arch/mips/faults.hh
src/arch/x86/bios/acpi.hh
src/arch/x86/bios/intelmp.cc
src/arch/x86/bios/intelmp.hh
src/arch/x86/bios/smbios.hh
src/base/fast_alloc.cc
src/base/range_map.hh
src/base/remote_gdb.hh
src/base/stl_helpers.hh
src/cpu/base.cc
src/cpu/base.hh
src/cpu/func_unit.hh
src/cpu/inorder/cpu.cc
src/cpu/inorder/cpu.hh
src/cpu/inorder/resource.cc
src/cpu/inorder/resource.hh
src/cpu/inorder/resource_pool.cc
src/cpu/inorder/resource_pool.hh
src/cpu/inorder/resources/cache_unit.hh
src/cpu/inorder/thread_context.cc
src/cpu/nativetrace.hh
src/cpu/o3/bpred_unit.hh
src/cpu/o3/commit.hh
src/cpu/o3/cpu.cc
src/cpu/o3/cpu.hh
src/cpu/o3/decode.hh
src/cpu/o3/decode_impl.hh
src/cpu/o3/fetch.hh
src/cpu/o3/fu_pool.cc
src/cpu/o3/fu_pool.hh
src/cpu/o3/iew.hh
src/cpu/o3/iew_impl.hh
src/cpu/o3/inst_queue.hh
src/cpu/o3/inst_queue_impl.hh
src/cpu/o3/lsq.hh
src/cpu/o3/lsq_unit.hh
src/cpu/o3/mem_dep_unit.cc
src/cpu/o3/mem_dep_unit.hh
src/cpu/o3/rename.hh
src/cpu/o3/sat_counter.hh
src/cpu/quiesce_event.hh
src/cpu/sched_list.hh [deleted file]
src/cpu/simple/atomic.cc
src/cpu/simple/atomic.hh
src/cpu/simple/base.cc
src/cpu/simple/base.hh
src/cpu/simple/timing.cc
src/cpu/simple/timing.hh
src/cpu/static_inst.hh
src/dev/alpha/tsunami_cchip.cc
src/dev/alpha/tsunami_io.cc
src/dev/arm/pl111.cc
src/dev/arm/pl111.hh
src/dev/copy_engine.cc
src/dev/disk_image.cc
src/dev/disk_image.hh
src/dev/ide_ctrl.cc
src/dev/ns_gige.cc
src/dev/pciconfigall.cc
src/dev/pcidev.cc
src/mem/cache/base.hh
src/mem/cache/tags/iic.cc
src/mem/cache/tags/iic_repl/gen.cc
src/mem/cache/tags/iic_repl/gen.hh
src/mem/cache/tags/iic_repl/repl.hh
src/mem/packet.hh
src/mem/ruby/network/garnet/fixed-pipeline/GarnetNetwork_d.cc
src/mem/ruby/system/Sequencer.hh
src/python/m5/SimObject.py
src/sim/core.hh
src/sim/process.cc
src/sim/process.hh
src/sim/process_impl.hh
src/sim/serialize.cc
src/sim/sim_object.cc
src/sim/sim_object.hh
src/sim/syscall_emul.hh