Ignore:
Timestamp:
Jan 30, 2012, 12:38:32 PM (14 years ago)
Author:
[email protected]
Message:

Unreviewed build fix for interpreter builds.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::CodeBlock):

  • bytecode/CodeBlock.h:

(CodeBlock):

  • interpreter/Interpreter.cpp:

(JSC::Interpreter::privateExecute):

  • tools/CodeProfile.cpp:

(JSC::CodeProfile::sample):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/tools/CodeProfile.cpp

    r106197 r106276  
    9393    while (framePointer) {
    9494        CodeType type;
     95
     96#if ENABLE(JIT)
     97        // Determine if this sample fell in JIT code, and if so, from which JIT & why.
    9598        void* ownerUID = CodeProfiling::getOwnerUIDForPC(pc);
    9699
    97         // Determine if this sample fell in JIT code, and if so, from which JIT & why.
    98100        if (!ownerUID)
    99101            type = EngineFrame;
     
    113115                type = BaselineProfile;
    114116        }
     117#else
     118        type = EngineFrame;
     119#endif
    115120
    116121        // A sample in JIT code terminates the trace.
Note: See TracChangeset for help on using the changeset viewer.