Searched refs:LMathSqrt (Results 1 - 25 of 27) sorted by relevance

12

/external/v8/src/crankshaft/arm/
H A Dlithium-arm.h929 class LMathSqrt final : public LTemplateInstruction<1, 1, 0> {
931 explicit LMathSqrt(LOperand* value) { function in class:v8::internal::final
H A Dlithium-arm.cc1147 LMathSqrt* result = new(zone()) LMathSqrt(input);
H A Dlithium-codegen-arm.cc3377 void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
/external/v8/src/crankshaft/arm64/
H A Dlithium-arm64.h1802 class LMathSqrt final : public LUnaryMathOperation<0> {
1804 explicit LMathSqrt(LOperand* value) : LUnaryMathOperation<0>(value) { } function in class:v8::internal::final
H A Dlithium-arm64.cc2418 return DefineAsRegister(new(zone()) LMathSqrt(input));
H A Dlithium-codegen-arm64.cc3804 void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
/external/v8/src/crankshaft/ia32/
H A Dlithium-ia32.h936 class LMathSqrt final : public LTemplateInstruction<1, 1, 0> {
938 explicit LMathSqrt(LOperand* value) { function in class:v8::internal::final
H A Dlithium-ia32.cc1193 return DefineAsRegister(new(zone()) LMathSqrt(input));
H A Dlithium-codegen-ia32.cc3226 void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
/external/v8/src/crankshaft/mips/
H A Dlithium-mips.h906 class LMathSqrt final : public LTemplateInstruction<1, 1, 0> {
908 explicit LMathSqrt(LOperand* value) { function in class:v8::internal::final
H A Dlithium-mips.cc1154 LMathSqrt* result = new(zone()) LMathSqrt(input);
H A Dlithium-codegen-mips.cc3354 void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
/external/v8/src/crankshaft/mips64/
H A Dlithium-mips64.h924 class LMathSqrt final : public LTemplateInstruction<1, 1, 0> {
926 explicit LMathSqrt(LOperand* value) { function in class:v8::internal::final
H A Dlithium-mips64.cc1154 LMathSqrt* result = new(zone()) LMathSqrt(input);
H A Dlithium-codegen-mips64.cc3560 void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
/external/v8/src/crankshaft/ppc/
H A Dlithium-ppc.h927 class LMathSqrt final : public LTemplateInstruction<1, 1, 0> {
929 explicit LMathSqrt(LOperand* value) { inputs_[0] = value; } function in class:v8::internal::final
H A Dlithium-ppc.cc1170 LMathSqrt* result = new (zone()) LMathSqrt(input);
H A Dlithium-codegen-ppc.cc3644 void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
/external/v8/src/crankshaft/s390/
H A Dlithium-s390.h858 class LMathSqrt final : public LTemplateInstruction<1, 1, 0> {
860 explicit LMathSqrt(LOperand* value) { inputs_[0] = value; } function in class:v8::internal::final
H A Dlithium-s390.cc1062 LMathSqrt* result = new (zone()) LMathSqrt(input);
H A Dlithium-codegen-s390.cc3541 void LCodeGen::DoMathSqrt(LMathSqrt* instr) {
/external/v8/src/crankshaft/x64/
H A Dlithium-x64.h932 class LMathSqrt final : public LTemplateInstruction<1, 1, 0> {
934 explicit LMathSqrt(LOperand* value) { function in class:v8::internal::final
H A Dlithium-x64.cc1184 return DefineAsRegister(new(zone()) LMathSqrt(input));
/external/v8/src/crankshaft/x87/
H A Dlithium-x87.h928 class LMathSqrt final : public LTemplateInstruction<1, 1, 2> {
930 explicit LMathSqrt(LOperand* value, function in class:v8::internal::final
H A Dlithium-x87.cc1200 LMathSqrt* result = new(zone()) LMathSqrt(input, temp1, temp2);

Completed in 313 milliseconds

12