Mentions légales du service

Skip to content
Snippets Groups Projects
  1. May 18, 2020
  2. May 12, 2020
    • Pierre-Yves Péneau's avatar
      cpu: Update NopsSimpleCPU, see commit or README for more details · d7de1c1c
      Pierre-Yves Péneau authored
      You can use two conditions on "noping" an instruction:
      - the number of times you want this instruction to execute normally
      - the number of times you wan to nop this instruction
      
      Both options can be used in a combination, i.e. "wait for 10 normal executions
      and then nop for the next 5 executions". These two options has to be specified
      on the same line of the specific address. Moreover, it has to be in the order
      mentioned ahead, i.e.g. "how many times do we execute normally", then "how many
      times do we nop".
      
      Examples:
      
          Nop instruction at 0xCAFE:
          CAFE
      
          Nop instruction at 0xCAFE after 10 executions:
          CAFE 10
      
          Nop instruction at 0xCAFE after 10 executions for the 5 following
          execution:
          CAFE 10 5
      
          Nop instruction at 0xCAFE only 7 times:
          CAFE 0 7
          In this example, you don't want a normal execution. Hence, the first
          parameter has to be 0
      
      If no option is specified, the CPU nop the instruction every time. If only one
      option is specified, the CPU considers this option as "how many normal
      execution should I do before noping", and then nop every time.
      
      Change-Id: Ic76a397044a3f3c45a84b9a732cc01d4023ced16
      d7de1c1c
  3. Mar 04, 2020
  4. Mar 02, 2020
  5. Feb 18, 2020
  6. Jan 29, 2020
  7. Aug 26, 2014
  8. Sep 25, 2012
  9. Feb 15, 2011
    • Gabe Black's avatar
      Info: Clean up some info files. · 98913897
      Gabe Black authored
      Get rid of RELEASE_NOTES since we no longer do releases, update some of the
      information in README, and update the date in LICENSE.
      98913897
  10. Oct 07, 2008
  11. Feb 26, 2008
  12. Oct 31, 2007
  13. Aug 25, 2006
  14. Aug 16, 2006
  15. Aug 15, 2006
    • Ali Saidi's avatar
      fixes for gcc 4.1 · ed58f77c
      Ali Saidi authored
      Nate needs to fix sinic builder stuff
      Gabe needs to verify my fixes to decoder.isa
      
      OPT/DEBUG compiles for ALPHA_FS, ALPHA_SE, MIPS_SE, SPARC_SE with this changeset
      
      README:
          Fix the swig version in the readme
      src/SConscript:
          remove sinic until nate fixes the builder crap for it
      src/arch/alpha/system.hh:
      src/arch/mips/isa/includes.isa:
      src/arch/sparc/isa/decoder.isa:
      src/base/stats/visit.cc:
      src/base/timebuf.hh:
      src/dev/ide_disk.cc:
      src/dev/sinic.cc:
      src/mem/cache/miss/mshr.cc:
      src/mem/cache/miss/mshr_queue.cc:
      src/mem/packet.hh:
      src/mem/request.hh:
      src/sim/builder.hh:
      src/sim/system.hh:
          fixes for gcc 4.1
      
      --HG--
      extra : convert_revision : 3775427c0047b282574d4831dd602c96cac3ba17
      ed58f77c
    • Steve Reinhardt's avatar
      README: · 65d00083
      Steve Reinhardt authored
      Fix SWIG version number.
      
      README:
          Fix SWIG version number.
      
      --HG--
      extra : convert_revision : 618d6e63d44bc7664dace545d4e35119f52b8407
      65d00083
    • Steve Reinhardt's avatar
      Update release files. · 07488510
      Steve Reinhardt authored
      README:
          Add brief build instructions for the impatient.
          A few minor fixes.
      RELEASE_NOTES:
          Change date; add beta disclaimer.
      
      --HG--
      extra : convert_revision : d31af687c657feb36a2694ef9f0abd67390c7023
      07488510
    • Steve Reinhardt's avatar
      Changes for release. · a04552ce
      Steve Reinhardt authored
      README:
          s/m5.eecs.umich.edu/www.m5sim.org/
          whack mentions of "CD distribution"
      RELEASE_NOTES:
          Set date of 2.0 beta release
          Fix typo
      
      --HG--
      extra : convert_revision : 5baa113a98f89dbf56f60adb4513ca22b63673b1
      a04552ce
  16. Jun 29, 2006
    • Ali Saidi's avatar
      Update the readme to point people to m5.eecs.umich.edu · de90be34
      Ali Saidi authored
      start a new release section in RELEASE_NOTES
      add AUTHORS file that still needs work
      
      README:
          Update the readme to point people to m5.eecs.umich.edu
      RELEASE_NOTES:
          start a new release section
      
      --HG--
      extra : convert_revision : 4c51e4255aecb67b10f18337428e5af114759d2e
      de90be34
  17. Oct 06, 2005
  18. Sep 05, 2005
    • Steve Reinhardt's avatar
      Regression tests now run under scons! · 845bdb0d
      Steve Reinhardt authored
      For example, 'scons ALPHA_SE/test/opt/quick' will build
      ALPHA_SE/m5.opt if necessary and run all the self-identified
      "quick" tests on it.  Other possibilities:
      - Run just test1: scons ALPHA_SE/test/opt/test1
      - Run all tests:  scons ALPHA_SE/test/opt
      - Run all tests on debug build: scons ALPHA_SE/test/debug
      - Update test1 reference outputs in m5-test:
      scons update_ref=y ALPHA_SE/test/opt/test1
      The proper tests will be selected based on the setting
      of FULL_SYSTEM, ALPHA_TLASER, etc.
      
      README:
          Update directions to use scons-based test invocation.
      SConscript:
          Return list of generated build environments to SConstruct
          so it can associate tests with each of them.
          Set 'M5Binary' attribute on each env to record name of
          generated binary to be tested.
      build/SConstruct:
          - Support invoking m5-test tests via scons.
          - Add new non-sticky option category, for 'update_ref'.
          - Move existing "sticky" option definitions out of
          build_dir loop.  Someday we can generate help text
          from these.
          - Make 'CC' and 'CXX' sticky options; use environment vars as
          defaults if available.
          - Make config builder more scons-y.
      python/m5/__init__.py:
          Make AddToPath() correctly handle relative path arguments.
          Assumes that sys.path[0] has the directory where the current
          Python file lives; new m5execfile() function sets this up
          properly for exec'd files.
      
      --HG--
      extra : convert_revision : 48896688592e210d8e63f96c34e57474853d0e66
      845bdb0d
  19. Aug 19, 2005
    • Steve Reinhardt's avatar
      A few minor fixes to get things to build on Cygwin. · 03e256b0
      Steve Reinhardt authored
      README:
          Clarify cygwin EIO error explanation.
      build/SConstruct:
          Cygwin header files cause uninitialized var warnings.
      dev/ide_ctrl.cc:
          Get rid of unnecessary byte-swap calls, some of which were
          too ambiguous for cygwin (or gcc 3.4.4).
      dev/pcidev.cc:
          Disambiguate arg for overloaded byte swap operation
          (and fix it to be the correct one).
      
      --HG--
      extra : convert_revision : be37c6315aacbec6332b1d09e726b39b4aa18dce
      03e256b0
    • Steve Reinhardt's avatar
      Minor tweaks for 1.1 release. · 40696ccd
      Steve Reinhardt authored
      README:
          Updated for release 1.1.  Clarified several minor things (I hope).
      
      --HG--
      extra : convert_revision : a088f670739d33765611ce413b96854a1b51bb0f
      40696ccd
  20. Jun 05, 2005
  21. Jun 02, 2005
    • Steve Reinhardt's avatar
      Rename builds more descriptively: · 9bf0961a
      Steve Reinhardt authored
      ALPHA -> ALPHA_SE (for Syscall Emulation)
      KERNEL -> ALPHA_FS
      KERN_TLASER -> ALPHA_FS_TL
      Also renamed configs/kernel dir to configs/fullsys.
      
      README:
      build/SConstruct:
          Rename builds more descriptively.
      
      --HG--
      extra : convert_revision : f2bffb3ad0fc5068cc7fa20661ed9e4e7bc5b202
      9bf0961a
  22. Jul 28, 2004
    • Ali Saidi's avatar
      updated readme to reflect linux/scons changes · df61a1d3
      Ali Saidi authored
      Put correct date in copyright headers based on bk changesets
      
      LICENSE:
          Updated copyright on license file
      README:
          Updaded readme to reflect shift to scons and linux support
      cpu/trace/reader/ibm_reader.cc:
      cpu/trace/reader/ibm_reader.hh:
      cpu/trace/reader/itx_reader.cc:
      cpu/trace/reader/itx_reader.hh:
      cpu/trace/reader/m5_reader.cc:
      cpu/trace/reader/m5_reader.hh:
      cpu/trace/reader/mem_trace_reader.cc:
      cpu/trace/reader/mem_trace_reader.hh:
      cpu/trace/trace_cpu.cc:
      cpu/trace/trace_cpu.hh:
          updated copyright (only changeset in 2004)
      kern/kernel_stats.cc:
      kern/kernel_stats.hh:
          updated copyright
      
      --HG--
      extra : convert_revision : 726aed4b38ff4d230c63a570df83c63075b3c76f
      df61a1d3
  23. Oct 17, 2003
Loading