HomeSort by relevance Sort by last modified time
    Searched defs:can_deopt (Results 1 - 6 of 6) sorted by null

  /external/v8/src/arm/
lithium-arm.cc 855 bool can_deopt = (op == Token::SHR && constant_value == 0); local
856 if (can_deopt) {
864 can_deopt = !can_truncate;
868 DefineSameAsFirst(new LShiftI(op, left, right, can_deopt));
869 if (can_deopt) AssignEnvironment(result);
    [all...]
lithium-arm.h 916 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt)
917 : op_(op), can_deopt_(can_deopt) {
924 bool can_deopt() const { return can_deopt_; } function in class:v8::internal::LShiftI
    [all...]
  /external/v8/src/ia32/
lithium-ia32.cc 849 bool can_deopt = (op == Token::SHR && constant_value == 0); local
850 if (can_deopt) {
858 can_deopt = !can_truncate;
861 LShiftI* result = new LShiftI(op, left, right, can_deopt);
862 return can_deopt
    [all...]
lithium-ia32.h 939 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt)
940 : op_(op), can_deopt_(can_deopt) {
947 bool can_deopt() const { return can_deopt_; } function in class:v8::internal::LShiftI
    [all...]
  /external/v8/src/x64/
lithium-x64.cc 850 bool can_deopt = (op == Token::SHR && constant_value == 0); local
851 if (can_deopt) {
859 can_deopt = !can_truncate;
862 LShiftI* result = new LShiftI(op, left, right, can_deopt);
863 return can_deopt
    [all...]
lithium-x64.h 901 LShiftI(Token::Value op, LOperand* left, LOperand* right, bool can_deopt)
902 : op_(op), can_deopt_(can_deopt) {
909 bool can_deopt() const { return can_deopt_; } function in class:v8::internal::LShiftI
    [all...]

Completed in 848 milliseconds