Chromium Code Reviews| Index: src/IceAssemblerARM32.h |
| diff --git a/src/IceAssemblerARM32.h b/src/IceAssemblerARM32.h |
| index f81fd6d5f5fe2ec37c7cbe3106941f22bc0a2fbf..7a9b06773e9926267418216b42e5dc9b6edde2e4 100644 |
| --- a/src/IceAssemblerARM32.h |
| +++ b/src/IceAssemblerARM32.h |
| @@ -324,6 +324,14 @@ public: |
| void vadds(const Operand *OpSd, const Operand *OpSn, const Operand *OpSm, |
| CondARM32::Cond Cond); |
| + void vcmpd(const Operand *OpDd, const Operand *OpDm, CondARM32::Cond cond); |
| + |
| + void vcmpdz(const Operand *OpDd, CondARM32::Cond cond); // compare with 0.0 |
|
Jim Stichnoth
2016/01/09 01:34:28
Can you clarify the comment? Does it matter wheth
Karl
2016/01/11 16:42:19
Done.
|
| + |
| + void vcmps(const Operand *OpSd, const Operand *OpSm, CondARM32::Cond cond); |
| + |
| + void vcmpsz(const Operand *OpSd, CondARM32::Cond cond); // compare with 0.0 |
| + |
| void vcvtsd(const Operand *OpSd, const Operand *OpDm, CondARM32::Cond Cond); |
| void vcvtds(const Operand *OpDd, const Operand *OpSm, CondARM32::Cond Cond); |