1. 27 Apr, 2017 3 commits
  2. 24 Apr, 2017 1 commit
  3. 21 Apr, 2017 1 commit
  4. 18 Apr, 2017 4 commits
    • fix android compilation (#372) · 09b93ccc
      Dmitry Trifonov authored
      * fix android compilation
      
      * checking __GLIBCXX__ and __GLIBCPP__ macro in addition to __ANDROID__
      
      * using vsnprintf instead of std::vsnprintf to compile on Android
      
      * removed __GLIBCPP__ check on Android
      
      * StringPrintF instead of std::to_string for Android
    • Don't limit benchmarks with manual timers to 5x the elapsed real time. · 46afd8e6
      Eric Fiselier authored
      When using CPU time to determine the correct number of iterations the
      library additionally checks if the benchmark has consumed 5x the minimum
      required time according to the wall clock. This prevents benchmarks
      with low CPU usage from running for much longer than actually intended.
      
      However when a benchmark uses a manual timer this heuristic isn't helpful
      and likely isn't correct since we don't know what the manual timer actually
      measures.
      
      This patch removes the above restriction when a benchmark specifies a manual
      timer.
    • Add Benchmark::Iterations for explicit iteration count control - Fixes #370 (#373) · 74b24058
      Eric authored
      * Add Benchmark::Iterations for explicitly specifying the number of iterations to use.
      
      * Document that benchmark::Iterations should not be used to limit benchmark runtimes
    • Enable <cassert> by removing -DNDEBUG when running the tests. · 7f87c98d
      Eric Fiselier authored
      In non-debug builds CMake automatically adds -DNDEBUG, this means
      that uses of `assert` in the tests are disabled for non-debug builds.
      Obviously we want these tests to run, regardless of configuration.
      
      This patch strips -DNDEBUG during non-debug builds and adds
      -UNDEBUG just to be sure.
  5. 10 Apr, 2017 1 commit
  6. 06 Apr, 2017 1 commit
  7. 04 Apr, 2017 5 commits
  8. 02 Apr, 2017 1 commit
    • Add CMake Package Config files during install · 824bbb81
      Giuseppe Roberti authored
      - Remove target_include_directories of ${PROJECT_SOURCE_DIR}/include to
        fix error: Target "benchmark" INTERFACE_INCLUDE_DIRECTORIES property
        contains path which is prefixed in the source directory.
  9. 01 Apr, 2017 1 commit
  10. 29 Mar, 2017 1 commit
  11. 28 Mar, 2017 4 commits
    • Add BENCHMARK_BUILD_32_BITS option and add builders to test it (#360) · 0dbcdf56
      Eric authored
      * Add BENCHMARK_BUILD_32_BITS option and add builders to test it
      
      * Attempt to fix travis configuration
      
      * Make add_required_cxx_compiler_flag cause an error when the flag isn't supported
      
      * add gcc-multilib dependancy on travis
      
      * attempt to fix travis.yml parsing error
      
      * Require g++-multilib instead of gcc-multilib
      
      * Add 32 bit release configurations
      
      * Attempt to fix libc++ travis build w/ 32 bits
      
      * Work around CMake configuration failure on Travis
    • Fix CPU frequency parsing on Linux (#355) (#356) · ec15860d
      MVafin authored
      * Fix reading CPU info from file
      
      Macro CHECK do nothing for release mode, meaning it doesn't invoke the
      arguments
      
      * Add myself to AUTHORS and CONTRIBUTORS
    • Replace int64_t usages with 'int' instead. (#359) · 94c512c0
      Eric authored
      Previously the constants used for converting between
      different units of time were declared using int64_t. However
      we should only use explicitly sized integer types when they
      are required, and should use 'int' everwhere else, and there is
      no good reason to use int64_t here.
      
      For that reason this patch changes the type of the constants.
      This should help address issue #354 as well.
    • Fix ICC compiler warnings (#358) · 9b92ed76
      rolandschulz authored
      fixes #354
      
      The build fails with ICC17 because of warnings and Werror. What is the correct solution to fix it?
      Should a patch
      
      disable Werror for ICC (or maybe all non known compilers)
      disable the false postive warnings for all files. This could be done using:
      add_cxx_compiler_flag(-wd2102) #ICC17u2: Many false positives for Wstrict-aliasing
      add_cxx_compiler_flag(-wd2259) #ICC17u2: non-pointer conversion from "long" to "int" may lose significant bits (even for explicit static cast, sleep.cc(44))
      add_cxx_compiler_flag(-wd654) #ICC17u2: overloaded virtual function "benchmark::Fixture::SetUp" is only partially overridden (because of deprecated overload)
      disable warnings at file level or some other granularity
  12. 14 Mar, 2017 1 commit
  13. 11 Mar, 2017 2 commits
    • Implement ClobberMemory() and fix DoNotOptimize on MSVC. (#352) · f682f7e9
      Eric authored
      I recently learned Windows provides a function called _ReadWriteBarrier
      which is literally ClobberMemory under a different name. This patch
      uses it to implement ClobberMemory under MSVC.
    • Fix std::string detection hack for SetLabel. · 8ae6448c
      Eric Fiselier authored
      Previously benchmark_api.h wasn't allowed to include standard library
      headers. For this reason SetLabel had a hack to accept std::string
      without including <string>. The hack worked by attempting to detect
      the injected class name `basic_string`. However Clang has changed
      it's behavior regarding injected class names so this hack no longer
      works.
      
      This patch removes the hack and replaces it with a function that
      actually names std::string. However we still cannot pass std::string
      across the dylib boundary because of libstdc++'s dual C++11 ABI.
  14. 02 Mar, 2017 2 commits
    • Rename BenchmarkCounters to UserCounters (#346) · 9e346556
      jpmag authored
      The name UserCounters seems more accurate than the pleonastic BenchmarkCounters.
    • Add user-defined counters. (#262) · a9a66c85
      jpmag authored
      * Added user counters, and move use of bytes_processed and items_processed to user counter logic.
      
      Each counter is a string-value pair. The counters were
      made available through the State class. Two helper virtual
      methods were added to the Fixture class to allow convenient
      initialization and termination of the counters: InitState()
      and TerminateState(). The reporting of the counters is buggy
      and is still a work in progress, to be completed in the next commits.
      
      * fix bad removal of BenchmarkCounters code during the merge
      
      * add myself to AUTHORS/CONTRIBUTORS
      
      * fix printing to std::cout in csv_reporter
      
      * bytes_per_second and items_per_second are now in the UserCounters class
      
      * add user counters to json reporter
      
      * moving bytes_per_second and items_per_second to their old state
      
      * console reporter dealing ok with user counters.
      
      * update unit tests for user counters
      
      * CSVReporter now prints user counters too.
      
      * cleanup user counters
      
      * reverted changes to cmake files which should have gone into later commits
      
      * fixture_test: fix gcc 4.6 compilation
      
      * remove ctor with default argument
      
      see https://github.com/google/benchmark/pull/262#discussion_r72298055
      
      * use (auto-defined) BENCHMARK_HAS_CXX11 instead of BENCHMARK_INITLIST.
      
      https://github.com/google/benchmark/pull/262#discussion_r72298310
      
      * leanify counters API
      
      Discussions:
      API complexity: https://github.com/google/benchmark/pull/262#discussion_r72298731
      remove std::string dependency (WIP): https://github.com/google/benchmark/pull/262#discussion_r72298142
      spacing & alignment: https://github.com/google/benchmark/pull/262#discussion_r72298422
      
      * remove std::string dependency on public API - changed counter name storage to char*
      
      * Counter ctor: use overloads instead of default arguments
      
      discussion:
      https://github.com/google/benchmark/pull/262#discussion_r72298055
      
      * Use raw pointers to remove dependency on std::vector from public API .
      
      For more info, see discussion at https://github.com/google/benchmark/pull/262#discussion_r72319678 .
      
      * Move counter implementation from benchmark.cc to counter.cc.
      
          See discussion: https://github.com/google/benchmark/pull/262#discussion_r72298980 .
      
      * Remove unused (commented-out) code.
      
      * Moved thread counters to ThreadStats.
      
      * Counters: fixed copy and move constructors.
      
      * Counter: use an inplace buffer for small names.
      
      * benchmark_test: move counters test out of CXX11 preprocessor conditional.
      
      * Counter: fix VS2013 compilation error in char[] initialization.
      
      * Fix typo.
      
      * Expose counters from State.
      
      See discussion: https://github.com/google/benchmark/pull/262#issuecomment-237156951
      
      * Changed counters interface to map-like.
      
      * Fix printing of user counters in ConsoleReporter.
      
      * Applied clang-format to counter.cc and console_reporter.cc.
      
      Command was `clang-format -style=Google -i counter.cc console_reporter.cc`
      I also applied to all other files, but the changes were very
      far-reaching so I rolled those back.
      
      * Rename Counter::Flags_e to Counter::Flags
      
      * Fix use of reserved names in Counter and BenchmarkCounters.
      
      * Counter: Fix move ctor bug + change order of members.
      
      * Fixture: remove tentative methods InitState() and TerminateState().
      
      * Update fixture_test to the new Fixture interface.
      
      * BenchmarkCounters: fixed a bug in the move ctor. Remove call to CHECK_LT().
      
      CHECK_LT() was making the size_t lookup take ~double the time of a string lookup!
      
      * BenchmarkCounters: add option to not print zero counters (defaults to false).
      
      * Add test to compare counter storage and access with std::map.
      
      * README: clarify cost of counter access modes.
      
      * move counter access test to an own test.
      
      * BenchmarkCounters: add move Insert()
      
      * Counters access test: add accelerated lookup by name.
      
      * Fix old range syntax.
      
      * Fix missing include of cstdio
      
      * Fix Visual Studio warning
      
      * VS2013 and lower: fix use of snprintf()
      
      * VS2013: fix use of char[] as a member of std::pair<>.
      
      * change counter storage to std::map
      
      * Remove skipZeroCounters logic
      
      * Fix VS compilation error.
      
      * Implemented request changes to PR #262.
      
      * PR #262: More requested changes.
      
      * README: cleanup counter text.
      
      * PR #262: remove clang-format changes for preexisting code
      
      * Complexity+Counters: fix counter flags which were being ignored.
      
      * Document all Counter::Flag members
      
      * fixed loss of counter values
      
      * ConsoleReporter: remove tabular printing of user counters.
      
      * ConsoleReporter: header printing should not be contingent on user counter names.
      
      * Minor white space and alignment fixes.
      
      * cxx03_test + counters: reuse the BM_empty() function.
      
      * user counters: add note to README on how counters are gathered across threads
  15. 11 Feb, 2017 1 commit
    • Support for Web platforms (#340) · 070c0ca0
      Marat Dukhan authored
      * Implement cycleclock::Now for PNaCl
      
      * Make cycleclock::Now compatible with NaCl/ARM
      
      * Support Emscripten (Asm.js, WebAssembly)
      
      * Rearrange #ifs from to handle specific cases first
      
      * DoNotOptimize without inline asm for Emscripten & PNaCl
  16. 30 Jan, 2017 1 commit
  17. 24 Jan, 2017 1 commit
    • Disable iOS CPU Frequency readout (#335) · 246ee864
      Matt Sieren authored
      * Add macro definition for iOS
      
      Add an additional macro definition for iOS.
      iOS is defined as a Mac OSX invariant in the TargetConditionals include,
      thus we treat it as a subset of OSX within the defines.
      
      * Skip error for hw.cpufrequency on iOS
      
      hw.cpufrequency is not available on iOS devices. As there is no way to reliably
      retrieve the CPU frequency on iOS we are printing out a warning
      that we were unable to detect the CPU frequency and set it to 0.
      
      This only disables cpu frequency readouts on actual physical iOS devices.
      Running this code on the simulator still gives the cpu architecture of
      the host computer as the simulator passes down the sysctl calls to OSX.
  18. 18 Jan, 2017 1 commit
    • Report unrecognized arguments from BENCHMARK_MAIN() macro (#332) · 817bfee2
      Niklas Rosenstein authored
      * BENCHMARK_MAIN() now reports unrecognised command-line flags (see google/benchmark#320)
      
      * add benchmark::ReportUnrecognizedArguments()
      
      Update BENCHMARK_MAIN() to use ReportUnrecognizedArguments() instead of
      having the reporting code directly in the macro.
      
      See issue google/benchmark#320 for reference
      
      * let's stick to american english -- fix type in ReportUnrecognizedArguments()
      
      * make ReportUnrecognizedArguments() print to stderr
      
      * make ReportUnrecognizedArguments() return true if any arguments have been reported (i.e. argc > 1)
  19. 13 Jan, 2017 2 commits
    • HumanReadableNumber(): Simplify output for simple numbers. Examples: (#291) · b4fdf6e9
      jpmag authored
      * HumanReadableNumber(): Simplify output for simple numbers. Examples:
      
      HumanReadableNumber(    0.0)=      0    ---->         0
      HumanReadableNumber(    0.5)=   512m    ---->       0.5
      HumanReadableNumber(    0.9)= 921.6m    ---->       0.9
      HumanReadableNumber(    1.0)=  1024m    ---->         1
      HumanReadableNumber(   1.05)=1075.2m    ---->      1.05
      HumanReadableNumber(    1.1)=    1.1    ---->       1.1
      HumanReadableNumber(    1.2)=    1.2    ---->       1.2
      HumanReadableNumber( 0.0e-1)=      0    ---->         0
      HumanReadableNumber( 0.5e-1)=  51.2m    ---->      0.05
      HumanReadableNumber( 0.9e-1)= 92.16m    ---->      0.09
      HumanReadableNumber( 1.0e-1)= 102.4m    ---->       0.1
      HumanReadableNumber(1.05e-1)=107.52m    ---->     0.105
      HumanReadableNumber( 1.1e-1)=112.64m    ---->      0.11
      HumanReadableNumber( 1.2e-1)=122.88m    ---->      0.12
      HumanReadableNumber( 0.0e-3)=      0    ---->         0
      HumanReadableNumber( 0.5e-3)=524.288u   ---->   524.288u
      HumanReadableNumber( 0.9e-3)=943.718u   ---->   943.718u
      HumanReadableNumber( 1.0e-3)=1048.58u   ---->   1048.58u
      HumanReadableNumber(1.05e-3)=  1101u    ---->   0.00105
      HumanReadableNumber( 1.1e-3)=1.1264m    ---->    0.0011
      HumanReadableNumber( 1.2e-3)=1.2288m    ---->    0.0012
      
      * HumanReadableNumber(): change simple printing threshold to 0.01.
      
      * ToExponentAndMantissa(): refactor branch sequence.
    • Fix librt linking on systems which has it (#331) · 34010bee
      Alt authored
  20. 20 Dec, 2016 1 commit
    • Issue 327 (#328) · 4bf28e61
      BRevzin authored
      Arguments shouldn't be AppendHumanReadable()-ed, they should just be shown as-is.
  21. 09 Dec, 2016 1 commit
  22. 06 Dec, 2016 1 commit
  23. 05 Dec, 2016 2 commits
  24. 03 Dec, 2016 1 commit