HomeSort by relevance Sort by last modified time
    Searched refs:BAILOUT (Results 1 - 3 of 3) sorted by null

  /external/v8/src/
fast-codegen.cc 38 #define BAILOUT(reason) \
59 if (!info->has_receiver()) BAILOUT("No receiver");
60 if (!info->receiver()->IsJSObject()) BAILOUT("Receiver is not an object");
62 if (!object->HasFastProperties()) BAILOUT("Receiver is in dictionary mode");
68 BAILOUT("Function has stack-allocated locals");
71 BAILOUT("Function has context-allocated locals");
79 BAILOUT("Function has an empty body");
87 if (!decls->is_empty()) BAILOUT("Function has declarations");
93 BAILOUT("Function body is not a singleton statement.");
121 BAILOUT("IfStatement")
    [all...]
full-codegen.cc 40 #define BAILOUT(reason) \
147 BAILOUT("SwitchStatement");
166 if (!FLAG_always_full_compiler) BAILOUT("ForStatement");
184 BAILOUT("ForInStatement");
216 BAILOUT("FunctionBoilerplateLiteral");
285 if (op == Token::INIT_CONST) BAILOUT("initialize constant");
291 if (var->mode() == Variable::CONST) BAILOUT("Assignment to const");
300 BAILOUT("non-variable/non-property assignment");
326 BAILOUT("call to the identifier 'eval'");
331 BAILOUT("call to a lookup slot")
    [all...]
  /external/v8/src/ia32/
fast-codegen-ia32.cc 38 #define BAILOUT(reason) \
59 if (!info->has_receiver()) BAILOUT("No receiver");
60 if (!info->receiver()->IsJSObject()) BAILOUT("Receiver is not an object");
62 if (!object->HasFastProperties()) BAILOUT("Receiver is in dictionary mode");
68 BAILOUT("Function has stack-allocated locals");
71 BAILOUT("Function has context-allocated locals");
79 BAILOUT("Function has an empty body");
87 if (!decls->is_empty()) BAILOUT("Function has declarations");
93 BAILOUT("Function body is not a singleton statement.");
121 BAILOUT("IfStatement")
593 Label* bailout = NULL; local
    [all...]

Completed in 125 milliseconds