Home
last modified time | relevance | path

Searched refs:LMathMinMax (Results 1 – 22 of 22) sorted by relevance

/external/v8/src/ia32/
Dlithium-ia32.h1502 class LMathMinMax FINAL : public LTemplateInstruction<1, 2, 0> {
1504 LMathMinMax(LOperand* left, LOperand* right) { in LMathMinMax() function
Dlithium-ia32.cc1637 LMathMinMax* minmax = new(zone()) LMathMinMax(left, right); in DoMathMinMax()
Dlithium-codegen-ia32.cc1918 void LCodeGen::DoMathMinMax(LMathMinMax* instr) { in DoMathMinMax()
/external/v8/src/x87/
Dlithium-x87.h1510 class LMathMinMax FINAL : public LTemplateInstruction<1, 2, 1> {
1512 LMathMinMax(LOperand* left, LOperand* right, LOperand* temp) { in LMathMinMax() function
Dlithium-x87.cc1650 LMathMinMax* minmax = new (zone()) LMathMinMax(left, right, scratch); in DoMathMinMax()
Dlithium-codegen-x87.cc2186 void LCodeGen::DoMathMinMax(LMathMinMax* instr) { in DoMathMinMax()
/external/v8/src/x64/
Dlithium-x64.h1489 class LMathMinMax FINAL : public LTemplateInstruction<1, 2, 0> {
1491 LMathMinMax(LOperand* left, LOperand* right) { in LMathMinMax() function
Dlithium-x64.cc1620 LMathMinMax* minmax = new(zone()) LMathMinMax(left, right); in DoMathMinMax()
Dlithium-codegen-x64.cc1936 void LCodeGen::DoMathMinMax(LMathMinMax* instr) { in DoMathMinMax()
/external/v8/src/mips64/
Dlithium-mips64.h1472 class LMathMinMax FINAL : public LTemplateInstruction<1, 2, 0> {
1474 LMathMinMax(LOperand* left, LOperand* right) { in LMathMinMax() function
Dlithium-mips64.cc1627 return DefineAsRegister(new(zone()) LMathMinMax(left, right)); in DoMathMinMax()
Dlithium-codegen-mips64.cc1893 void LCodeGen::DoMathMinMax(LMathMinMax* instr) { in DoMathMinMax()
/external/v8/src/mips/
Dlithium-mips.h1473 class LMathMinMax FINAL : public LTemplateInstruction<1, 2, 0> {
1475 LMathMinMax(LOperand* left, LOperand* right) { in LMathMinMax() function
Dlithium-mips.cc1626 return DefineAsRegister(new(zone()) LMathMinMax(left, right)); in DoMathMinMax()
Dlithium-codegen-mips.cc1925 void LCodeGen::DoMathMinMax(LMathMinMax* instr) { in DoMathMinMax()
/external/v8/src/arm/
Dlithium-arm.h1507 class LMathMinMax FINAL : public LTemplateInstruction<1, 2, 0> {
1509 LMathMinMax(LOperand* left, LOperand* right) { in LMathMinMax() function
Dlithium-arm.cc1677 return DefineAsRegister(new(zone()) LMathMinMax(left, right)); in DoMathMinMax()
Dlithium-codegen-arm.cc2067 void LCodeGen::DoMathMinMax(LMathMinMax* instr) { in DoMathMinMax()
/external/v8/src/arm64/
Dlithium-arm64.h2062 class LMathMinMax FINAL : public LTemplateInstruction<1, 2, 0> {
2064 LMathMinMax(LOperand* left, LOperand* right) { in LMathMinMax() function
Dlithium-arm64.cc1854 return DefineAsRegister(new(zone()) LMathMinMax(left, right)); in DoMathMinMax()
Dlithium-codegen-arm64.cc4213 void LCodeGen::DoMathMinMax(LMathMinMax* instr) { in DoMathMinMax()
/external/v8/
DChangeLog1539 x64: Fix LMathMinMax for constant Smi right-hand operands (Chromium