Avoid a few copies in mwscript

This commit is contained in:
Evil Eye 2024-06-29 10:31:49 +02:00
parent 72b62f845e
commit ad7fb3d13f
3 changed files with 15 additions and 16 deletions

View file

@ -51,7 +51,7 @@ namespace Compiler
}
void Extensions::registerFunction(
const std::string& keyword, ScriptReturn returnType, const ScriptArgs& argumentType, int code, int codeExplicit)
const std::string& keyword, ScriptReturn returnType, ScriptArgs argumentType, int code, int codeExplicit)
{
Function function;
@ -70,18 +70,18 @@ namespace Compiler
int keywordIndex = mNextKeywordIndex--;
mKeywords.insert(std::make_pair(keyword, keywordIndex));
mKeywords.emplace(keyword, keywordIndex);
function.mReturn = returnType;
function.mArguments = argumentType;
function.mArguments = std::move(argumentType);
function.mCode = code;
function.mCodeExplicit = codeExplicit;
mFunctions.insert(std::make_pair(keywordIndex, function));
mFunctions.emplace(keywordIndex, std::move(function));
}
void Extensions::registerInstruction(
const std::string& keyword, const ScriptArgs& argumentType, int code, int codeExplicit)
const std::string& keyword, ScriptArgs argumentType, int code, int codeExplicit)
{
Instruction instruction;
@ -100,13 +100,13 @@ namespace Compiler
int keywordIndex = mNextKeywordIndex--;
mKeywords.insert(std::make_pair(keyword, keywordIndex));
mKeywords.emplace(keyword, keywordIndex);
instruction.mArguments = argumentType;
instruction.mArguments = std::move(argumentType);
instruction.mCode = code;
instruction.mCodeExplicit = codeExplicit;
mInstructions.insert(std::make_pair(keywordIndex, instruction));
mInstructions.emplace(keywordIndex, std::move(instruction));
}
void Extensions::generateFunctionCode(int keyword, std::vector<Interpreter::Type_Code>& code, Literals& literals,