42 lines
959 B
C++
42 lines
959 B
C++
|
// vim: set sts=2 ts=8 sw=2 tw=99 et:
|
||
|
//
|
||
|
// Copyright (C) 2006-2015 AlliedModders LLC
|
||
|
//
|
||
|
// This file is part of SourcePawn. SourcePawn is free software: you can
|
||
|
// redistribute it and/or modify it under the terms of the GNU General Public
|
||
|
// License as published by the Free Software Foundation, either version 3 of
|
||
|
// the License, or (at your option) any later version.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License along with
|
||
|
// SourcePawn. If not, see http://www.gnu.org/licenses/.
|
||
|
//
|
||
|
#include "code-stubs.h"
|
||
|
#include "environment.h"
|
||
|
|
||
|
using namespace sp;
|
||
|
|
||
|
CodeStubs::CodeStubs(Environment *env)
|
||
|
: env_(env),
|
||
|
invoke_stub_(nullptr),
|
||
|
return_stub_(nullptr),
|
||
|
timeout_stub_(nullptr)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool
|
||
|
CodeStubs::Initialize()
|
||
|
{
|
||
|
if (!InitializeFeatureDetection())
|
||
|
return false;
|
||
|
if (!CompileInvokeStub())
|
||
|
return false;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
CodeStubs::Shutdown()
|
||
|
{
|
||
|
if (invoke_stub_)
|
||
|
env_->FreeCode(invoke_stub_);
|
||
|
}
|