]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - bytecode/CodeBlock.h
JavaScriptCore-1218.35.tar.gz
[apple/javascriptcore.git] / bytecode / CodeBlock.h
index e5d78d3ea8edee610002915a7adfb4239e71ecd8..1329e239fb69abe5b9b261f9d73b0c0f1d49c9d8 100644 (file)
@@ -1,5 +1,5 @@
 /*
 /*
- * Copyright (C) 2008, 2009 Apple Inc. All rights reserved.
+ * Copyright (C) 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
  * Copyright (C) 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>
  *
  * Redistribution and use in source and binary forms, with or without
  * Copyright (C) 2008 Cameron Zwarich <cwzwarich@uwaterloo.ca>
  *
  * Redistribution and use in source and binary forms, with or without
 #ifndef CodeBlock_h
 #define CodeBlock_h
 
 #ifndef CodeBlock_h
 #define CodeBlock_h
 
+#include "ArrayProfile.h"
+#include "ByValInfo.h"
+#include "BytecodeConventions.h"
+#include "CallLinkInfo.h"
+#include "CallReturnOffsetToBytecodeOffset.h"
+#include "CodeBlockHash.h"
+#include "CodeOrigin.h"
+#include "CodeType.h"
+#include "CompactJITCodeMap.h"
+#include "DFGCodeBlocks.h"
+#include "DFGCommon.h"
+#include "DFGExitProfile.h"
+#include "DFGMinifiedGraph.h"
+#include "DFGOSREntry.h"
+#include "DFGOSRExit.h"
+#include "DFGVariableEventStream.h"
 #include "EvalCodeCache.h"
 #include "EvalCodeCache.h"
+#include "ExecutionCounter.h"
+#include "ExpressionRangeInfo.h"
+#include "HandlerInfo.h"
+#include "ObjectAllocationProfile.h"
+#include "Options.h"
 #include "Instruction.h"
 #include "Instruction.h"
+#include "JITCode.h"
+#include "JITWriteBarrier.h"
 #include "JSGlobalObject.h"
 #include "JSGlobalObject.h"
+#include "JumpReplacementWatchpoint.h"
 #include "JumpTable.h"
 #include "JumpTable.h"
-#include "Nodes.h"
-#include "RegExp.h"
-#include "UString.h"
+#include "LLIntCallLinkInfo.h"
+#include "LazyOperandValueProfile.h"
+#include "LineInfo.h"
+#include "ProfilerCompilation.h"
+#include "RegExpObject.h"
+#include "ResolveOperation.h"
+#include "StructureStubInfo.h"
+#include "UnconditionalFinalizer.h"
+#include "ValueProfile.h"
+#include "Watchpoint.h"
+#include <wtf/RefCountedArray.h>
+#include <wtf/FastAllocBase.h>
+#include <wtf/PassOwnPtr.h>
+#include <wtf/Platform.h>
 #include <wtf/RefPtr.h>
 #include <wtf/RefPtr.h>
+#include <wtf/SegmentedVector.h>
 #include <wtf/Vector.h>
 #include <wtf/Vector.h>
-
-#if ENABLE(JIT)
-#include "StructureStubInfo.h"
-#endif
+#include <wtf/text/WTFString.h>
 
 namespace JSC {
 
 
 namespace JSC {
 
-    class ExecState;
+class DFGCodeBlocks;
+class ExecState;
+class LLIntOffsetsExtractor;
+class RepatchBuffer;
 
 
-    enum CodeType { GlobalCode, EvalCode, FunctionCode };
+inline int unmodifiedArgumentsRegister(int argumentsRegister) { return argumentsRegister - 1; }
 
 
-    static ALWAYS_INLINE int missingThisObjectMarker() { return std::numeric_limits<int>::max(); }
+static ALWAYS_INLINE int missingThisObjectMarker() { return std::numeric_limits<int>::max(); }
 
 
-    struct HandlerInfo {
-        uint32_t start;
-        uint32_t end;
-        uint32_t target;
-        uint32_t scopeDepth;
-#if ENABLE(JIT)
-        void* nativeCode;
-#endif
-    };
+class CodeBlock : public UnconditionalFinalizer, public WeakReferenceHarvester {
+    WTF_MAKE_FAST_ALLOCATED;
+    friend class JIT;
+    friend class LLIntOffsetsExtractor;
+public:
+    enum CopyParsedBlockTag { CopyParsedBlock };
+protected:
+    CodeBlock(CopyParsedBlockTag, CodeBlock& other);
+        
+    CodeBlock(ScriptExecutable* ownerExecutable, UnlinkedCodeBlock*, JSGlobalObject*, unsigned baseScopeDepth, PassRefPtr<SourceProvider>, unsigned sourceOffset, unsigned firstLineColumnOffset, PassOwnPtr<CodeBlock> alternative);
 
 
-#if ENABLE(JIT)
-    // The code, and the associated pool from which it was allocated.
-    struct JITCodeRef {
-        void* code;
-#ifndef NDEBUG
-        unsigned codeSize;
-#endif
-        RefPtr<ExecutablePool> executablePool;
+    WriteBarrier<JSGlobalObject> m_globalObject;
+    Heap* m_heap;
 
 
-        JITCodeRef()
-            : code(0)
-#ifndef NDEBUG
-            , codeSize(0)
-#endif
-        {
-        }
+public:
+    JS_EXPORT_PRIVATE virtual ~CodeBlock();
         
         
-        JITCodeRef(void* code, PassRefPtr<ExecutablePool> executablePool)
-            : code(code)
-#ifndef NDEBUG
-            , codeSize(0)
-#endif
-            , executablePool(executablePool)
-        {
-        }
-    };
-#endif
+    UnlinkedCodeBlock* unlinkedCodeBlock() const { return m_unlinkedCode.get(); }
+        
+    String inferredName() const;
+    CodeBlockHash hash() const;
+    String sourceCodeForTools() const; // Not quite the actual source we parsed; this will do things like prefix the source for a function with a reified signature.
+    String sourceCodeOnOneLine() const; // As sourceCodeForTools(), but replaces all whitespace runs with a single space.
+    void dumpAssumingJITType(PrintStream&, JITCode::JITType) const;
+    void dump(PrintStream&) const;
+        
+    int numParameters() const { return m_numParameters; }
+    void setNumParameters(int newValue);
+        
+    int* addressOfNumParameters() { return &m_numParameters; }
+    static ptrdiff_t offsetOfNumParameters() { return OBJECT_OFFSETOF(CodeBlock, m_numParameters); }
 
 
-    struct ExpressionRangeInfo {
-        enum {
-            MaxOffset = (1 << 7) - 1, 
-            MaxDivot = (1 << 25) - 1
-        };
-        uint32_t instructionOffset : 25;
-        uint32_t divotPoint : 25;
-        uint32_t startOffset : 7;
-        uint32_t endOffset : 7;
-    };
+    CodeBlock* alternative() { return m_alternative.get(); }
+    PassOwnPtr<CodeBlock> releaseAlternative() { return m_alternative.release(); }
+    void setAlternative(PassOwnPtr<CodeBlock> alternative) { m_alternative = alternative; }
+        
+    CodeSpecializationKind specializationKind() const
+    {
+        return specializationFromIsConstruct(m_isConstructor);
+    }
+        
+#if ENABLE(JIT)
+    CodeBlock* baselineVersion()
+    {
+        CodeBlock* result = replacement();
+        if (!result)
+            return 0; // This can happen if we're in the process of creating the baseline version.
+        while (result->alternative())
+            result = result->alternative();
+        ASSERT(result);
+        ASSERT(JITCode::isBaselineCode(result->getJITType()));
+        return result;
+    }
+#else
+    CodeBlock* baselineVersion()
+    {
+        return this;
+    }
+#endif
 
 
-    struct LineInfo {
-        uint32_t instructionOffset;
-        int32_t lineNumber;
-    };
+    void visitAggregate(SlotVisitor&);
 
 
-    // Both op_construct and op_instanceof require a use of op_get_by_id to get
-    // the prototype property from an object. The exception messages for exceptions
-    // thrown by these instances op_get_by_id need to reflect this.
-    struct GetByIdExceptionInfo {
-        unsigned bytecodeOffset : 31;
-        bool isOpConstruct : 1;
-    };
+    static void dumpStatistics();
 
 
-#if ENABLE(JIT)
-    struct CallLinkInfo {
-        CallLinkInfo()
-            : callReturnLocation(0)
-            , hotPathBegin(0)
-            , hotPathOther(0)
-            , coldPathOther(0)
-            , callee(0)
-        {
-        }
-    
-        unsigned bytecodeIndex;
-        void* callReturnLocation;
-        void* hotPathBegin;
-        void* hotPathOther;
-        void* coldPathOther;
-        CodeBlock* callee;
-        unsigned position;
-        
-        void setUnlinked() { callee = 0; }
-        bool isLinked() { return callee; }
-    };
+    void dumpBytecode(PrintStream& = WTF::dataFile());
+    void dumpBytecode(PrintStream&, unsigned bytecodeOffset);
+    void printStructures(PrintStream&, const Instruction*);
+    void printStructure(PrintStream&, const char* name, const Instruction*, int operand);
 
 
-    struct FunctionRegisterInfo {
-        FunctionRegisterInfo(unsigned bytecodeOffset, int functionRegisterIndex)
-            : bytecodeOffset(bytecodeOffset)
-            , functionRegisterIndex(functionRegisterIndex)
-        {
-        }
+    bool isStrictMode() const { return m_isStrictMode; }
 
 
-        unsigned bytecodeOffset;
-        int functionRegisterIndex;
-    };
+    inline bool isKnownNotImmediate(int index)
+    {
+        if (index == m_thisRegister && !m_isStrictMode)
+            return true;
 
 
-    struct GlobalResolveInfo {
-        GlobalResolveInfo(unsigned bytecodeOffset)
-            : structure(0)
-            , offset(0)
-            , bytecodeOffset(bytecodeOffset)
-        {
-        }
+        if (isConstantRegisterIndex(index))
+            return getConstant(index).isCell();
 
 
-        Structure* structure;
-        unsigned offset;
-        unsigned bytecodeOffset;
-    };
+        return false;
+    }
 
 
-    struct PC {
-        PC(ptrdiff_t nativePCOffset, unsigned bytecodeIndex)
-            : nativePCOffset(nativePCOffset)
-            , bytecodeIndex(bytecodeIndex)
-        {
-        }
+    ALWAYS_INLINE bool isTemporaryRegisterIndex(int index)
+    {
+        return index >= m_numVars;
+    }
 
 
-        ptrdiff_t nativePCOffset;
-        unsigned bytecodeIndex;
-    };
+    HandlerInfo* handlerForBytecodeOffset(unsigned bytecodeOffset);
+    unsigned lineNumberForBytecodeOffset(unsigned bytecodeOffset);
+    unsigned columnNumberForBytecodeOffset(unsigned bytecodeOffset);
+    void expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot,
+        int& startOffset, int& endOffset, unsigned& line, unsigned& column);
 
 
-    // valueAtPosition helpers for the binaryChop algorithm below.
+#if ENABLE(JIT)
 
 
-    inline void* getStructureStubInfoReturnLocation(StructureStubInfo* structureStubInfo)
+    StructureStubInfo& getStubInfo(ReturnAddressPtr returnAddress)
     {
     {
-        return structureStubInfo->callReturnLocation;
+        return *(binarySearch<StructureStubInfo, void*>(m_structureStubInfos, m_structureStubInfos.size(), returnAddress.value(), getStructureStubInfoReturnLocation));
     }
 
     }
 
-    inline void* getCallLinkInfoReturnLocation(CallLinkInfo* callLinkInfo)
+    StructureStubInfo& getStubInfo(unsigned bytecodeIndex)
     {
     {
-        return callLinkInfo->callReturnLocation;
+        return *(binarySearch<StructureStubInfo, unsigned>(m_structureStubInfos, m_structureStubInfos.size(), bytecodeIndex, getStructureStubInfoBytecodeIndex));
     }
     }
-
-    inline ptrdiff_t getNativePCOffset(PC* pc)
+        
+    void resetStub(StructureStubInfo&);
+        
+    ByValInfo& getByValInfo(unsigned bytecodeIndex)
     {
     {
-        return pc->nativePCOffset;
+        return *(binarySearch<ByValInfo, unsigned>(m_byValInfos, m_byValInfos.size(), bytecodeIndex, getByValInfoBytecodeIndex));
     }
 
     }
 
-    // Binary chop algorithm, calls valueAtPosition on pre-sorted elements in array,
-    // compares result with key (KeyTypes should be comparable with '--', '<', '>').
-    // Optimized for cases where the array contains the key, checked by assertions.
-    template<typename ArrayType, typename KeyType, KeyType(*valueAtPosition)(ArrayType*)>
-    inline ArrayType* binaryChop(ArrayType* array, size_t size, KeyType key)
+    CallLinkInfo& getCallLinkInfo(ReturnAddressPtr returnAddress)
     {
     {
-        // The array must contain at least one element (pre-condition, array does conatin key).
-        // If the array only contains one element, no need to do the comparison.
-        while (size > 1) {
-            // Pick an element to check, half way through the array, and read the value.
-            int pos = (size - 1) >> 1;
-            KeyType val = valueAtPosition(&array[pos]);
-            
-            // If the key matches, success!
-            if (val == key)
-                return &array[pos];
-            // The item we are looking for is smaller than the item being check; reduce the value of 'size',
-            // chopping off the right hand half of the array.
-            else if (key < val)
-                size = pos;
-            // Discard all values in the left hand half of the array, up to and including the item at pos.
-            else {
-                size -= (pos + 1);
-                array += (pos + 1);
-            }
-
-            // 'size' should never reach zero.
-            ASSERT(size);
-        }
+        return *(binarySearch<CallLinkInfo, void*>(m_callLinkInfos, m_callLinkInfos.size(), returnAddress.value(), getCallLinkInfoReturnLocation));
+    }
         
         
-        // If we reach this point we've chopped down to one element, no need to check it matches
-        ASSERT(size == 1);
-        ASSERT(key == valueAtPosition(&array[0]));
-        return &array[0];
+    CallLinkInfo& getCallLinkInfo(unsigned bytecodeIndex)
+    {
+        ASSERT(JITCode::isBaselineCode(getJITType()));
+        return *(binarySearch<CallLinkInfo, unsigned>(m_callLinkInfos, m_callLinkInfos.size(), bytecodeIndex, getCallLinkInfoBytecodeIndex));
     }
     }
-#endif
+#endif // ENABLE(JIT)
 
 
-    class CodeBlock {
-        friend class JIT;
-    public:
-        CodeBlock(ScopeNode* ownerNode, CodeType, PassRefPtr<SourceProvider>, unsigned sourceOffset);
-        ~CodeBlock();
+#if ENABLE(LLINT)
+    Instruction* adjustPCIfAtCallSite(Instruction*);
+#endif
+    unsigned bytecodeOffset(ExecState*, ReturnAddressPtr);
 
 
-        void mark();
-        void refStructures(Instruction* vPC) const;
-        void derefStructures(Instruction* vPC) const;
 #if ENABLE(JIT)
 #if ENABLE(JIT)
-        void unlinkCallers();
-#endif
+    unsigned bytecodeOffsetForCallAtIndex(unsigned index)
+    {
+        if (!m_rareData)
+            return 1;
+        Vector<CallReturnOffsetToBytecodeOffset, 0, UnsafeVectorOverflow>& callIndices = m_rareData->m_callReturnIndexVector;
+        if (!callIndices.size())
+            return 1;
+        // FIXME: Fix places in DFG that call out to C that don't set the CodeOrigin. https://bugs.webkit.org/show_bug.cgi?id=118315 
+        ASSERT(index < m_rareData->m_callReturnIndexVector.size());
+        if (index >= m_rareData->m_callReturnIndexVector.size())
+            return 1;
+        return m_rareData->m_callReturnIndexVector[index].bytecodeOffset;
+    }
+
+    void unlinkCalls();
+        
+    bool hasIncomingCalls() { return m_incomingCalls.begin() != m_incomingCalls.end(); }
+        
+    void linkIncomingCall(CallLinkInfo* incoming)
+    {
+        m_incomingCalls.push(incoming);
+    }
+        
+    bool isIncomingCallAlreadyLinked(CallLinkInfo* incoming)
+    {
+        return m_incomingCalls.isOnList(incoming);
+    }
+#endif // ENABLE(JIT)
 
 
-        static void dumpStatistics();
+#if ENABLE(LLINT)
+    void linkIncomingCall(LLIntCallLinkInfo* incoming)
+    {
+        m_incomingLLIntCalls.push(incoming);
+    }
+#endif // ENABLE(LLINT)
+        
+    void unlinkIncomingCalls();
 
 
-#if !defined(NDEBUG) || ENABLE_OPCODE_SAMPLING
-        void dump(ExecState*) const;
-        void printStructures(const Instruction*) const;
-        void printStructure(const char* name, const Instruction*, int operand) const;
+#if ENABLE(DFG_JIT) || ENABLE(LLINT)
+    void setJITCodeMap(PassOwnPtr<CompactJITCodeMap> jitCodeMap)
+    {
+        m_jitCodeMap = jitCodeMap;
+    }
+    CompactJITCodeMap* jitCodeMap()
+    {
+        return m_jitCodeMap.get();
+    }
+#endif
+        
+#if ENABLE(DFG_JIT)
+    void createDFGDataIfNecessary()
+    {
+        if (!!m_dfgData)
+            return;
+            
+        m_dfgData = adoptPtr(new DFGData);
+    }
+        
+    void saveCompilation(PassRefPtr<Profiler::Compilation> compilation)
+    {
+        createDFGDataIfNecessary();
+        m_dfgData->compilation = compilation;
+    }
+        
+    Profiler::Compilation* compilation()
+    {
+        if (!m_dfgData)
+            return 0;
+        return m_dfgData->compilation.get();
+    }
+        
+    DFG::OSREntryData* appendDFGOSREntryData(unsigned bytecodeIndex, unsigned machineCodeOffset)
+    {
+        createDFGDataIfNecessary();
+        DFG::OSREntryData entry;
+        entry.m_bytecodeIndex = bytecodeIndex;
+        entry.m_machineCodeOffset = machineCodeOffset;
+        m_dfgData->osrEntry.append(entry);
+        return &m_dfgData->osrEntry.last();
+    }
+    unsigned numberOfDFGOSREntries() const
+    {
+        if (!m_dfgData)
+            return 0;
+        return m_dfgData->osrEntry.size();
+    }
+    DFG::OSREntryData* dfgOSREntryData(unsigned i) { return &m_dfgData->osrEntry[i]; }
+    DFG::OSREntryData* dfgOSREntryDataForBytecodeIndex(unsigned bytecodeIndex)
+    {
+        if (!m_dfgData)
+            return 0;
+        return tryBinarySearch<DFG::OSREntryData, unsigned>(
+            m_dfgData->osrEntry, m_dfgData->osrEntry.size(), bytecodeIndex,
+            DFG::getOSREntryDataBytecodeIndex);
+    }
+        
+    unsigned appendOSRExit(const DFG::OSRExit& osrExit)
+    {
+        createDFGDataIfNecessary();
+        unsigned result = m_dfgData->osrExit.size();
+        m_dfgData->osrExit.append(osrExit);
+        return result;
+    }
+        
+    DFG::OSRExit& lastOSRExit()
+    {
+        return m_dfgData->osrExit.last();
+    }
+        
+    unsigned appendSpeculationRecovery(const DFG::SpeculationRecovery& recovery)
+    {
+        createDFGDataIfNecessary();
+        unsigned result = m_dfgData->speculationRecovery.size();
+        m_dfgData->speculationRecovery.append(recovery);
+        return result;
+    }
+        
+    unsigned appendWatchpoint(const JumpReplacementWatchpoint& watchpoint)
+    {
+        createDFGDataIfNecessary();
+        unsigned result = m_dfgData->watchpoints.size();
+        m_dfgData->watchpoints.append(watchpoint);
+        return result;
+    }
+        
+    unsigned numberOfOSRExits()
+    {
+        if (!m_dfgData)
+            return 0;
+        return m_dfgData->osrExit.size();
+    }
+        
+    unsigned numberOfSpeculationRecoveries()
+    {
+        if (!m_dfgData)
+            return 0;
+        return m_dfgData->speculationRecovery.size();
+    }
+        
+    unsigned numberOfWatchpoints()
+    {
+        if (!m_dfgData)
+            return 0;
+        return m_dfgData->watchpoints.size();
+    }
+        
+    DFG::OSRExit& osrExit(unsigned index)
+    {
+        return m_dfgData->osrExit[index];
+    }
+        
+    DFG::SpeculationRecovery& speculationRecovery(unsigned index)
+    {
+        return m_dfgData->speculationRecovery[index];
+    }
+        
+    JumpReplacementWatchpoint& watchpoint(unsigned index)
+    {
+        return m_dfgData->watchpoints[index];
+    }
+        
+    void appendWeakReference(JSCell* target)
+    {
+        createDFGDataIfNecessary();
+        m_dfgData->weakReferences.append(WriteBarrier<JSCell>(*vm(), ownerExecutable(), target));
+    }
+        
+    void appendWeakReferenceTransition(JSCell* codeOrigin, JSCell* from, JSCell* to)
+    {
+        createDFGDataIfNecessary();
+        m_dfgData->transitions.append(
+            WeakReferenceTransition(*vm(), ownerExecutable(), codeOrigin, from, to));
+    }
+        
+    DFG::MinifiedGraph& minifiedDFG()
+    {
+        createDFGDataIfNecessary();
+        return m_dfgData->minifiedDFG;
+    }
+        
+    DFG::VariableEventStream& variableEventStream()
+    {
+        createDFGDataIfNecessary();
+        return m_dfgData->variableEventStream;
+    }
 #endif
 
 #endif
 
-        inline bool isKnownNotImmediate(int index)
-        {
-            if (index == m_thisRegister)
-                return true;
+    unsigned bytecodeOffset(Instruction* returnAddress)
+    {
+        RELEASE_ASSERT(returnAddress >= instructions().begin() && returnAddress < instructions().end());
+        return static_cast<Instruction*>(returnAddress) - instructions().begin();
+    }
 
 
-            if (isConstantRegisterIndex(index))
-                return getConstant(index).isCell();
+    bool isNumericCompareFunction() { return m_unlinkedCode->isNumericCompareFunction(); }
 
 
-            return false;
-        }
+    unsigned numberOfInstructions() const { return m_instructions.size(); }
+    RefCountedArray<Instruction>& instructions() { return m_instructions; }
+    const RefCountedArray<Instruction>& instructions() const { return m_instructions; }
+        
+    size_t predictedMachineCodeSize();
+        
+    bool usesOpcode(OpcodeID);
 
 
-        ALWAYS_INLINE bool isConstantRegisterIndex(int index)
-        {
-            return index >= m_numVars && index < m_numVars + m_numConstants;
-        }
+    unsigned instructionCount() { return m_instructions.size(); }
 
 
-        ALWAYS_INLINE JSValuePtr getConstant(int index)
-        {
-            return m_constantRegisters[index - m_numVars].getJSValue();
-        }
+    int argumentIndexAfterCapture(size_t argument);
 
 
-        ALWAYS_INLINE bool isTemporaryRegisterIndex(int index)
-        {
-            return index >= m_numVars + m_numConstants;
+#if ENABLE(JIT)
+    void setJITCode(const JITCode& code, MacroAssemblerCodePtr codeWithArityCheck)
+    {
+        m_jitCode = code;
+        m_jitCodeWithArityCheck = codeWithArityCheck;
+#if ENABLE(DFG_JIT)
+        if (m_jitCode.jitType() == JITCode::DFGJIT) {
+            createDFGDataIfNecessary();
+            m_vm->heap.m_dfgCodeBlocks.m_set.add(this);
         }
         }
+#endif
+    }
+    JITCode& getJITCode() { return m_jitCode; }
+    MacroAssemblerCodePtr getJITCodeWithArityCheck() { return m_jitCodeWithArityCheck; }
+    JITCode::JITType getJITType() const { return m_jitCode.jitType(); }
+    ExecutableMemoryHandle* executableMemory() { return getJITCode().getExecutableMemory(); }
+    virtual JSObject* compileOptimized(ExecState*, JSScope*, unsigned bytecodeIndex) = 0;
+    void jettison();
+    enum JITCompilationResult { AlreadyCompiled, CouldNotCompile, CompiledSuccessfully };
+    JITCompilationResult jitCompile(ExecState* exec)
+    {
+        if (getJITType() != JITCode::InterpreterThunk) {
+            ASSERT(getJITType() == JITCode::BaselineJIT);
+            return AlreadyCompiled;
+        }
+#if ENABLE(JIT)
+        if (jitCompileImpl(exec))
+            return CompiledSuccessfully;
+        return CouldNotCompile;
+#else
+        UNUSED_PARAM(exec);
+        return CouldNotCompile;
+#endif
+    }
+    virtual CodeBlock* replacement() = 0;
 
 
-        HandlerInfo* handlerForBytecodeOffset(unsigned bytecodeOffset);
-        int lineNumberForBytecodeOffset(CallFrame*, unsigned bytecodeOffset);
-        int expressionRangeForBytecodeOffset(CallFrame*, unsigned bytecodeOffset, int& divot, int& startOffset, int& endOffset);
-        bool getByIdExceptionInfoForBytecodeOffset(CallFrame*, unsigned bytecodeOffset, OpcodeID&);
+    virtual DFG::CapabilityLevel canCompileWithDFGInternal() = 0;
+    DFG::CapabilityLevel canCompileWithDFG()
+    {
+        DFG::CapabilityLevel result = canCompileWithDFGInternal();
+        m_canCompileWithDFGState = result;
+        return result;
+    }
+    DFG::CapabilityLevel canCompileWithDFGState() { return m_canCompileWithDFGState; }
 
 
-#if ENABLE(JIT)
-        void addCaller(CallLinkInfo* caller)
-        {
-            caller->callee = this;
-            caller->position = m_linkedCallerList.size();
-            m_linkedCallerList.append(caller);
+    bool hasOptimizedReplacement()
+    {
+        ASSERT(JITCode::isBaselineCode(getJITType()));
+        bool result = replacement()->getJITType() > getJITType();
+#if !ASSERT_DISABLED
+        if (result)
+            ASSERT(replacement()->getJITType() == JITCode::DFGJIT);
+        else {
+            ASSERT(JITCode::isBaselineCode(replacement()->getJITType()));
+            ASSERT(replacement() == this);
         }
         }
+#endif
+        return result;
+    }
+#else
+    JITCode::JITType getJITType() const { return JITCode::BaselineJIT; }
+#endif
 
 
-        void removeCaller(CallLinkInfo* caller)
-        {
-            unsigned pos = caller->position;
-            unsigned lastPos = m_linkedCallerList.size() - 1;
-
-            if (pos != lastPos) {
-                m_linkedCallerList[pos] = m_linkedCallerList[lastPos];
-                m_linkedCallerList[pos]->position = pos;
-            }
-            m_linkedCallerList.shrink(lastPos);
-        }
+    ScriptExecutable* ownerExecutable() const { return m_ownerExecutable.get(); }
 
 
-        StructureStubInfo& getStubInfo(void* returnAddress)
-        {
-            return *(binaryChop<StructureStubInfo, void*, getStructureStubInfoReturnLocation>(m_structureStubInfos.begin(), m_structureStubInfos.size(), returnAddress));
-        }
+    void setVM(VM* vm) { m_vm = vm; }
+    VM* vm() { return m_vm; }
 
 
-        CallLinkInfo& getCallLinkInfo(void* returnAddress)
-        {
-            return *(binaryChop<CallLinkInfo, void*, getCallLinkInfoReturnLocation>(m_callLinkInfos.begin(), m_callLinkInfos.size(), returnAddress));
-        }
+    void setThisRegister(int thisRegister) { m_thisRegister = thisRegister; }
+    int thisRegister() const { return m_thisRegister; }
 
 
-        unsigned getBytecodeIndex(CallFrame* callFrame, void* nativePC)
-        {
-            reparseForExceptionInfoIfNecessary(callFrame);
-            ptrdiff_t nativePCOffset = reinterpret_cast<void**>(nativePC) - reinterpret_cast<void**>(m_jitCode.code);
-            return binaryChop<PC, ptrdiff_t, getNativePCOffset>(m_exceptionInfo->m_pcVector.begin(), m_exceptionInfo->m_pcVector.size(), nativePCOffset)->bytecodeIndex;
-        }
+    bool needsFullScopeChain() const { return m_unlinkedCode->needsFullScopeChain(); }
+    bool usesEval() const { return m_unlinkedCode->usesEval(); }
         
         
-        bool functionRegisterForBytecodeOffset(unsigned bytecodeOffset, int& functionRegisterIndex);
-#endif
+    void setArgumentsRegister(int argumentsRegister)
+    {
+        ASSERT(argumentsRegister != -1);
+        m_argumentsRegister = argumentsRegister;
+        ASSERT(usesArguments());
+    }
+    int argumentsRegister() const
+    {
+        ASSERT(usesArguments());
+        return m_argumentsRegister;
+    }
+    int uncheckedArgumentsRegister()
+    {
+        if (!usesArguments())
+            return InvalidVirtualRegister;
+        return argumentsRegister();
+    }
+    void setActivationRegister(int activationRegister)
+    {
+        m_activationRegister = activationRegister;
+    }
+    int activationRegister() const
+    {
+        ASSERT(needsFullScopeChain());
+        return m_activationRegister;
+    }
+    int uncheckedActivationRegister()
+    {
+        if (!needsFullScopeChain())
+            return InvalidVirtualRegister;
+        return activationRegister();
+    }
+    bool usesArguments() const { return m_argumentsRegister != -1; }
+        
+    bool needsActivation() const
+    {
+        return needsFullScopeChain() && codeType() != GlobalCode;
+    }
 
 
-        void setIsNumericCompareFunction(bool isNumericCompareFunction) { m_isNumericCompareFunction = isNumericCompareFunction; }
-        bool isNumericCompareFunction() { return m_isNumericCompareFunction; }
+    bool isCaptured(int operand, InlineCallFrame* inlineCallFrame = 0) const
+    {
+        if (operandIsArgument(operand))
+            return operandToArgument(operand) && usesArguments();
 
 
-        Vector<Instruction>& instructions() { return m_instructions; }
-#ifndef NDEBUG
-        void setInstructionCount(unsigned instructionCount) { m_instructionCount = instructionCount; }
-#endif
+        if (inlineCallFrame)
+            return inlineCallFrame->capturedVars.get(operand);
 
 
-#if ENABLE(JIT)
-        void setJITCode(JITCodeRef& jitCode);
-        void* jitCode() { return m_jitCode.code; }
-        ExecutablePool* executablePool() { return m_jitCode.executablePool.get(); }
-#endif
+        // The activation object isn't in the captured region, but it's "captured"
+        // in the sense that stores to its location can be observed indirectly.
+        if (needsActivation() && operand == activationRegister())
+            return true;
 
 
-        ScopeNode* ownerNode() const { return m_ownerNode; }
+        // Ditto for the arguments object.
+        if (usesArguments() && operand == argumentsRegister())
+            return true;
 
 
-        void setGlobalData(JSGlobalData* globalData) { m_globalData = globalData; }
+        // Ditto for the arguments object.
+        if (usesArguments() && operand == unmodifiedArgumentsRegister(argumentsRegister()))
+            return true;
 
 
-        void setThisRegister(int thisRegister) { m_thisRegister = thisRegister; }
-        int thisRegister() const { return m_thisRegister; }
+        // We're in global code so there are no locals to capture
+        if (!symbolTable())
+            return false;
 
 
-        void setNeedsFullScopeChain(bool needsFullScopeChain) { m_needsFullScopeChain = needsFullScopeChain; }
-        bool needsFullScopeChain() const { return m_needsFullScopeChain; }
-        void setUsesEval(bool usesEval) { m_usesEval = usesEval; }
-        bool usesEval() const { return m_usesEval; }
-        void setUsesArguments(bool usesArguments) { m_usesArguments = usesArguments; }
-        bool usesArguments() const { return m_usesArguments; }
+        return operand >= symbolTable()->captureStart()
+            && operand < symbolTable()->captureEnd();
+    }
 
 
-        CodeType codeType() const { return m_codeType; }
+    CodeType codeType() const { return m_unlinkedCode->codeType(); }
 
 
-        SourceProvider* source() const { return m_source.get(); }
-        unsigned sourceOffset() const { return m_sourceOffset; }
+    SourceProvider* source() const { return m_source.get(); }
+    unsigned sourceOffset() const { return m_sourceOffset; }
+    unsigned firstLineColumnOffset() const { return m_firstLineColumnOffset; }
 
 
-        size_t numberOfJumpTargets() const { return m_jumpTargets.size(); }
-        void addJumpTarget(unsigned jumpTarget) { m_jumpTargets.append(jumpTarget); }
-        unsigned jumpTarget(int index) const { return m_jumpTargets[index]; }
-        unsigned lastJumpTarget() const { return m_jumpTargets.last(); }
+    size_t numberOfJumpTargets() const { return m_unlinkedCode->numberOfJumpTargets(); }
+    unsigned jumpTarget(int index) const { return m_unlinkedCode->jumpTarget(index); }
 
 
-#if !ENABLE(JIT)
-        void addPropertyAccessInstruction(unsigned propertyAccessInstruction) { m_propertyAccessInstructions.append(propertyAccessInstruction); }
-        void addGlobalResolveInstruction(unsigned globalResolveInstruction) { m_globalResolveInstructions.append(globalResolveInstruction); }
-        bool hasGlobalResolveInstructionAtBytecodeOffset(unsigned bytecodeOffset);
-#else
-        size_t numberOfStructureStubInfos() const { return m_structureStubInfos.size(); }
-        void addStructureStubInfo(const StructureStubInfo& stubInfo) { m_structureStubInfos.append(stubInfo); }
-        StructureStubInfo& structureStubInfo(int index) { return m_structureStubInfos[index]; }
+    void createActivation(CallFrame*);
 
 
-        void addGlobalResolveInfo(unsigned globalResolveInstruction) { m_globalResolveInfos.append(GlobalResolveInfo(globalResolveInstruction)); }
-        GlobalResolveInfo& globalResolveInfo(int index) { return m_globalResolveInfos[index]; }
-        bool hasGlobalResolveInfoAtBytecodeOffset(unsigned bytecodeOffset);
+    void clearEvalCache();
+        
+    String nameForRegister(int registerNumber);
 
 
-        size_t numberOfCallLinkInfos() const { return m_callLinkInfos.size(); }
-        void addCallLinkInfo() { m_callLinkInfos.append(CallLinkInfo()); }
-        CallLinkInfo& callLinkInfo(int index) { return m_callLinkInfos[index]; }
+#if ENABLE(JIT)
+    void setNumberOfStructureStubInfos(size_t size) { m_structureStubInfos.grow(size); }
+    size_t numberOfStructureStubInfos() const { return m_structureStubInfos.size(); }
+    StructureStubInfo& structureStubInfo(int index) { return m_structureStubInfos[index]; }
+        
+    void setNumberOfByValInfos(size_t size) { m_byValInfos.grow(size); }
+    size_t numberOfByValInfos() const { return m_byValInfos.size(); }
+    ByValInfo& byValInfo(size_t index) { return m_byValInfos[index]; }
 
 
-        void addFunctionRegisterInfo(unsigned bytecodeOffset, int functionIndex) { createRareDataIfNecessary(); m_rareData->m_functionRegisterInfos.append(FunctionRegisterInfo(bytecodeOffset, functionIndex)); }
+    void setNumberOfCallLinkInfos(size_t size) { m_callLinkInfos.grow(size); }
+    size_t numberOfCallLinkInfos() const { return m_callLinkInfos.size(); }
+    CallLinkInfo& callLinkInfo(int index) { return m_callLinkInfos[index]; }
 #endif
 #endif
+        
+#if ENABLE(VALUE_PROFILER)
+    unsigned numberOfArgumentValueProfiles()
+    {
+        ASSERT(m_numParameters >= 0);
+        ASSERT(m_argumentValueProfiles.size() == static_cast<unsigned>(m_numParameters));
+        return m_argumentValueProfiles.size();
+    }
+    ValueProfile* valueProfileForArgument(unsigned argumentIndex)
+    {
+        ValueProfile* result = &m_argumentValueProfiles[argumentIndex];
+        ASSERT(result->m_bytecodeOffset == -1);
+        return result;
+    }
 
 
-        // Exception handling support
+    unsigned numberOfValueProfiles() { return m_valueProfiles.size(); }
+    ValueProfile* valueProfile(int index) { return &m_valueProfiles[index]; }
+    ValueProfile* valueProfileForBytecodeOffset(int bytecodeOffset)
+    {
+        ValueProfile* result = binarySearch<ValueProfile, int>(
+            m_valueProfiles, m_valueProfiles.size(), bytecodeOffset,
+            getValueProfileBytecodeOffset<ValueProfile>);
+        ASSERT(result->m_bytecodeOffset != -1);
+        ASSERT(instructions()[bytecodeOffset + opcodeLength(
+            m_vm->interpreter->getOpcodeID(
+                instructions()[
+                    bytecodeOffset].u.opcode)) - 1].u.profile == result);
+        return result;
+    }
+    SpeculatedType valueProfilePredictionForBytecodeOffset(int bytecodeOffset)
+    {
+        return valueProfileForBytecodeOffset(bytecodeOffset)->computeUpdatedPrediction();
+    }
+        
+    unsigned totalNumberOfValueProfiles()
+    {
+        return numberOfArgumentValueProfiles() + numberOfValueProfiles();
+    }
+    ValueProfile* getFromAllValueProfiles(unsigned index)
+    {
+        if (index < numberOfArgumentValueProfiles())
+            return valueProfileForArgument(index);
+        return valueProfile(index - numberOfArgumentValueProfiles());
+    }
+        
+    RareCaseProfile* addRareCaseProfile(int bytecodeOffset)
+    {
+        m_rareCaseProfiles.append(RareCaseProfile(bytecodeOffset));
+        return &m_rareCaseProfiles.last();
+    }
+    unsigned numberOfRareCaseProfiles() { return m_rareCaseProfiles.size(); }
+    RareCaseProfile* rareCaseProfile(int index) { return &m_rareCaseProfiles[index]; }
+    RareCaseProfile* rareCaseProfileForBytecodeOffset(int bytecodeOffset)
+    {
+        return tryBinarySearch<RareCaseProfile, int>(
+            m_rareCaseProfiles, m_rareCaseProfiles.size(), bytecodeOffset,
+            getRareCaseProfileBytecodeOffset);
+    }
+        
+    bool likelyToTakeSlowCase(int bytecodeOffset)
+    {
+        if (!numberOfRareCaseProfiles())
+            return false;
+        unsigned value = rareCaseProfileForBytecodeOffset(bytecodeOffset)->m_counter;
+        return value >= Options::likelyToTakeSlowCaseMinimumCount();
+    }
+        
+    bool couldTakeSlowCase(int bytecodeOffset)
+    {
+        if (!numberOfRareCaseProfiles())
+            return false;
+        unsigned value = rareCaseProfileForBytecodeOffset(bytecodeOffset)->m_counter;
+        return value >= Options::couldTakeSlowCaseMinimumCount();
+    }
+        
+    RareCaseProfile* addSpecialFastCaseProfile(int bytecodeOffset)
+    {
+        m_specialFastCaseProfiles.append(RareCaseProfile(bytecodeOffset));
+        return &m_specialFastCaseProfiles.last();
+    }
+    unsigned numberOfSpecialFastCaseProfiles() { return m_specialFastCaseProfiles.size(); }
+    RareCaseProfile* specialFastCaseProfile(int index) { return &m_specialFastCaseProfiles[index]; }
+    RareCaseProfile* specialFastCaseProfileForBytecodeOffset(int bytecodeOffset)
+    {
+        return tryBinarySearch<RareCaseProfile, int>(
+            m_specialFastCaseProfiles, m_specialFastCaseProfiles.size(), bytecodeOffset,
+            getRareCaseProfileBytecodeOffset);
+    }
+        
+    bool likelyToTakeSpecialFastCase(int bytecodeOffset)
+    {
+        if (!numberOfRareCaseProfiles())
+            return false;
+        unsigned specialFastCaseCount = specialFastCaseProfileForBytecodeOffset(bytecodeOffset)->m_counter;
+        return specialFastCaseCount >= Options::likelyToTakeSlowCaseMinimumCount();
+    }
+        
+    bool couldTakeSpecialFastCase(int bytecodeOffset)
+    {
+        if (!numberOfRareCaseProfiles())
+            return false;
+        unsigned specialFastCaseCount = specialFastCaseProfileForBytecodeOffset(bytecodeOffset)->m_counter;
+        return specialFastCaseCount >= Options::couldTakeSlowCaseMinimumCount();
+    }
+        
+    bool likelyToTakeDeepestSlowCase(int bytecodeOffset)
+    {
+        if (!numberOfRareCaseProfiles())
+            return false;
+        unsigned slowCaseCount = rareCaseProfileForBytecodeOffset(bytecodeOffset)->m_counter;
+        unsigned specialFastCaseCount = specialFastCaseProfileForBytecodeOffset(bytecodeOffset)->m_counter;
+        unsigned value = slowCaseCount - specialFastCaseCount;
+        return value >= Options::likelyToTakeSlowCaseMinimumCount();
+    }
+        
+    bool likelyToTakeAnySlowCase(int bytecodeOffset)
+    {
+        if (!numberOfRareCaseProfiles())
+            return false;
+        unsigned slowCaseCount = rareCaseProfileForBytecodeOffset(bytecodeOffset)->m_counter;
+        unsigned specialFastCaseCount = specialFastCaseProfileForBytecodeOffset(bytecodeOffset)->m_counter;
+        unsigned value = slowCaseCount + specialFastCaseCount;
+        return value >= Options::likelyToTakeSlowCaseMinimumCount();
+    }
+        
+    unsigned numberOfArrayProfiles() const { return m_arrayProfiles.size(); }
+    const ArrayProfileVector& arrayProfiles() { return m_arrayProfiles; }
+    ArrayProfile* addArrayProfile(unsigned bytecodeOffset)
+    {
+        m_arrayProfiles.append(ArrayProfile(bytecodeOffset));
+        return &m_arrayProfiles.last();
+    }
+    ArrayProfile* getArrayProfile(unsigned bytecodeOffset);
+    ArrayProfile* getOrAddArrayProfile(unsigned bytecodeOffset);
+#endif
 
 
-        size_t numberOfExceptionHandlers() const { return m_rareData ? m_rareData->m_exceptionHandlers.size() : 0; }
-        void addExceptionHandler(const HandlerInfo& hanler) { createRareDataIfNecessary(); return m_rareData->m_exceptionHandlers.append(hanler); }
-        HandlerInfo& exceptionHandler(int index) { ASSERT(m_rareData); return m_rareData->m_exceptionHandlers[index]; }
+    // Exception handling support
 
 
-        bool hasExceptionInfo() const { return m_exceptionInfo; }
-        void clearExceptionInfo() { m_exceptionInfo.clear(); }
+    size_t numberOfExceptionHandlers() const { return m_rareData ? m_rareData->m_exceptionHandlers.size() : 0; }
+    void allocateHandlers(const Vector<UnlinkedHandlerInfo>& unlinkedHandlers)
+    {
+        size_t count = unlinkedHandlers.size();
+        if (!count)
+            return;
+        createRareDataIfNecessary();
+        m_rareData->m_exceptionHandlers.resize(count);
+        for (size_t i = 0; i < count; ++i) {
+            m_rareData->m_exceptionHandlers[i].start = unlinkedHandlers[i].start;
+            m_rareData->m_exceptionHandlers[i].end = unlinkedHandlers[i].end;
+            m_rareData->m_exceptionHandlers[i].target = unlinkedHandlers[i].target;
+            m_rareData->m_exceptionHandlers[i].scopeDepth = unlinkedHandlers[i].scopeDepth;
+        }
 
 
-        void addExpressionInfo(const ExpressionRangeInfo& expressionInfo) { ASSERT(m_exceptionInfo); m_exceptionInfo->m_expressionInfo.append(expressionInfo); }
-        void addGetByIdExceptionInfo(const GetByIdExceptionInfo& info) { ASSERT(m_exceptionInfo); m_exceptionInfo->m_getByIdExceptionInfo.append(info); }
+    }
+    HandlerInfo& exceptionHandler(int index) { RELEASE_ASSERT(m_rareData); return m_rareData->m_exceptionHandlers[index]; }
 
 
-        size_t numberOfLineInfos() const { ASSERT(m_exceptionInfo); return m_exceptionInfo->m_lineInfo.size(); }
-        void addLineInfo(const LineInfo& lineInfo) { ASSERT(m_exceptionInfo); m_exceptionInfo->m_lineInfo.append(lineInfo); }
-        LineInfo& lastLineInfo() { ASSERT(m_exceptionInfo); return m_exceptionInfo->m_lineInfo.last(); }
+    bool hasExpressionInfo() { return m_unlinkedCode->hasExpressionInfo(); }
 
 #if ENABLE(JIT)
 
 #if ENABLE(JIT)
-        Vector<PC>& pcVector() { ASSERT(m_exceptionInfo); return m_exceptionInfo->m_pcVector; }
+    Vector<CallReturnOffsetToBytecodeOffset, 0, UnsafeVectorOverflow>& callReturnIndexVector()
+    {
+        createRareDataIfNecessary();
+        return m_rareData->m_callReturnIndexVector;
+    }
+#endif
+
+#if ENABLE(DFG_JIT)
+    SegmentedVector<InlineCallFrame, 4>& inlineCallFrames()
+    {
+        createRareDataIfNecessary();
+        return m_rareData->m_inlineCallFrames;
+    }
+        
+    Vector<CodeOriginAtCallReturnOffset, 0, UnsafeVectorOverflow>& codeOrigins()
+    {
+        createRareDataIfNecessary();
+        return m_rareData->m_codeOrigins;
+    }
+        
+    // Having code origins implies that there has been some inlining.
+    bool hasCodeOrigins()
+    {
+        return m_rareData && !!m_rareData->m_codeOrigins.size();
+    }
+        
+    bool codeOriginForReturn(ReturnAddressPtr, CodeOrigin&);
+        
+    bool canGetCodeOrigin(unsigned index)
+    {
+        if (!m_rareData)
+            return false;
+        return m_rareData->m_codeOrigins.size() > index;
+    }
+        
+    CodeOrigin codeOrigin(unsigned index)
+    {
+        RELEASE_ASSERT(m_rareData);
+        return m_rareData->m_codeOrigins[index].codeOrigin;
+    }
+        
+    bool addFrequentExitSite(const DFG::FrequentExitSite& site)
+    {
+        ASSERT(JITCode::isBaselineCode(getJITType()));
+        return m_exitProfile.add(site);
+    }
+        
+    bool hasExitSite(const DFG::FrequentExitSite& site) const { return m_exitProfile.hasExitSite(site); }
+
+    DFG::ExitProfile& exitProfile() { return m_exitProfile; }
+        
+    CompressedLazyOperandValueProfileHolder& lazyOperandValueProfiles()
+    {
+        return m_lazyOperandValueProfiles;
+    }
 #endif
 
 #endif
 
-        // Constant Pool
+    // Constant Pool
+
+    size_t numberOfIdentifiers() const { return m_identifiers.size(); }
+    void addIdentifier(const Identifier& i) { return m_identifiers.append(i); }
+    Identifier& identifier(int index) { return m_identifiers[index]; }
+
+    size_t numberOfConstantRegisters() const { return m_constantRegisters.size(); }
+    unsigned addConstant(JSValue v)
+    {
+        unsigned result = m_constantRegisters.size();
+        m_constantRegisters.append(WriteBarrier<Unknown>());
+        m_constantRegisters.last().set(m_globalObject->vm(), m_ownerExecutable.get(), v);
+        return result;
+    }
 
 
-        size_t numberOfIdentifiers() const { return m_identifiers.size(); }
-        void addIdentifier(const Identifier& i) { return m_identifiers.append(i); }
-        Identifier& identifier(int index) { return m_identifiers[index]; }
 
 
-        size_t numberOfConstantRegisters() const { return m_constantRegisters.size(); }
-        void addConstantRegister(const Register& r) { return m_constantRegisters.append(r); }
-        Register& constantRegister(int index) { return m_constantRegisters[index]; }
+    unsigned addOrFindConstant(JSValue);
+    WriteBarrier<Unknown>& constantRegister(int index) { return m_constantRegisters[index - FirstConstantRegisterIndex]; }
+    ALWAYS_INLINE bool isConstantRegisterIndex(int index) const { return index >= FirstConstantRegisterIndex; }
+    ALWAYS_INLINE JSValue getConstant(int index) const { return m_constantRegisters[index - FirstConstantRegisterIndex].get(); }
 
 
-        unsigned addFunctionExpression(FuncExprNode* n) { unsigned size = m_functionExpressions.size(); m_functionExpressions.append(n); return size; }
-        FuncExprNode* functionExpression(int index) const { return m_functionExpressions[index].get(); }
+    FunctionExecutable* functionDecl(int index) { return m_functionDecls[index].get(); }
+    int numberOfFunctionDecls() { return m_functionDecls.size(); }
+    FunctionExecutable* functionExpr(int index) { return m_functionExprs[index].get(); }
 
 
-        unsigned addFunction(FuncDeclNode* n) { createRareDataIfNecessary(); unsigned size = m_rareData->m_functions.size(); m_rareData->m_functions.append(n); return size; }
-        FuncDeclNode* function(int index) const { ASSERT(m_rareData); return m_rareData->m_functions[index].get(); }
+    RegExp* regexp(int index) const { return m_unlinkedCode->regexp(index); }
 
 
-        bool hasFunctions() const { return m_functionExpressions.size() || (m_rareData && m_rareData->m_functions.size()); }
+    unsigned numberOfConstantBuffers() const
+    {
+        if (!m_rareData)
+            return 0;
+        return m_rareData->m_constantBuffers.size();
+    }
+    unsigned addConstantBuffer(const Vector<JSValue>& buffer)
+    {
+        createRareDataIfNecessary();
+        unsigned size = m_rareData->m_constantBuffers.size();
+        m_rareData->m_constantBuffers.append(buffer);
+        return size;
+    }
 
 
-        unsigned addUnexpectedConstant(JSValuePtr v) { createRareDataIfNecessary(); unsigned size = m_rareData->m_unexpectedConstants.size(); m_rareData->m_unexpectedConstants.append(v); return size; }
-        JSValuePtr unexpectedConstant(int index) const { ASSERT(m_rareData); return m_rareData->m_unexpectedConstants[index]; }
+    Vector<JSValue>& constantBufferAsVector(unsigned index)
+    {
+        ASSERT(m_rareData);
+        return m_rareData->m_constantBuffers[index];
+    }
+    JSValue* constantBuffer(unsigned index)
+    {
+        return constantBufferAsVector(index).data();
+    }
 
 
-        unsigned addRegExp(RegExp* r) { createRareDataIfNecessary(); unsigned size = m_rareData->m_regexps.size(); m_rareData->m_regexps.append(r); return size; }
-        RegExp* regexp(int index) const { ASSERT(m_rareData); return m_rareData->m_regexps[index].get(); }
+    JSGlobalObject* globalObject() { return m_globalObject.get(); }
+        
+    JSGlobalObject* globalObjectFor(CodeOrigin);
 
 
+    // Jump Tables
 
 
-        // Jump Tables
+    size_t numberOfImmediateSwitchJumpTables() const { return m_rareData ? m_rareData->m_immediateSwitchJumpTables.size() : 0; }
+    SimpleJumpTable& addImmediateSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_immediateSwitchJumpTables.append(SimpleJumpTable()); return m_rareData->m_immediateSwitchJumpTables.last(); }
+    SimpleJumpTable& immediateSwitchJumpTable(int tableIndex) { RELEASE_ASSERT(m_rareData); return m_rareData->m_immediateSwitchJumpTables[tableIndex]; }
 
 
-        size_t numberOfImmediateSwitchJumpTables() const { return m_rareData ? m_rareData->m_immediateSwitchJumpTables.size() : 0; }
-        SimpleJumpTable& addImmediateSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_immediateSwitchJumpTables.append(SimpleJumpTable()); return m_rareData->m_immediateSwitchJumpTables.last(); }
-        SimpleJumpTable& immediateSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_immediateSwitchJumpTables[tableIndex]; }
+    size_t numberOfCharacterSwitchJumpTables() const { return m_rareData ? m_rareData->m_characterSwitchJumpTables.size() : 0; }
+    SimpleJumpTable& addCharacterSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_characterSwitchJumpTables.append(SimpleJumpTable()); return m_rareData->m_characterSwitchJumpTables.last(); }
+    SimpleJumpTable& characterSwitchJumpTable(int tableIndex) { RELEASE_ASSERT(m_rareData); return m_rareData->m_characterSwitchJumpTables[tableIndex]; }
 
 
-        size_t numberOfCharacterSwitchJumpTables() const { return m_rareData ? m_rareData->m_characterSwitchJumpTables.size() : 0; }
-        SimpleJumpTable& addCharacterSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_characterSwitchJumpTables.append(SimpleJumpTable()); return m_rareData->m_characterSwitchJumpTables.last(); }
-        SimpleJumpTable& characterSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_characterSwitchJumpTables[tableIndex]; }
+    size_t numberOfStringSwitchJumpTables() const { return m_rareData ? m_rareData->m_stringSwitchJumpTables.size() : 0; }
+    StringJumpTable& addStringSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_stringSwitchJumpTables.append(StringJumpTable()); return m_rareData->m_stringSwitchJumpTables.last(); }
+    StringJumpTable& stringSwitchJumpTable(int tableIndex) { RELEASE_ASSERT(m_rareData); return m_rareData->m_stringSwitchJumpTables[tableIndex]; }
 
 
-        size_t numberOfStringSwitchJumpTables() const { return m_rareData ? m_rareData->m_stringSwitchJumpTables.size() : 0; }
-        StringJumpTable& addStringSwitchJumpTable() { createRareDataIfNecessary(); m_rareData->m_stringSwitchJumpTables.append(StringJumpTable()); return m_rareData->m_stringSwitchJumpTables.last(); }
-        StringJumpTable& stringSwitchJumpTable(int tableIndex) { ASSERT(m_rareData); return m_rareData->m_stringSwitchJumpTables[tableIndex]; }
 
 
+    SharedSymbolTable* symbolTable() const { return m_unlinkedCode->symbolTable(); }
 
 
-        SymbolTable& symbolTable() { return m_symbolTable; }
+    EvalCodeCache& evalCodeCache() { createRareDataIfNecessary(); return m_rareData->m_evalCodeCache; }
 
 
-        EvalCodeCache& evalCodeCache() { createRareDataIfNecessary(); return m_rareData->m_evalCodeCache; }
+    enum ShrinkMode {
+        // Shrink prior to generating machine code that may point directly into vectors.
+        EarlyShrink,
+            
+        // Shrink after generating machine code, and after possibly creating new vectors
+        // and appending to others. At this time it is not safe to shrink certain vectors
+        // because we would have generated machine code that references them directly.
+        LateShrink
+    };
+    void shrinkToFit(ShrinkMode);
+        
+    void copyPostParseDataFrom(CodeBlock* alternative);
+    void copyPostParseDataFromAlternative();
+        
+    // Functions for controlling when JITting kicks in, in a mixed mode
+    // execution world.
+        
+    bool checkIfJITThresholdReached()
+    {
+        return m_llintExecuteCounter.checkIfThresholdCrossedAndSet(this);
+    }
+        
+    void dontJITAnytimeSoon()
+    {
+        m_llintExecuteCounter.deferIndefinitely();
+    }
+        
+    void jitAfterWarmUp()
+    {
+        m_llintExecuteCounter.setNewThreshold(Options::thresholdForJITAfterWarmUp(), this);
+    }
+        
+    void jitSoon()
+    {
+        m_llintExecuteCounter.setNewThreshold(Options::thresholdForJITSoon(), this);
+    }
+        
+    const ExecutionCounter& llintExecuteCounter() const
+    {
+        return m_llintExecuteCounter;
+    }
+        
+    // Functions for controlling when tiered compilation kicks in. This
+    // controls both when the optimizing compiler is invoked and when OSR
+    // entry happens. Two triggers exist: the loop trigger and the return
+    // trigger. In either case, when an addition to m_jitExecuteCounter
+    // causes it to become non-negative, the optimizing compiler is
+    // invoked. This includes a fast check to see if this CodeBlock has
+    // already been optimized (i.e. replacement() returns a CodeBlock
+    // that was optimized with a higher tier JIT than this one). In the
+    // case of the loop trigger, if the optimized compilation succeeds
+    // (or has already succeeded in the past) then OSR is attempted to
+    // redirect program flow into the optimized code.
+        
+    // These functions are called from within the optimization triggers,
+    // and are used as a single point at which we define the heuristics
+    // for how much warm-up is mandated before the next optimization
+    // trigger files. All CodeBlocks start out with optimizeAfterWarmUp(),
+    // as this is called from the CodeBlock constructor.
+        
+    // When we observe a lot of speculation failures, we trigger a
+    // reoptimization. But each time, we increase the optimization trigger
+    // to avoid thrashing.
+    unsigned reoptimizationRetryCounter() const;
+    void countReoptimization();
 
 
-        void shrinkToFit();
+    int32_t codeTypeThresholdMultiplier() const;
+        
+    int32_t counterValueForOptimizeAfterWarmUp();
+    int32_t counterValueForOptimizeAfterLongWarmUp();
+    int32_t counterValueForOptimizeSoon();
+        
+    int32_t* addressOfJITExecuteCounter()
+    {
+        return &m_jitExecuteCounter.m_counter;
+    }
+        
+    static ptrdiff_t offsetOfJITExecuteCounter() { return OBJECT_OFFSETOF(CodeBlock, m_jitExecuteCounter) + OBJECT_OFFSETOF(ExecutionCounter, m_counter); }
+    static ptrdiff_t offsetOfJITExecutionActiveThreshold() { return OBJECT_OFFSETOF(CodeBlock, m_jitExecuteCounter) + OBJECT_OFFSETOF(ExecutionCounter, m_activeThreshold); }
+    static ptrdiff_t offsetOfJITExecutionTotalCount() { return OBJECT_OFFSETOF(CodeBlock, m_jitExecuteCounter) + OBJECT_OFFSETOF(ExecutionCounter, m_totalCount); }
 
 
-        // FIXME: Make these remaining members private.
+    const ExecutionCounter& jitExecuteCounter() const { return m_jitExecuteCounter; }
+        
+    unsigned optimizationDelayCounter() const { return m_optimizationDelayCounter; }
+        
+    // Check if the optimization threshold has been reached, and if not,
+    // adjust the heuristics accordingly. Returns true if the threshold has
+    // been reached.
+    bool checkIfOptimizationThresholdReached();
+        
+    // Call this to force the next optimization trigger to fire. This is
+    // rarely wise, since optimization triggers are typically more
+    // expensive than executing baseline code.
+    void optimizeNextInvocation();
+        
+    // Call this to prevent optimization from happening again. Note that
+    // optimization will still happen after roughly 2^29 invocations,
+    // so this is really meant to delay that as much as possible. This
+    // is called if optimization failed, and we expect it to fail in
+    // the future as well.
+    void dontOptimizeAnytimeSoon();
+        
+    // Call this to reinitialize the counter to its starting state,
+    // forcing a warm-up to happen before the next optimization trigger
+    // fires. This is called in the CodeBlock constructor. It also
+    // makes sense to call this if an OSR exit occurred. Note that
+    // OSR exit code is code generated, so the value of the execute
+    // counter that this corresponds to is also available directly.
+    void optimizeAfterWarmUp();
+        
+    // Call this to force an optimization trigger to fire only after
+    // a lot of warm-up.
+    void optimizeAfterLongWarmUp();
+        
+    // Call this to cause an optimization trigger to fire soon, but
+    // not necessarily the next one. This makes sense if optimization
+    // succeeds. Successfuly optimization means that all calls are
+    // relinked to the optimized code, so this only affects call
+    // frames that are still executing this CodeBlock. The value here
+    // is tuned to strike a balance between the cost of OSR entry
+    // (which is too high to warrant making every loop back edge to
+    // trigger OSR immediately) and the cost of executing baseline
+    // code (which is high enough that we don't necessarily want to
+    // have a full warm-up). The intuition for calling this instead of
+    // optimizeNextInvocation() is for the case of recursive functions
+    // with loops. Consider that there may be N call frames of some
+    // recursive function, for a reasonably large value of N. The top
+    // one triggers optimization, and then returns, and then all of
+    // the others return. We don't want optimization to be triggered on
+    // each return, as that would be superfluous. It only makes sense
+    // to trigger optimization if one of those functions becomes hot
+    // in the baseline code.
+    void optimizeSoon();
+        
+    uint32_t osrExitCounter() const { return m_osrExitCounter; }
+        
+    void countOSRExit() { m_osrExitCounter++; }
+        
+    uint32_t* addressOfOSRExitCounter() { return &m_osrExitCounter; }
+        
+    static ptrdiff_t offsetOfOSRExitCounter() { return OBJECT_OFFSETOF(CodeBlock, m_osrExitCounter); }
 
 
-        int m_numCalleeRegisters;
-        // NOTE: numConstants holds the number of constant registers allocated
-        // by the code generator, not the number of constant registers used.
-        // (Duplicate constants are uniqued during code generation, and spare
-        // constant registers may be allocated.)
-        int m_numConstants;
-        int m_numVars;
-        int m_numParameters;
+#if ENABLE(JIT)
+    uint32_t adjustedExitCountThreshold(uint32_t desiredThreshold);
+    uint32_t exitCountThresholdForReoptimization();
+    uint32_t exitCountThresholdForReoptimizationFromLoop();
+    bool shouldReoptimizeNow();
+    bool shouldReoptimizeFromLoopNow();
+#endif
 
 
-    private:
-#if !defined(NDEBUG) || ENABLE(OPCODE_SAMPLING)
-        void dump(ExecState*, const Vector<Instruction>::const_iterator& begin, Vector<Instruction>::const_iterator&) const;
+#if ENABLE(VALUE_PROFILER)
+    bool shouldOptimizeNow();
+    void updateAllValueProfilePredictions(OperationInProgress = NoOperation);
+    void updateAllArrayPredictions(OperationInProgress = NoOperation);
+    void updateAllPredictions(OperationInProgress = NoOperation);
+#else
+    bool shouldOptimizeNow() { return false; }
+    void updateAllValueProfilePredictions(OperationInProgress = NoOperation) { }
+    void updateAllArrayPredictions(OperationInProgress = NoOperation) { }
+    void updateAllPredictions(OperationInProgress = NoOperation) { }
+#endif
+        
+#if ENABLE(JIT)
+    void reoptimize();
 #endif
 
 #endif
 
-        void reparseForExceptionInfoIfNecessary(CallFrame*);
+#if ENABLE(VERBOSE_VALUE_PROFILE)
+    void dumpValueProfiles();
+#endif
+        
+    // FIXME: Make these remaining members private.
 
 
-        void createRareDataIfNecessary()
-        {
-            if (!m_rareData)
-                m_rareData.set(new RareData);
-        }
+    int m_numCalleeRegisters;
+    int m_numVars;
+    bool m_isConstructor;
 
 
-        ScopeNode* m_ownerNode;
-        JSGlobalData* m_globalData;
+protected:
+#if ENABLE(JIT)
+    virtual bool jitCompileImpl(ExecState*) = 0;
+    virtual void jettisonImpl() = 0;
+#endif
+    virtual void visitWeakReferences(SlotVisitor&);
+    virtual void finalizeUnconditionally();
 
 
-        Vector<Instruction> m_instructions;
-#ifndef NDEBUG
-        unsigned m_instructionCount;
+#if ENABLE(DFG_JIT)
+    void tallyFrequentExitSites();
+#else
+    void tallyFrequentExitSites() { }
 #endif
 #endif
+
+private:
+    friend class DFGCodeBlocks;
+        
+    double optimizationThresholdScalingFactor();
+
 #if ENABLE(JIT)
 #if ENABLE(JIT)
-        JITCodeRef m_jitCode;
+    ClosureCallStubRoutine* findClosureCallForReturnPC(ReturnAddressPtr);
+#endif
+        
+#if ENABLE(VALUE_PROFILER)
+    void updateAllPredictionsAndCountLiveness(OperationInProgress, unsigned& numberOfLiveNonArgumentValueProfiles, unsigned& numberOfSamplesInProfiles);
 #endif
 
 #endif
 
-        int m_thisRegister;
+    void setIdentifiers(const Vector<Identifier>& identifiers)
+    {
+        RELEASE_ASSERT(m_identifiers.isEmpty());
+        m_identifiers.appendVector(identifiers);
+    }
 
 
-        bool m_needsFullScopeChain;
-        bool m_usesEval;
-        bool m_usesArguments;
-        bool m_isNumericCompareFunction;
+    void setConstantRegisters(const Vector<WriteBarrier<Unknown> >& constants)
+    {
+        size_t count = constants.size();
+        m_constantRegisters.resize(count);
+        for (size_t i = 0; i < count; i++)
+            m_constantRegisters[i].set(*m_vm, ownerExecutable(), constants[i].get());
+    }
 
 
-        CodeType m_codeType;
+    void dumpBytecode(PrintStream&, ExecState*, const Instruction* begin, const Instruction*&);
+
+    CString registerName(ExecState*, int r) const;
+    void printUnaryOp(PrintStream&, ExecState*, int location, const Instruction*&, const char* op);
+    void printBinaryOp(PrintStream&, ExecState*, int location, const Instruction*&, const char* op);
+    void printConditionalJump(PrintStream&, ExecState*, const Instruction*, const Instruction*&, int location, const char* op);
+    void printGetByIdOp(PrintStream&, ExecState*, int location, const Instruction*&);
+    void printGetByIdCacheStatus(PrintStream&, ExecState*, int location);
+    enum CacheDumpMode { DumpCaches, DontDumpCaches };
+    void printCallOp(PrintStream&, ExecState*, int location, const Instruction*&, const char* op, CacheDumpMode);
+    void printPutByIdOp(PrintStream&, ExecState*, int location, const Instruction*&, const char* op);
+    void beginDumpProfiling(PrintStream&, bool& hasPrintedProfiling);
+    void dumpValueProfiling(PrintStream&, const Instruction*&, bool& hasPrintedProfiling);
+    void dumpArrayProfiling(PrintStream&, const Instruction*&, bool& hasPrintedProfiling);
+#if ENABLE(VALUE_PROFILER)
+    void dumpRareCaseProfile(PrintStream&, const char* name, RareCaseProfile*, bool& hasPrintedProfiling);
+#endif
 
 
-        RefPtr<SourceProvider> m_source;
-        unsigned m_sourceOffset;
+    void visitStructures(SlotVisitor&, Instruction* vPC);
+        
+#if ENABLE(DFG_JIT)
+    bool shouldImmediatelyAssumeLivenessDuringScan()
+    {
+        // Null m_dfgData means that this is a baseline JIT CodeBlock. Baseline JIT
+        // CodeBlocks don't need to be jettisoned when their weak references go
+        // stale. So if a basline JIT CodeBlock gets scanned, we can assume that
+        // this means that it's live.
+        if (!m_dfgData)
+            return true;
+            
+        // For simplicity, we don't attempt to jettison code blocks during GC if
+        // they are executing. Instead we strongly mark their weak references to
+        // allow them to continue to execute soundly.
+        if (m_dfgData->mayBeExecuting)
+            return true;
+            
+        if (Options::forceDFGCodeBlockLiveness())
+            return true;
 
 
-#if !ENABLE(JIT)
-        Vector<unsigned> m_propertyAccessInstructions;
-        Vector<unsigned> m_globalResolveInstructions;
+        return false;
+    }
 #else
 #else
-        Vector<StructureStubInfo> m_structureStubInfos;
-        Vector<GlobalResolveInfo> m_globalResolveInfos;
-        Vector<CallLinkInfo> m_callLinkInfos;
-        Vector<CallLinkInfo*> m_linkedCallerList;
+    bool shouldImmediatelyAssumeLivenessDuringScan() { return true; }
+#endif
+        
+    void performTracingFixpointIteration(SlotVisitor&);
+        
+    void stronglyVisitStrongReferences(SlotVisitor&);
+    void stronglyVisitWeakReferences(SlotVisitor&);
+
+    void createRareDataIfNecessary()
+    {
+        if (!m_rareData)
+            m_rareData = adoptPtr(new RareData);
+    }
+
+#if ENABLE(JIT)
+    void resetStubInternal(RepatchBuffer&, StructureStubInfo&);
+    void resetStubDuringGCInternal(RepatchBuffer&, StructureStubInfo&);
+#endif
+    WriteBarrier<UnlinkedCodeBlock> m_unlinkedCode;
+    int m_numParameters;
+    WriteBarrier<ScriptExecutable> m_ownerExecutable;
+    VM* m_vm;
+
+    RefCountedArray<Instruction> m_instructions;
+    int m_thisRegister;
+    int m_argumentsRegister;
+    int m_activationRegister;
+
+    bool m_isStrictMode;
+    bool m_needsActivation;
+
+    RefPtr<SourceProvider> m_source;
+    unsigned m_sourceOffset;
+    unsigned m_firstLineColumnOffset;
+    unsigned m_codeType;
+
+#if ENABLE(LLINT)
+    SegmentedVector<LLIntCallLinkInfo, 8> m_llintCallLinkInfos;
+    SentinelLinkedList<LLIntCallLinkInfo, BasicRawSentinelNode<LLIntCallLinkInfo> > m_incomingLLIntCalls;
+#endif
+#if ENABLE(JIT)
+    Vector<StructureStubInfo> m_structureStubInfos;
+    Vector<ByValInfo> m_byValInfos;
+    Vector<CallLinkInfo> m_callLinkInfos;
+    JITCode m_jitCode;
+    MacroAssemblerCodePtr m_jitCodeWithArityCheck;
+    SentinelLinkedList<CallLinkInfo, BasicRawSentinelNode<CallLinkInfo> > m_incomingCalls;
+#endif
+#if ENABLE(DFG_JIT) || ENABLE(LLINT)
+    OwnPtr<CompactJITCodeMap> m_jitCodeMap;
+#endif
+#if ENABLE(DFG_JIT)
+    struct WeakReferenceTransition {
+        WeakReferenceTransition() { }
+            
+        WeakReferenceTransition(VM& vm, JSCell* owner, JSCell* codeOrigin, JSCell* from, JSCell* to)
+            : m_from(vm, owner, from)
+            , m_to(vm, owner, to)
+        {
+            if (!!codeOrigin)
+                m_codeOrigin.set(vm, owner, codeOrigin);
+        }
+
+        WriteBarrier<JSCell> m_codeOrigin;
+        WriteBarrier<JSCell> m_from;
+        WriteBarrier<JSCell> m_to;
+    };
+        
+    struct DFGData {
+        DFGData()
+            : mayBeExecuting(false)
+            , isJettisoned(false)
+        {
+        }
+            
+        Vector<DFG::OSREntryData> osrEntry;
+        SegmentedVector<DFG::OSRExit, 8> osrExit;
+        Vector<DFG::SpeculationRecovery> speculationRecovery;
+        SegmentedVector<JumpReplacementWatchpoint, 1, 0> watchpoints;
+        Vector<WeakReferenceTransition> transitions;
+        Vector<WriteBarrier<JSCell> > weakReferences;
+        DFG::VariableEventStream variableEventStream;
+        DFG::MinifiedGraph minifiedDFG;
+        RefPtr<Profiler::Compilation> compilation;
+        bool mayBeExecuting;
+        bool isJettisoned;
+        bool livenessHasBeenProved; // Initialized and used on every GC.
+        bool allTransitionsHaveBeenMarked; // Initialized and used on every GC.
+        unsigned visitAggregateHasBeenCalled; // Unsigned to make it work seamlessly with the broadest set of CAS implementations.
+    };
+        
+    OwnPtr<DFGData> m_dfgData;
+        
+    // This is relevant to non-DFG code blocks that serve as the profiled code block
+    // for DFG code blocks.
+    DFG::ExitProfile m_exitProfile;
+    CompressedLazyOperandValueProfileHolder m_lazyOperandValueProfiles;
+#endif
+#if ENABLE(VALUE_PROFILER)
+    Vector<ValueProfile> m_argumentValueProfiles;
+    SegmentedVector<ValueProfile, 8> m_valueProfiles;
+    SegmentedVector<RareCaseProfile, 8> m_rareCaseProfiles;
+    SegmentedVector<RareCaseProfile, 8> m_specialFastCaseProfiles;
+    SegmentedVector<ArrayAllocationProfile, 8> m_arrayAllocationProfiles;
+    ArrayProfileVector m_arrayProfiles;
 #endif
 #endif
+    SegmentedVector<ObjectAllocationProfile, 8> m_objectAllocationProfiles;
+
+    // Constant Pool
+    Vector<Identifier> m_identifiers;
+    COMPILE_ASSERT(sizeof(Register) == sizeof(WriteBarrier<Unknown>), Register_must_be_same_size_as_WriteBarrier_Unknown);
+    // TODO: This could just be a pointer to m_unlinkedCodeBlock's data, but the DFG mutates
+    // it, so we're stuck with it for now.
+    Vector<WriteBarrier<Unknown> > m_constantRegisters;
+    Vector<WriteBarrier<FunctionExecutable> > m_functionDecls;
+    Vector<WriteBarrier<FunctionExecutable> > m_functionExprs;
+
+    OwnPtr<CodeBlock> m_alternative;
+        
+    ExecutionCounter m_llintExecuteCounter;
+        
+    ExecutionCounter m_jitExecuteCounter;
+    int32_t m_totalJITExecutions;
+    uint32_t m_osrExitCounter;
+    uint16_t m_optimizationDelayCounter;
+    uint16_t m_reoptimizationRetryCounter;
 
 
-        Vector<unsigned> m_jumpTargets;
+    Vector<ResolveOperations> m_resolveOperations;
+    Vector<PutToBaseOperation, 1> m_putToBaseOperations;
 
 
-        // Constant Pool
-        Vector<Identifier> m_identifiers;
-        Vector<Register> m_constantRegisters;
-        Vector<RefPtr<FuncExprNode> > m_functionExpressions;
+    struct RareData {
+        WTF_MAKE_FAST_ALLOCATED;
+    public:
+        Vector<HandlerInfo> m_exceptionHandlers;
 
 
-        SymbolTable m_symbolTable;
+        // Buffers used for large array literals
+        Vector<Vector<JSValue> > m_constantBuffers;
+            
+        // Jump Tables
+        Vector<SimpleJumpTable> m_immediateSwitchJumpTables;
+        Vector<SimpleJumpTable> m_characterSwitchJumpTables;
+        Vector<StringJumpTable> m_stringSwitchJumpTables;
 
 
-        struct ExceptionInfo {
-            Vector<ExpressionRangeInfo> m_expressionInfo;
-            Vector<LineInfo> m_lineInfo;
-            Vector<GetByIdExceptionInfo> m_getByIdExceptionInfo;
+        EvalCodeCache m_evalCodeCache;
 
 #if ENABLE(JIT)
 
 #if ENABLE(JIT)
-            Vector<PC> m_pcVector;
+        Vector<CallReturnOffsetToBytecodeOffset, 0, UnsafeVectorOverflow> m_callReturnIndexVector;
+#endif
+#if ENABLE(DFG_JIT)
+        SegmentedVector<InlineCallFrame, 4> m_inlineCallFrames;
+        Vector<CodeOriginAtCallReturnOffset, 0, UnsafeVectorOverflow> m_codeOrigins;
+#endif
+    };
+#if COMPILER(MSVC)
+    friend void WTF::deleteOwnedPtr<RareData>(RareData*);
+#endif
+    OwnPtr<RareData> m_rareData;
+#if ENABLE(JIT)
+    DFG::CapabilityLevel m_canCompileWithDFGState;
 #endif
 #endif
-        };
-        OwnPtr<ExceptionInfo> m_exceptionInfo;
+};
 
 
-        struct RareData {
-            Vector<HandlerInfo> m_exceptionHandlers;
+// Program code is not marked by any function, so we make the global object
+// responsible for marking it.
 
 
-            // Rare Constants
-            Vector<RefPtr<FuncDeclNode> > m_functions;
-            Vector<JSValuePtr> m_unexpectedConstants;
-            Vector<RefPtr<RegExp> > m_regexps;
+class GlobalCodeBlock : public CodeBlock {
+protected:
+    GlobalCodeBlock(CopyParsedBlockTag, GlobalCodeBlock& other)
+        : CodeBlock(CopyParsedBlock, other)
+    {
+    }
+        
+    GlobalCodeBlock(ScriptExecutable* ownerExecutable, UnlinkedCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, unsigned baseScopeDepth, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, unsigned firstLineColumnOffset, PassOwnPtr<CodeBlock> alternative)
+        : CodeBlock(ownerExecutable, unlinkedCodeBlock, globalObject, baseScopeDepth, sourceProvider, sourceOffset, firstLineColumnOffset, alternative)
+    {
+    }
+};
 
 
-            // Jump Tables
-            Vector<SimpleJumpTable> m_immediateSwitchJumpTables;
-            Vector<SimpleJumpTable> m_characterSwitchJumpTables;
-            Vector<StringJumpTable> m_stringSwitchJumpTables;
+class ProgramCodeBlock : public GlobalCodeBlock {
+public:
+    ProgramCodeBlock(CopyParsedBlockTag, ProgramCodeBlock& other)
+        : GlobalCodeBlock(CopyParsedBlock, other)
+    {
+    }
 
 
-            EvalCodeCache m_evalCodeCache;
+    ProgramCodeBlock(ProgramExecutable* ownerExecutable, UnlinkedProgramCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned firstLineColumnOffset, PassOwnPtr<CodeBlock> alternative)
+        : GlobalCodeBlock(ownerExecutable, unlinkedCodeBlock, globalObject, 0, sourceProvider, 0, firstLineColumnOffset, alternative)
+    {
+    }
 
 #if ENABLE(JIT)
 
 #if ENABLE(JIT)
-            Vector<FunctionRegisterInfo> m_functionRegisterInfos;
+protected:
+    virtual JSObject* compileOptimized(ExecState*, JSScope*, unsigned bytecodeIndex);
+    virtual void jettisonImpl();
+    virtual bool jitCompileImpl(ExecState*);
+    virtual CodeBlock* replacement();
+    virtual DFG::CapabilityLevel canCompileWithDFGInternal();
 #endif
 #endif
-        };
-        OwnPtr<RareData> m_rareData;
-    };
+};
 
 
-    // Program code is not marked by any function, so we make the global object
-    // responsible for marking it.
+class EvalCodeBlock : public GlobalCodeBlock {
+public:
+    EvalCodeBlock(CopyParsedBlockTag, EvalCodeBlock& other)
+        : GlobalCodeBlock(CopyParsedBlock, other)
+    {
+    }
+        
+    EvalCodeBlock(EvalExecutable* ownerExecutable, UnlinkedEvalCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, int baseScopeDepth, PassOwnPtr<CodeBlock> alternative)
+        : GlobalCodeBlock(ownerExecutable, unlinkedCodeBlock, globalObject, baseScopeDepth, sourceProvider, 0, 1, alternative)
+    {
+    }
 
 
-    class ProgramCodeBlock : public CodeBlock {
-    public:
-        ProgramCodeBlock(ScopeNode* ownerNode, CodeType codeType, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider)
-            : CodeBlock(ownerNode, codeType, sourceProvider, 0)
-            , m_globalObject(globalObject)
-        {
-            m_globalObject->codeBlocks().add(this);
-        }
+    const Identifier& variable(unsigned index) { return unlinkedEvalCodeBlock()->variable(index); }
+    unsigned numVariables() { return unlinkedEvalCodeBlock()->numVariables(); }
+        
+#if ENABLE(JIT)
+protected:
+    virtual JSObject* compileOptimized(ExecState*, JSScope*, unsigned bytecodeIndex);
+    virtual void jettisonImpl();
+    virtual bool jitCompileImpl(ExecState*);
+    virtual CodeBlock* replacement();
+    virtual DFG::CapabilityLevel canCompileWithDFGInternal();
+#endif
 
 
-        ~ProgramCodeBlock()
-        {
-            if (m_globalObject)
-                m_globalObject->codeBlocks().remove(this);
-        }
+private:
+    UnlinkedEvalCodeBlock* unlinkedEvalCodeBlock() const { return jsCast<UnlinkedEvalCodeBlock*>(unlinkedCodeBlock()); }
+};
 
 
-        void clearGlobalObject() { m_globalObject = 0; }
+class FunctionCodeBlock : public CodeBlock {
+public:
+    FunctionCodeBlock(CopyParsedBlockTag, FunctionCodeBlock& other)
+        : CodeBlock(CopyParsedBlock, other)
+    {
+    }
 
 
-    private:
-        JSGlobalObject* m_globalObject; // For program and eval nodes, the global object that marks the constant pool.
-    };
+    FunctionCodeBlock(FunctionExecutable* ownerExecutable, UnlinkedFunctionCodeBlock* unlinkedCodeBlock, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, unsigned sourceOffset, unsigned firstLineColumnOffset, PassOwnPtr<CodeBlock> alternative = nullptr)
+        : CodeBlock(ownerExecutable, unlinkedCodeBlock, globalObject, 0, sourceProvider, sourceOffset, firstLineColumnOffset, alternative)
+    {
+    }
+        
+#if ENABLE(JIT)
+protected:
+    virtual JSObject* compileOptimized(ExecState*, JSScope*, unsigned bytecodeIndex);
+    virtual void jettisonImpl();
+    virtual bool jitCompileImpl(ExecState*);
+    virtual CodeBlock* replacement();
+    virtual DFG::CapabilityLevel canCompileWithDFGInternal();
+#endif
+};
+
+inline CodeBlock* baselineCodeBlockForInlineCallFrame(InlineCallFrame* inlineCallFrame)
+{
+    RELEASE_ASSERT(inlineCallFrame);
+    ExecutableBase* executable = inlineCallFrame->executable.get();
+    RELEASE_ASSERT(executable->structure()->classInfo() == &FunctionExecutable::s_info);
+    return static_cast<FunctionExecutable*>(executable)->baselineCodeBlockFor(inlineCallFrame->isCall ? CodeForCall : CodeForConstruct);
+}
+    
+inline CodeBlock* baselineCodeBlockForOriginAndBaselineCodeBlock(const CodeOrigin& codeOrigin, CodeBlock* baselineCodeBlock)
+{
+    if (codeOrigin.inlineCallFrame)
+        return baselineCodeBlockForInlineCallFrame(codeOrigin.inlineCallFrame);
+    return baselineCodeBlock;
+}
+
+inline int CodeBlock::argumentIndexAfterCapture(size_t argument)
+{
+    if (argument >= static_cast<size_t>(symbolTable()->parameterCount()))
+        return CallFrame::argumentOffset(argument);
+
+    const SlowArgument* slowArguments = symbolTable()->slowArguments();
+    if (!slowArguments || slowArguments[argument].status == SlowArgument::Normal)
+        return CallFrame::argumentOffset(argument);
+
+    ASSERT(slowArguments[argument].status == SlowArgument::Captured);
+    return slowArguments[argument].index;
+}
+
+inline Register& ExecState::r(int index)
+{
+    CodeBlock* codeBlock = this->codeBlock();
+    if (codeBlock->isConstantRegisterIndex(index))
+        return *reinterpret_cast<Register*>(&codeBlock->constantRegister(index));
+    return this[index];
+}
+
+inline Register& ExecState::uncheckedR(int index)
+{
+    RELEASE_ASSERT(index < FirstConstantRegisterIndex);
+    return this[index];
+}
+
+#if ENABLE(DFG_JIT)
+inline bool ExecState::isInlineCallFrame()
+{
+    if (LIKELY(!codeBlock() || codeBlock()->getJITType() != JITCode::DFGJIT))
+        return false;
+    return isInlineCallFrameSlow();
+}
+#endif
 
 
-    class EvalCodeBlock : public ProgramCodeBlock {
-    public:
-        EvalCodeBlock(ScopeNode* ownerNode, JSGlobalObject* globalObject, PassRefPtr<SourceProvider> sourceProvider, int baseScopeDepth)
-            : ProgramCodeBlock(ownerNode, EvalCode, globalObject, sourceProvider)
-            , m_baseScopeDepth(baseScopeDepth)
-        {
-        }
+inline JSValue ExecState::argumentAfterCapture(size_t argument)
+{
+    if (argument >= argumentCount())
+        return jsUndefined();
 
 
-        int baseScopeDepth() const { return m_baseScopeDepth; }
+    if (!codeBlock())
+        return this[argumentOffset(argument)].jsValue();
 
 
-    private:
-        int m_baseScopeDepth;
-    };
+    return this[codeBlock()->argumentIndexAfterCapture(argument)].jsValue();
+}
 
 
+#if ENABLE(DFG_JIT)
+inline void DFGCodeBlocks::mark(void* candidateCodeBlock)
+{
+    // We have to check for 0 and -1 because those are used by the HashMap as markers.
+    uintptr_t value = reinterpret_cast<uintptr_t>(candidateCodeBlock);
+        
+    // This checks for both of those nasty cases in one go.
+    // 0 + 1 = 1
+    // -1 + 1 = 0
+    if (value + 1 <= 1)
+        return;
+        
+    HashSet<CodeBlock*>::iterator iter = m_set.find(static_cast<CodeBlock*>(candidateCodeBlock));
+    if (iter == m_set.end())
+        return;
+        
+    (*iter)->m_dfgData->mayBeExecuting = true;
+}
+#endif
+    
 } // namespace JSC
 
 #endif // CodeBlock_h
 } // namespace JSC
 
 #endif // CodeBlock_h