Ignore:
Timestamp:
Jan 29, 2014, 11:18:54 AM (12 years ago)
Author:
[email protected]
Message:

Merge the jsCStack branch
https://bugs.webkit.org/show_bug.cgi?id=127763

Reviewed by Mark Hahnenberg.

Source/JavaScriptCore:

Changes from http://svn.webkit.org/repository/webkit/branches/jsCStack
up to changeset 162958.

Source/WebCore:

Changes from http://svn.webkit.org/repository/webkit/branches/jsCStack
up to changeset 162958.

Source/WTF:

Changes from http://svn.webkit.org/repository/webkit/branches/jsCStack
up to changeset 162958.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGPlan.h

    r155023 r163027  
    11/*
    2  * Copyright (C) 2013 Apple Inc. All rights reserved.
     2 * Copyright (C) 2013, 2014 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    5656struct Plan : public ThreadSafeRefCounted<Plan> {
    5757    Plan(
    58         PassRefPtr<CodeBlock>, CompilationMode, unsigned osrEntryBytecodeIndex,
     58        PassRefPtr<CodeBlock> codeBlockToCompile, CodeBlock* profiledDFGCodeBlock,
     59        CompilationMode, unsigned osrEntryBytecodeIndex,
    5960        const Operands<JSValue>& mustHandleValues);
    6061    ~Plan();
     
    7172    VM& vm;
    7273    RefPtr<CodeBlock> codeBlock;
     74    RefPtr<CodeBlock> profiledDFGCodeBlock;
    7375    CompilationMode mode;
    7476    const unsigned osrEntryBytecodeIndex;
     
    8587    DesiredWriteBarriers writeBarriers;
    8688    DesiredTransitions transitions;
     89   
     90    bool willTryToTierUp;
    8791
    8892    double beforeFTL;
     
    9397
    9498private:
     99    bool reportCompileTimes() const;
     100   
    95101    enum CompilationPath { FailPath, DFGPath, FTLPath };
    96102    CompilationPath compileInThreadImpl(LongLivedState&);
Note: See TracChangeset for help on using the changeset viewer.