Changeset 156780 in webkit for trunk/Source/JavaScriptCore/assembler/MacroAssemblerX86Common.h
- Timestamp:
- Oct 2, 2013, 11:17:46 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/MacroAssemblerX86Common.h
r156617 r156780 99 99 static const RegisterID framePointerRegister = X86Registers::ebp; 100 100 101 #if ENABLE(JIT_CONSTANT_BLINDING)102 101 static bool shouldBlindForSpecificArch(uint32_t value) { return value >= 0x00ffffff; } 103 102 #if CPU(X86_64) … … 105 104 #if OS(DARWIN) // On 64-bit systems other than DARWIN uint64_t and uintptr_t are the same type so overload is prohibited. 106 105 static bool shouldBlindForSpecificArch(uintptr_t value) { return value >= 0x00ffffff; } 107 #endif108 106 #endif 109 107 #endif
Note:
See TracChangeset
for help on using the changeset viewer.