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

  /external/v8/test/mjsunit/regress/
regress-1118.js 28 // An exception thrown in a function optimized by on-stack replacement (OSR)
42 // This function should be optimized via OSR.
regress-1257.js 42 // Loop for to hit OSR.
regress-1167.js 40 // OSR (after deoptimization) is used to observe the stack height mismatch.
  /external/v8/src/
deoptimizer.cc 222 if (FLAG_trace_deopt && type != OSR) {
229 } else if (FLAG_trace_osr && type == OSR) {
230 PrintF("**** OSR: ");
244 } else if (type == OSR) {
355 if (bailout_type_ == OSR) {
653 // Abort OSR if we don't have a number.
680 // Abort OSR if we don't have a number.
710 // Abort OSR if we don't have a number.
742 // Abort OSR if we don't have a number.
834 if (bailout_type_ == OSR) {
    [all...]
deoptimizer.h 105 OSR
244 // Translate a command for OSR. Updates the input offset to be used for
  /external/v8/src/arm/
deoptimizer-arm.cc 256 ASSERT(outgoing_size == 0); // OSR does not happen in the middle of a call.
268 // There's only one output frame in the OSR case.
579 } else if (type() == OSR) {
627 if (type() == EAGER || type() == OSR) {
683 if (type() != OSR) {
builtins-arm.cc     [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 334 ASSERT(outgoing_size == 0); // OSR does not happen in the middle of a call.
346 // There's only one output frame in the OSR case.
725 // In case of OSR, we have to restore the XMM registers.
726 if (type() == OSR) {
735 if (type() != OSR) {
builtins-ia32.cc     [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 326 ASSERT(outgoing_size == 0); // OSR does not happen in the middle of a call.
338 // There's only one output frame in the OSR case.
754 // In case of OSR, we have to restore the XMM registers.
755 if (type() == OSR) {
764 if (type() != OSR) {
builtins-x64.cc     [all...]

Completed in 310 milliseconds