try_with_eval_perfhint.baseline 999 B

1234567891011121314151617181920
  1. PerfHint: Not optimized : Function has with statement {
  2. Function : foo5 [try_with_eval_perfhint.js @ 50, 5]
  3. Consequences : Slower lookups, high overhead in the JIT code
  4. Suggestion : Avoid using with statement
  5. }
  6. PerfHint: Not optimized : Function has try block {
  7. Function : foo [try_with_eval_perfhint.js @ 15, 9]
  8. Consequences : Un-optimized JIT code generated for this function
  9. Suggestion : Move perf sensitive block inside of try to different function
  10. }
  11. PerfHint: Not optimized : Function has try block {
  12. Function : foo2 [try_with_eval_perfhint.js @ 26, 5]
  13. Consequences : Un-optimized JIT code generated for this function
  14. Suggestion : Move perf sensitive block inside of try to different function
  15. }
  16. PerfHint: Not optimized : Function calls eval statement {
  17. Function : foo4 [try_with_eval_perfhint.js @ 40, 9]
  18. Consequences : Extra scopes, affect inlining, high overhead in the JIT code
  19. Suggestion : Check usage of eval statement
  20. }