Changeset 48525 in webkit for trunk/JavaScriptCore/jit/JIT.h
- Timestamp:
- Sep 18, 2009, 1:18:27 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.h
r47614 r48525 227 227 static const FPRegisterID fpRegT1 = X86Registers::xmm1; 228 228 static const FPRegisterID fpRegT2 = X86Registers::xmm2; 229 #elif PLATFORM _ARM_ARCH(7)229 #elif PLATFORM(ARM_THUMB2) 230 230 static const RegisterID returnValueRegister = ARMRegisters::r0; 231 231 static const RegisterID cachedResultRegister = ARMRegisters::r0; … … 243 243 static const FPRegisterID fpRegT1 = ARMRegisters::d1; 244 244 static const FPRegisterID fpRegT2 = ARMRegisters::d2; 245 #elif PLATFORM(ARM )245 #elif PLATFORM(ARM_TRADITIONAL) 246 246 static const RegisterID returnValueRegister = ARMRegisters::r0; 247 247 static const RegisterID cachedResultRegister = ARMRegisters::r0; … … 572 572 static const int patchOffsetMethodCheckProtoStruct = 18; 573 573 static const int patchOffsetMethodCheckPutFunction = 29; 574 #elif PLATFORM _ARM_ARCH(7)574 #elif PLATFORM(ARM_THUMB2) 575 575 // These architecture specific value are used to enable patching - see comment on op_put_by_id. 576 576 static const int patchOffsetPutByIdStructure = 10; … … 595 595 static const int patchOffsetMethodCheckProtoStruct = 28; 596 596 static const int patchOffsetMethodCheckPutFunction = 46; 597 #elif PLATFORM(ARM )597 #elif PLATFORM(ARM_TRADITIONAL) 598 598 // These architecture specific value are used to enable patching - see comment on op_put_by_id. 599 599 static const int patchOffsetPutByIdStructure = 4; … … 621 621 #endif // USE(JSVALUE32_64) 622 622 623 #if PLATFORM(ARM ) && !PLATFORM_ARM_ARCH(7)623 #if PLATFORM(ARM_TRADITIONAL) 624 624 // sequenceOpCall 625 625 static const int sequenceOpCallInstructionSpace = 12;
Note:
See TracChangeset
for help on using the changeset viewer.