1. 17 May, 2018 9 commits
  2. 15 Mar, 2018 14 commits
  3. 09 Jan, 2018 1 commit
  4. 18 Sep, 2017 1 commit
  5. 14 Jul, 2017 1 commit
  6. 02 Jul, 2017 1 commit
  7. 03 May, 2017 1 commit
  8. 06 Feb, 2017 1 commit
    • Douglas Raillard's avatar
      Replace some memset call by zeromem · 32f0d3c6
      Douglas Raillard authored
      
      
      Replace all use of memset by zeromem when zeroing moderately-sized
      structure by applying the following transformation:
      memset(x, 0, sizeof(x)) => zeromem(x, sizeof(x))
      
      As the Trusted Firmware is compiled with -ffreestanding, it forbids the
      compiler from using __builtin_memset and forces it to generate calls to
      the slow memset implementation. Zeromem is a near drop in replacement
      for this use case, with a more efficient implementation on both AArch32
      and AArch64.
      
      Change-Id: Ia7f3a90e888b96d056881be09f0b4d65b41aa79e
      Signed-off-by: default avatarDouglas Raillard <douglas.raillard@arm.com>
      32f0d3c6
  9. 16 Nov, 2016 6 commits
  10. 13 Sep, 2016 5 commits