JITDriver.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (C) 2012 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
  14. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  15. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
  17. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  18. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  19. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  20. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  21. * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  23. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #ifndef JITDriver_h
  26. #define JITDriver_h
  27. #include <wtf/Platform.h>
  28. #if ENABLE(JIT)
  29. #include "BytecodeGenerator.h"
  30. #include "DFGDriver.h"
  31. #include "JIT.h"
  32. #include "LLIntEntrypoints.h"
  33. namespace JSC {
  34. template<typename CodeBlockType>
  35. inline bool jitCompileIfAppropriate(ExecState* exec, OwnPtr<CodeBlockType>& codeBlock, JITCode& jitCode, JITCode::JITType jitType, unsigned bytecodeIndex, JITCompilationEffort effort)
  36. {
  37. VM& vm = exec->vm();
  38. if (jitType == codeBlock->getJITType())
  39. return true;
  40. if (!vm.canUseJIT())
  41. return true;
  42. codeBlock->unlinkIncomingCalls();
  43. JITCode oldJITCode = jitCode;
  44. bool dfgCompiled = false;
  45. if (jitType == JITCode::DFGJIT)
  46. dfgCompiled = DFG::tryCompile(exec, codeBlock.get(), jitCode, bytecodeIndex);
  47. if (dfgCompiled) {
  48. if (codeBlock->alternative())
  49. codeBlock->alternative()->unlinkIncomingCalls();
  50. } else {
  51. if (codeBlock->alternative()) {
  52. codeBlock = static_pointer_cast<CodeBlockType>(codeBlock->releaseAlternative());
  53. jitCode = oldJITCode;
  54. return false;
  55. }
  56. jitCode = JIT::compile(&vm, codeBlock.get(), effort);
  57. if (!jitCode) {
  58. jitCode = oldJITCode;
  59. return false;
  60. }
  61. }
  62. codeBlock->setJITCode(jitCode, MacroAssemblerCodePtr());
  63. return true;
  64. }
  65. inline bool jitCompileFunctionIfAppropriate(ExecState* exec, OwnPtr<FunctionCodeBlock>& codeBlock, JITCode& jitCode, MacroAssemblerCodePtr& jitCodeWithArityCheck, JITCode::JITType jitType, unsigned bytecodeIndex, JITCompilationEffort effort)
  66. {
  67. VM& vm = exec->vm();
  68. if (jitType == codeBlock->getJITType())
  69. return true;
  70. if (!vm.canUseJIT())
  71. return true;
  72. codeBlock->unlinkIncomingCalls();
  73. JITCode oldJITCode = jitCode;
  74. MacroAssemblerCodePtr oldJITCodeWithArityCheck = jitCodeWithArityCheck;
  75. bool dfgCompiled = false;
  76. if (jitType == JITCode::DFGJIT)
  77. dfgCompiled = DFG::tryCompileFunction(exec, codeBlock.get(), jitCode, jitCodeWithArityCheck, bytecodeIndex);
  78. if (dfgCompiled) {
  79. if (codeBlock->alternative())
  80. codeBlock->alternative()->unlinkIncomingCalls();
  81. } else {
  82. if (codeBlock->alternative()) {
  83. codeBlock = static_pointer_cast<FunctionCodeBlock>(codeBlock->releaseAlternative());
  84. jitCode = oldJITCode;
  85. jitCodeWithArityCheck = oldJITCodeWithArityCheck;
  86. return false;
  87. }
  88. jitCode = JIT::compile(&vm, codeBlock.get(), effort, &jitCodeWithArityCheck);
  89. if (!jitCode) {
  90. jitCode = oldJITCode;
  91. jitCodeWithArityCheck = oldJITCodeWithArityCheck;
  92. return false;
  93. }
  94. }
  95. codeBlock->setJITCode(jitCode, jitCodeWithArityCheck);
  96. return true;
  97. }
  98. } // namespace JSC
  99. #endif // ENABLE(JIT)
  100. #endif // JITDriver_h