Changeset 215638 in webkit for trunk/Source/JavaScriptCore/jit


Ignore:
Timestamp:
Apr 21, 2017, 2:28:17 PM (8 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r215634.

underlying build issues should have been fixed

Reverted changeset:

"Unreviewed, rolling out r215620 and r215623."
https://bugs.webkit.org/show_bug.cgi?id=171139
http://trac.webkit.org/changeset/215634

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/ExecutableAllocator.h

    r215634 r215638  
    8282extern JS_EXPORTDATA uintptr_t endOfFixedExecutableMemoryPool;
    8383
     84inline bool isJITPC(void* pc)
     85{
     86    return reinterpret_cast<void*>(startOfFixedExecutableMemoryPool) <= pc
     87        && pc < reinterpret_cast<void*>(endOfFixedExecutableMemoryPool);
     88}
     89
    8490typedef void (*JITWriteSeparateHeapsFunction)(off_t, const void*, size_t);
    8591extern JS_EXPORTDATA JITWriteSeparateHeapsFunction jitWriteSeparateHeapsFunction;
     
    144150};
    145151
     152#else
     153inline bool isJITPC(void*) { return false; }
    146154#endif // ENABLE(JIT) && ENABLE(ASSEMBLER)
    147155
     156
    148157} // namespace JSC
Note: See TracChangeset for help on using the changeset viewer.