Home
last modified time | relevance | path

Searched refs:LUnaryMathOperation (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/crankshaft/arm64/
Dlithium-arm64.h1595 class LUnaryMathOperation : public LTemplateInstruction<1, 1, T> {
1597 explicit LUnaryMathOperation(LOperand* value) { in LUnaryMathOperation() function
1610 class LMathAbs final : public LUnaryMathOperation<0> {
1612 explicit LMathAbs(LOperand* value) : LUnaryMathOperation<0>(value) {} in LMathAbs()
1639 class LMathCos final : public LUnaryMathOperation<0> {
1641 explicit LMathCos(LOperand* value) : LUnaryMathOperation<0>(value) {} in LMathCos()
1646 class LMathSin final : public LUnaryMathOperation<0> {
1648 explicit LMathSin(LOperand* value) : LUnaryMathOperation<0>(value) {} in LMathSin()
1653 class LMathExp final : public LUnaryMathOperation<0> {
1655 explicit LMathExp(LOperand* value) : LUnaryMathOperation<0>(value) {} in LMathExp()
[all …]
Dlithium-arm64.cc272 void LUnaryMathOperation<T>::PrintDataTo(StringStream* stream) { in PrintDataTo()