summaryrefslogtreecommitdiff
path: root/src/qml/compiler/qv4isel_masm.cpp
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@me.com>2013-09-24 11:42:03 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-28 23:56:53 +0200
commite4c696dda3610a7c6e34bf705656d90babc9d461 (patch)
tree09617040cba956f8ec3874ec64762fa08dbe856d /src/qml/compiler/qv4isel_masm.cpp
parent342831427beb0f3a48061453df89624ba2d7c886 (diff)
downloadqtdeclarative-e4c696dda3610a7c6e34bf705656d90babc9d461.tar.gz
V4 JIT: optimize mem2mem copies.
Instead of loading and decoding a value and then encoding and storing it, we can just as well fold that into a load+store. Change-Id: I84c8eb310510a91cefe2cbc0d4bb01856b41663d Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/compiler/qv4isel_masm.cpp')
-rw-r--r--src/qml/compiler/qv4isel_masm.cpp17
1 files changed, 13 insertions, 4 deletions
diff --git a/src/qml/compiler/qv4isel_masm.cpp b/src/qml/compiler/qv4isel_masm.cpp
index 33c2279c2d..3f3c47d804 100644
--- a/src/qml/compiler/qv4isel_masm.cpp
+++ b/src/qml/compiler/qv4isel_masm.cpp
@@ -358,7 +358,6 @@ void Assembler::copyValue(Result result, V4IR::Expr* source)
}
}
-
void Assembler::storeValue(QV4::Value value, V4IR::Temp* destination)
{
Address addr = loadTempAddress(ScratchRegister, destination);
@@ -1128,7 +1127,9 @@ void InstructionSelection::copyValue(V4IR::Temp *sourceTemp, V4IR::Temp *targetT
}
}
- _as->copyValue(targetTemp, sourceTemp);
+ // The target is not a physical register, nor is the source. So we can do a memory-to-memory copy:
+ _as->memcopyValue(_as->loadTempAddress(Assembler::ReturnValueRegister, targetTemp), sourceTemp,
+ Assembler::ScratchRegister);
}
void InstructionSelection::swapValues(V4IR::Temp *sourceTemp, V4IR::Temp *targetTemp)
@@ -1910,7 +1911,11 @@ int InstructionSelection::prepareVariableArguments(V4IR::ExprList* args)
for (V4IR::ExprList *it = args; it; it = it->next, ++i) {
V4IR::Expr *arg = it->expr;
Q_ASSERT(arg != 0);
- _as->copyValue(_as->stackLayout().argumentAddressForCall(i), arg);
+ Pointer dst(_as->stackLayout().argumentAddressForCall(i));
+ if (arg->asTemp() && arg->asTemp()->kind != V4IR::Temp::PhysicalRegister)
+ _as->memcopyValue(dst, arg->asTemp(), Assembler::ScratchRegister);
+ else
+ _as->copyValue(dst, arg);
}
return argc;
@@ -1937,7 +1942,11 @@ int InstructionSelection::prepareCallData(V4IR::ExprList* args, V4IR::Expr *this
for (V4IR::ExprList *it = args; it; it = it->next, ++i) {
V4IR::Expr *arg = it->expr;
Q_ASSERT(arg != 0);
- _as->copyValue(_as->stackLayout().argumentAddressForCall(i), arg);
+ Pointer dst(_as->stackLayout().argumentAddressForCall(i));
+ if (arg->asTemp() && arg->asTemp()->kind != V4IR::Temp::PhysicalRegister)
+ _as->memcopyValue(dst, arg->asTemp(), Assembler::ScratchRegister);
+ else
+ _as->copyValue(dst, arg);
}
return argc;
}