Edit

kc3-lang/angle/src/tests/perf_tests/BitSetIteratorPerf.cpp

Branch :

  • Show log

    Commit

  • Author : Yuly Novikov
    Date : 2017-10-25 17:02:29
    Hash : c4f1dd83
    Message : Use angle::BitSetIterator optimizations on arm64 as well Previously were enabled only on x86_64. Also change from using target_cpu to current_cpu, as the doc recommends. BUG=angleproject:1814 Change-Id: Ia7e8e930c76aab5cfb47b75e0ec78902ab313237 Reviewed-on: https://chromium-review.googlesource.com/737438 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>

  • src/tests/perf_tests/BitSetIteratorPerf.cpp
  • //
    // Copyright 2015 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    // IndexDataManagerPerfTest:
    //   Performance test for index buffer management.
    //
    
    #include "ANGLEPerfTest.h"
    
    #include <gmock/gmock.h>
    
    #include "angle_unittests_utils.h"
    #include "common/bitset_utils.h"
    
    using namespace testing;
    
    namespace
    {
    
    template <typename T>
    class BitSetIteratorPerfTest : public ANGLEPerfTest
    {
      public:
        BitSetIteratorPerfTest();
    
        void step() override;
    
        T mBits;
    };
    
    template <typename T>
    BitSetIteratorPerfTest<T>::BitSetIteratorPerfTest() : ANGLEPerfTest("BitSetIteratorPerf", "_run")
    {
    }
    
    template <typename T>
    void BitSetIteratorPerfTest<T>::step()
    {
        mBits.flip();
    
        for (size_t bit : mBits)
        {
            UNUSED_VARIABLE(bit);
        }
    
        mBits.reset();
    }
    
    // These type names unfortunately don't get printed correctly in Gtest.
    #if defined(ANGLE_IS_64_BIT_CPU)
    using TestTypes = Types<angle::IterableBitSet<32>, angle::BitSet32<32>, angle::BitSet64<32>>;
    #else
    using TestTypes = Types<angle::IterableBitSet<32>, angle::BitSet32<32>>;
    #endif  // defined(ANGLE_IS_64_BIT_CPU)
    TYPED_TEST_CASE(BitSetIteratorPerfTest, TestTypes);
    
    TYPED_TEST(BitSetIteratorPerfTest, Run)
    {
        this->run();
    }
    
    }  // anonymous namespace