Ignore:
Timestamp:
Jun 19, 2009, 6:07:06 PM (16 years ago)
Author:
[email protected]
Message:

2009-06-19 Gabor Loki <[email protected]>

Reviewed by Gavin Barraclough.

Reorganize ARM architecture specific macros.
Use PLATFORM_ARM_ARCH(7) instead of PLATFORM(ARM_V7).

Bug 24986: ARM JIT port
<https://bugs.webkit.org/show_bug.cgi?id=24986>

  • assembler/ARMv7Assembler.h:
  • assembler/AbstractMacroAssembler.h: (JSC::AbstractMacroAssembler::Imm32::Imm32):
  • assembler/MacroAssembler.h:
  • assembler/MacroAssemblerCodeRef.h: (JSC::MacroAssemblerCodePtr::MacroAssemblerCodePtr):
  • jit/ExecutableAllocator.h: (JSC::ExecutableAllocator::cacheFlush):
  • jit/JIT.h:
  • jit/JITInlineMethods.h: (JSC::JIT::restoreArgumentReferenceForTrampoline):
  • jit/JITStubs.cpp:
  • jit/JITStubs.h:
  • wtf/Platform.h:
  • yarr/RegexJIT.cpp: (JSC::Yarr::RegexGenerator::generateEnter): (JSC::Yarr::RegexGenerator::generateReturn):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/JITStubs.cpp

    r44884 r44886  
    190190);
    191191
    192 #elif COMPILER(GCC) && PLATFORM(ARM_V7)
     192#elif COMPILER(GCC) && PLATFORM_ARM_ARCH(7)
    193193
    194194#if USE(JIT_STUB_ARGUMENT_VA_LIST)
     
    329329    JIT::compileCTIMachineTrampolines(globalData, &m_executablePool, &m_ctiArrayLengthTrampoline, &m_ctiStringLengthTrampoline, &m_ctiVirtualCallPreLink, &m_ctiVirtualCallLink, &m_ctiVirtualCall, &m_ctiNativeCallThunk);
    330330
    331 #if PLATFORM(ARM_V7)
     331#if PLATFORM_ARM_ARCH(7)
    332332    // Unfortunate the arm compiler does not like the use of offsetof on JITStackFrame (since it contains non POD types),
    333333    // and the FIELD_OFFSET macro does not appear constantish enough for it to be happy with its use in COMPILE_ASSERT
     
    570570namespace JITStubs {
    571571
    572 #if PLATFORM(ARM_V7)
     572#if PLATFORM_ARM_ARCH(7)
    573573
    574574#define DEFINE_STUB_FUNCTION(rtype, op) \
Note: See TracChangeset for help on using the changeset viewer.