Searched refs:HMathMinMax (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/v8/src/
H A Dhydrogen-range-analysis.cc278 HMathMinMax* instr = HMathMinMax::cast(value);
H A Dhydrogen-instructions.cc2418 Range* HMathMinMax::InferRange(Zone* zone) {
3033 void HMathMinMax::InferRepresentation(HInferRepresentationPhase* h_infer) {
4257 HInstruction* HMathMinMax::New(
4286 return new(zone) HMathMinMax(context, left, right, op);
H A Dhydrogen-instructions.h5019 class HMathMinMax FINAL : public HArithmeticBinaryOperation {
5055 HMathMinMax::cast(other)->operation_ == operation_;
5061 HMathMinMax(HValue* context, HValue* left, HValue* right, Operation op) function in class:v8::FINAL::FINAL
H A Dhydrogen.cc8232 HMathMinMax::Operation op = (id == kMathMin) ? HMathMinMax::kMathMin
8233 : HMathMinMax::kMathMax;
8234 HInstruction* result = NewUncasted<HMathMinMax>(left, right, op);
/external/chromium_org/v8/src/arm64/
H A Dlithium-codegen-arm64.cc4214 HMathMinMax::Operation op = instr->hydrogen()->operation();
4221 __ Csel(result, left, right, (op == HMathMinMax::kMathMax) ? ge : le);
4228 __ Csel(result, left, right, (op == HMathMinMax::kMathMax) ? ge : le);
4235 if (op == HMathMinMax::kMathMax) {
4238 DCHECK(op == HMathMinMax::kMathMin);
H A Dlithium-arm64.cc1839 LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.cc2070 HMathMinMax::Operation operation = instr->hydrogen()->operation();
2072 Condition condition = (operation == HMathMinMax::kMathMin) ? le : ge;
2088 if (operation == HMathMinMax::kMathMin) {
2104 if (operation == HMathMinMax::kMathMin) {
H A Dlithium-arm.cc1662 LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.cc1922 HMathMinMax::Operation operation = instr->hydrogen()->operation();
1925 Condition condition = (operation == HMathMinMax::kMathMin)
1946 Condition condition = (operation == HMathMinMax::kMathMin) ? below : above;
1961 if (operation == HMathMinMax::kMathMin) {
H A Dlithium-ia32.cc1622 LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {
/external/chromium_org/v8/src/x64/
H A Dlithium-codegen-x64.cc1940 HMathMinMax::Operation operation = instr->hydrogen()->operation();
1943 Condition condition = (operation == HMathMinMax::kMathMin)
1980 Condition condition = (operation == HMathMinMax::kMathMin) ? below : above;
1995 if (operation == HMathMinMax::kMathMin) {
H A Dlithium-x64.cc1604 LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc1928 HMathMinMax::Operation operation = instr->hydrogen()->operation();
1929 Condition condition = (operation == HMathMinMax::kMathMin) ? le : ge;
1959 if (operation == HMathMinMax::kMathMin) {
H A Dlithium-mips.cc1611 LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {
/external/chromium_org/v8/src/x87/
H A Dlithium-codegen-x87.cc2190 HMathMinMax::Operation operation = instr->hydrogen()->operation();
2193 Condition condition = (operation == HMathMinMax::kMathMin)
2214 Condition condition = (operation == HMathMinMax::kMathMin) ? below : above;
2233 if (operation == HMathMinMax::kMathMin) {
H A Dlithium-x87.cc1633 LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {
/external/chromium_org/v8/src/mips64/
H A Dlithium-codegen-mips64.cc1896 HMathMinMax::Operation operation = instr->hydrogen()->operation();
1897 Condition condition = (operation == HMathMinMax::kMathMin) ? le : ge;
1927 if (operation == HMathMinMax::kMathMin) {
H A Dlithium-mips64.cc1612 LInstruction* LChunkBuilder::DoMathMinMax(HMathMinMax* instr) {

Completed in 4853 milliseconds