Changeset 225293 in webkit for trunk/Source/JavaScriptCore/assembler/ProbeContext.cpp
- Timestamp:
- Nov 29, 2017, 1:42:00 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/ProbeContext.cpp
- Property svn:executable deleted
r225286 r225293 41 41 void* originalLR = cpu.gpr<void*>(ARM64Registers::lr); 42 42 void* originalPC = cpu.pc(); 43 #elif CPU(MIPS)44 auto& cpu = context.cpu;45 void* originalRA = cpu.gpr<void*>(MIPSRegisters::ra);46 void* originalPC = cpu.pc();47 43 #endif 48 44 … … 54 50 // The ARM64 probe trampoline does not support changing both lr and pc. 55 51 RELEASE_ASSERT(originalPC == cpu.pc() || originalLR == cpu.gpr<void*>(ARM64Registers::lr)); 56 #elif CPU(MIPS)57 // The MIPS probe trampoline does not support changing both ra and pc.58 RELEASE_ASSERT(originalPC == cpu.pc() || originalRA == cpu.gpr<void*>(MIPSRegisters::ra));59 52 #endif 60 53
Note:
See TracChangeset
for help on using the changeset viewer.