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


Ignore:
Timestamp:
Apr 21, 2017, 1:31:39 PM (8 years ago)
Author:
[email protected]
Message:

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

broke arm64 build (Requested by keith_miller on #webkit).

Reverted changesets:

"Add signaling API"
https://bugs.webkit.org/show_bug.cgi?id=170976
http://trac.webkit.org/changeset/215620

"Unreviewed, fix Cloop build."
http://trac.webkit.org/changeset/215623

File:
1 edited

Legend:

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

    r215623 r215634  
    8282extern JS_EXPORTDATA uintptr_t endOfFixedExecutableMemoryPool;
    8383
    84 inline bool isJITPC(void* pc)
    85 {
    86     return reinterpret_cast<void*>(startOfFixedExecutableMemoryPool) <= pc
    87         && pc < reinterpret_cast<void*>(endOfFixedExecutableMemoryPool);
    88 }
    89 
    9084typedef void (*JITWriteSeparateHeapsFunction)(off_t, const void*, size_t);
    9185extern JS_EXPORTDATA JITWriteSeparateHeapsFunction jitWriteSeparateHeapsFunction;
     
    150144};
    151145
    152 #else
    153 inline bool isJITPC(void*) { return false; }
    154146#endif // ENABLE(JIT) && ENABLE(ASSEMBLER)
    155147
    156 
    157148} // namespace JSC
Note: See TracChangeset for help on using the changeset viewer.