aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jit
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2018-09-11 11:07:32 +0200
committerLars Knoll <lars.knoll@qt.io>2018-09-17 07:47:09 +0000
commit1dac47c1418b44cf4a56b42bfca2b277795fd213 (patch)
tree26727943c30628340662a66d7cbe9f52d75c5b58 /src/qml/jit
parentd89d5cffe79bd060a1b04a2c47a3d728bffbe195 (diff)
Cleanups in Value/Primitive
Get rid of Primitive and move the corresponding methods directly into Value. Mark many methods in Value as constexpr and turn Value into a POD type again. Keep Primitive as a pure alias to Value for source compatibility of other modules that might be using it. Change-Id: Icb47458947dd3482c8852e95782123ea4346f5ec Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jit')
-rw-r--r--src/qml/jit/qv4baselineassembler.cpp10
-rw-r--r--src/qml/jit/qv4baselinejit.cpp2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/qml/jit/qv4baselineassembler.cpp b/src/qml/jit/qv4baselineassembler.cpp
index c822a0f371..ce71dbdb5e 100644
--- a/src/qml/jit/qv4baselineassembler.cpp
+++ b/src/qml/jit/qv4baselineassembler.cpp
@@ -170,12 +170,12 @@ public:
Jump jumpEmpty()
{
- return branch64(Equal, AccumulatorRegister, TrustedImm64(Primitive::emptyValue().asReturnedValue()));
+ return branch64(Equal, AccumulatorRegister, TrustedImm64(Value::emptyValue().asReturnedValue()));
}
Jump jumpNotEmpty()
{
- return branch64(NotEqual, AccumulatorRegister, TrustedImm64(Primitive::emptyValue().asReturnedValue()));
+ return branch64(NotEqual, AccumulatorRegister, TrustedImm64(Value::emptyValue().asReturnedValue()));
}
void toBoolean(std::function<void(RegisterID)> continuation)
@@ -637,12 +637,12 @@ public:
Jump jumpEmpty()
{
- return branch32(Equal, AccumulatorRegisterTag, TrustedImm32(Primitive::emptyValue().asReturnedValue() >> 32));
+ return branch32(Equal, AccumulatorRegisterTag, TrustedImm32(Value::emptyValue().asReturnedValue() >> 32));
}
Jump jumpNotEmpty()
{
- return branch32(NotEqual, AccumulatorRegisterTag, TrustedImm32(Primitive::emptyValue().asReturnedValue() >> 32));
+ return branch32(NotEqual, AccumulatorRegisterTag, TrustedImm32(Value::emptyValue().asReturnedValue() >> 32));
}
void toBoolean(std::function<void(RegisterID)> continuation)
@@ -1476,7 +1476,7 @@ void BaselineAssembler::getException()
pasm()->store8(TrustedImm32(0), hasExceptionAddr);
auto done = pasm()->jump();
nope.link(pasm());
- pasm()->loadValue(Primitive::emptyValue().asReturnedValue());
+ pasm()->loadValue(Value::emptyValue().asReturnedValue());
done.link(pasm());
}
diff --git a/src/qml/jit/qv4baselinejit.cpp b/src/qml/jit/qv4baselinejit.cpp
index f8be5fb140..7b4f2b00e7 100644
--- a/src/qml/jit/qv4baselinejit.cpp
+++ b/src/qml/jit/qv4baselinejit.cpp
@@ -970,7 +970,7 @@ void BaselineJIT::generate_LoadQmlImportedScripts(int result)
void BaselineJIT::generate_InitializeBlockDeadTemporalZone(int firstReg, int count)
{
- as->loadValue(Primitive::emptyValue().rawValue());
+ as->loadValue(Value::emptyValue().rawValue());
for (int i = firstReg, end = firstReg + count; i < end; ++i)
as->storeReg(i);
}