/external/v8/src/arm64/ |
D | lithium-arm64.h | 2736 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt) in LShiftI() argument 2737 : op_(op), can_deopt_(can_deopt) { in LShiftI() 2745 bool can_deopt() const { return can_deopt_; } in can_deopt() function 2757 LShiftS(Token::Value op, LOperand* left, LOperand* right, bool can_deopt) in LShiftS() argument 2758 : op_(op), can_deopt_(can_deopt) { in LShiftS() 2766 bool can_deopt() const { return can_deopt_; } in can_deopt() function
|
D | lithium-arm64.cc | 2235 bool can_deopt = false; in DoShift() local 2238 can_deopt = !instr->CheckFlag(HInstruction::kUint32); in DoShift() 2240 can_deopt = !instr->CheckUsesForFlag(HValue::kTruncatingToInt32); in DoShift() 2246 result = DefineAsRegister(new (zone()) LShiftI(op, left, right, can_deopt)); in DoShift() 2249 result = DefineAsRegister(new (zone()) LShiftS(op, left, right, can_deopt)); in DoShift() 2252 return can_deopt ? AssignEnvironment(result) : result; in DoShift()
|
D | lithium-codegen-arm64.cc | 4905 if (instr->can_deopt()) { in DoShiftI() 4917 if ((instr->op() == Token::SHR) && instr->can_deopt()) { in DoShiftI() 4968 if (instr->can_deopt()) { in DoShiftS() 4980 if ((instr->op() == Token::SHR) && instr->can_deopt()) { in DoShiftS()
|
/external/v8/src/ia32/ |
D | lithium-ia32.h | 1291 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt) in LShiftI() argument 1292 : op_(op), can_deopt_(can_deopt) { in LShiftI() 1303 bool can_deopt() const { return can_deopt_; } in can_deopt() function
|
D | lithium-codegen-ia32.cc | 1625 if (instr->can_deopt()) { in DoShiftI() 1642 if (shift_count == 0 && instr->can_deopt()) { in DoShiftI() 1657 } else if (instr->can_deopt()) { in DoShiftI() 1665 instr->can_deopt()) { in DoShiftI()
|
/external/v8/src/x87/ |
D | lithium-x87.h | 1305 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt) in LShiftI() argument 1306 : op_(op), can_deopt_(can_deopt) { in LShiftI() 1317 bool can_deopt() const { return can_deopt_; } in can_deopt() function
|
D | lithium-codegen-x87.cc | 1917 if (instr->can_deopt()) { in DoShiftI() 1934 if (shift_count == 0 && instr->can_deopt()) { in DoShiftI() 1949 } else if (instr->can_deopt()) { in DoShiftI() 1957 instr->can_deopt()) { in DoShiftI()
|
/external/v8/src/x64/ |
D | lithium-x64.h | 1279 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt) in LShiftI() argument 1280 : op_(op), can_deopt_(can_deopt) { in LShiftI() 1288 bool can_deopt() const { return can_deopt_; } in can_deopt() function
|
D | lithium-codegen-x64.cc | 1610 if (instr->can_deopt()) { in DoShiftI() 1639 } else if (instr->can_deopt()) { in DoShiftI() 1651 if (instr->can_deopt()) { in DoShiftI()
|
/external/v8/src/mips64/ |
D | lithium-mips64.h | 1275 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt) in LShiftI() argument 1276 : op_(op), can_deopt_(can_deopt) { in LShiftI() 1284 bool can_deopt() const { return can_deopt_; } in can_deopt() function
|
D | lithium-codegen-mips64.cc | 1594 if (instr->can_deopt()) { in DoShiftI() 1630 if (instr->can_deopt()) { in DoShiftI()
|
/external/v8/src/mips/ |
D | lithium-mips.h | 1276 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt) in LShiftI() argument 1277 : op_(op), can_deopt_(can_deopt) { in LShiftI() 1285 bool can_deopt() const { return can_deopt_; } in can_deopt() function
|
D | lithium-codegen-mips.cc | 1630 if (instr->can_deopt()) { in DoShiftI() 1664 if (instr->can_deopt()) { in DoShiftI() 1674 instr->can_deopt()) { in DoShiftI()
|
/external/v8/src/arm/ |
D | lithium-arm.h | 1295 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt) in LShiftI() argument 1296 : op_(op), can_deopt_(can_deopt) { in LShiftI() 1304 bool can_deopt() const { return can_deopt_; } in can_deopt() function
|
D | lithium-codegen-arm.cc | 1782 if (instr->can_deopt()) { in DoShiftI() 1819 if (instr->can_deopt()) { in DoShiftI() 1829 instr->can_deopt()) { in DoShiftI()
|