Edit

kc3-lang/angle/src/compiler/translator/InitializeDll.cpp

Branch :

  • Show log

    Commit

  • Author : Dmitry Skiba
    Date : 2015-07-10 14:54:00
    Hash : 01971113
    Message : Cache TTypes. *re-land with build fix for Win/Release* This change saves us ~70KiB per compiler with just ~3KiB of cache. BUG=492725 Change-Id: I4382c55b2480f70b00c5d117fcb7e0c51d0dfbb4 Reviewed-on: https://chromium-review.googlesource.com/284735 Tested-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Dmitry Skiba <dskiba@google.com> Reviewed-by: Alexis Hétu <sugoi@chromium.org>

  • src/compiler/translator/InitializeDll.cpp
  • //
    // Copyright (c) 2002-2010 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.
    //
    
    #include "compiler/translator/Cache.h"
    #include "compiler/translator/InitializeDll.h"
    #include "compiler/translator/InitializeGlobals.h"
    #include "compiler/translator/InitializeParseContext.h"
    
    #include "common/platform.h"
    
    #include <assert.h>
    
    bool InitProcess()
    {
        if (!InitializePoolIndex()) {
            assert(0 && "InitProcess(): Failed to initalize global pool");
            return false;
        }
    
        if (!InitializeParseContextIndex()) {
            assert(0 && "InitProcess(): Failed to initalize parse context");
            return false;
        }
    
        TCache::initialize();
    
        return true;
    }
    
    void DetachProcess()
    {
        FreeParseContextIndex();
        FreePoolIndex();
        TCache::destroy();
    }