Changeset 220921 in webkit
- Timestamp:
- Aug 18, 2017, 10:54:50 AM (8 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r220894 r220921 1 2017-08-18 Mark Lam <mark.lam@apple.com> 2 3 Rename ProbeContext and ProbeFunction to Probe::State and Probe::Function. 4 https://bugs.webkit.org/show_bug.cgi?id=175725 5 <rdar://problem/33965477> 6 7 Rubber-stamped by JF Bastien. 8 9 This is purely a refactoring patch (in preparation for the introduction of a 10 Probe::Context data structure in https://bugs.webkit.org/show_bug.cgi?id=175688 11 later). This patch does not change any semantics / behavior. 12 13 * assembler/AbstractMacroAssembler.h: 14 * assembler/MacroAssembler.cpp: 15 (JSC::stdFunctionCallback): 16 (JSC::MacroAssembler::probe): 17 * assembler/MacroAssembler.h: 18 (JSC::ProbeContext::gpr): Deleted. 19 (JSC::ProbeContext::spr): Deleted. 20 (JSC::ProbeContext::fpr): Deleted. 21 (JSC::ProbeContext::gprName): Deleted. 22 (JSC::ProbeContext::sprName): Deleted. 23 (JSC::ProbeContext::fprName): Deleted. 24 (JSC::ProbeContext::pc): Deleted. 25 (JSC::ProbeContext::fp): Deleted. 26 (JSC::ProbeContext::sp): Deleted. 27 * assembler/MacroAssemblerARM.cpp: 28 (JSC::MacroAssembler::probe): 29 * assembler/MacroAssemblerARM.h: 30 (JSC::MacroAssemblerARM::trustedImm32FromPtr): 31 * assembler/MacroAssemblerARM64.cpp: 32 (JSC::arm64ProbeError): 33 (JSC::MacroAssembler::probe): 34 * assembler/MacroAssemblerARMv7.cpp: 35 (JSC::MacroAssembler::probe): 36 * assembler/MacroAssemblerARMv7.h: 37 (JSC::MacroAssemblerARMv7::trustedImm32FromPtr): 38 * assembler/MacroAssemblerPrinter.cpp: 39 (JSC::Printer::printCallback): 40 * assembler/MacroAssemblerPrinter.h: 41 * assembler/MacroAssemblerX86Common.cpp: 42 (JSC::MacroAssembler::probe): 43 * assembler/Printer.h: 44 (JSC::Printer::Context::Context): 45 * assembler/testmasm.cpp: 46 (JSC::testProbeReadsArgumentRegisters): 47 (JSC::testProbeWritesArgumentRegisters): 48 (JSC::testProbePreservesGPRS): 49 (JSC::testProbeModifiesStackPointer): 50 (JSC::testProbeModifiesStackPointerToInsideProbeStateOnStack): 51 (JSC::testProbeModifiesStackPointerToNBytesBelowSP): 52 (JSC::testProbeModifiesProgramCounter): 53 (JSC::fillStack): 54 (JSC::testProbeModifiesStackWithCallback): 55 (JSC::run): 56 (JSC::testProbeModifiesStackPointerToInsideProbeContextOnStack): Deleted. 57 1 58 2017-08-17 JF Bastien <jfbastien@apple.com> 2 59 -
trunk/Source/JavaScriptCore/assembler/AbstractMacroAssembler.h
r220823 r220921 45 45 46 46 #if ENABLE(MASM_PROBE) 47 struct ProbeContext; 48 typedef void (*ProbeFunction)(struct ProbeContext*); 47 namespace Probe { 48 struct State; 49 typedef void (*Function)(struct State*); 50 } // namespace Probe 49 51 #endif 50 52 -
trunk/Source/JavaScriptCore/assembler/MacroAssembler.cpp
r220823 r220921 36 36 37 37 #if ENABLE(MASM_PROBE) 38 static void stdFunctionCallback(Probe Context* context)38 static void stdFunctionCallback(Probe::State* state) 39 39 { 40 auto func = static_cast<const std::function<void(Probe Context*)>*>(context->arg);41 (*func)( context);40 auto func = static_cast<const std::function<void(Probe::State*)>*>(state->arg); 41 (*func)(state); 42 42 } 43 43 44 void MacroAssembler::probe(std::function<void(Probe Context*)> func)44 void MacroAssembler::probe(std::function<void(Probe::State*)> func) 45 45 { 46 probe(stdFunctionCallback, new std::function<void(Probe Context*)>(func));46 probe(stdFunctionCallback, new std::function<void(Probe::State*)>(func)); 47 47 } 48 48 #endif // ENABLE(MASM_PROBE) -
trunk/Source/JavaScriptCore/assembler/MacroAssembler.h
r220823 r220921 1833 1833 // 1834 1834 // The user supplied probe function will be called with a single pointer to 1835 // a Probe Contextstruct (defined below) which contains, among other things,1835 // a Probe::State struct (defined below) which contains, among other things, 1836 1836 // the preserved CPUState. This allows the user probe function to inspect 1837 1837 // the CPUState at that point in the JIT generated code. 1838 1838 // 1839 // If the user probe function alters the register values in the Probe Context,1839 // If the user probe function alters the register values in the Probe::State, 1840 1840 // the altered values will be loaded into the CPU registers when the probe 1841 1841 // returns. 1842 1842 // 1843 // The Probe Contextis stack allocated and is only valid for the duration1843 // The Probe::State is stack allocated and is only valid for the duration 1844 1844 // of the call to the user probe function. 1845 1845 // … … 1849 1849 // The probe function may also choose to fill stack space with some values. 1850 1850 // To do this, the probe function must first: 1851 // 1. Set the new sp value in the Probe Context's CPUState.1852 // 2. Set the Probe Context's initializeStackFunction to a ProbeFunction callback1851 // 1. Set the new sp value in the Probe::State's CPUState. 1852 // 2. Set the Probe::State's initializeStackFunction to a Probe::Function callback 1853 1853 // which will do the work of filling in the stack values after the probe 1854 1854 // trampoline has adjusted the machine stack pointer. 1855 // 3. Set the Probe Context's initializeStackArgs to any value that the client wants1855 // 3. Set the Probe::State's initializeStackArgs to any value that the client wants 1856 1856 // to pass to the initializeStackFunction callback. 1857 1857 // 4. Return from the probe function. … … 1861 1861 // is not set, the probe trampoline will restore registers and return to its caller. 1862 1862 // 1863 // If initializeStackFunction is set, the trampoline will move the Probe Context1864 // beyond the range of the stack pointer i.e. it will place the new Probe Contextat1863 // If initializeStackFunction is set, the trampoline will move the Probe::State 1864 // beyond the range of the stack pointer i.e. it will place the new Probe::State at 1865 1865 // an address lower than where CPUState.sp() points. This ensures that the 1866 // Probe Contextwill not be trashed by the initializeStackFunction when it writes to1866 // Probe::State will not be trashed by the initializeStackFunction when it writes to 1867 1867 // the stack. Then, the trampoline will call back to the initializeStackFunction 1868 // Probe Function to let it fill in the stack values as desired. The1869 // initializeStackFunction Probe Function will be passed the moved ProbeContextat1868 // Probe::Function to let it fill in the stack values as desired. The 1869 // initializeStackFunction Probe::Function will be passed the moved Probe::State at 1870 1870 // the new location. 1871 1871 // … … 1877 1877 // Note: this version of probe() should be implemented by the target specific 1878 1878 // MacroAssembler. 1879 void probe(Probe Function, void* arg);1880 1881 JS_EXPORT_PRIVATE void probe(std::function<void(Probe Context*)>);1879 void probe(Probe::Function, void* arg); 1880 1881 JS_EXPORT_PRIVATE void probe(std::function<void(Probe::State*)>); 1882 1882 1883 1883 // Let's you print from your JIT generated code. … … 2022 2022 } 2023 2023 2024 struct ProbeContext { 2024 namespace Probe { 2025 2026 struct State { 2025 2027 using CPUState = MacroAssembler::CPUState; 2026 2028 using RegisterID = MacroAssembler::RegisterID; … … 2028 2030 using FPRegisterID = MacroAssembler::FPRegisterID; 2029 2031 2030 ProbeFunction probeFunction;2032 Function probeFunction; 2031 2033 void* arg; 2032 ProbeFunction initializeStackFunction;2034 Function initializeStackFunction; 2033 2035 void* initializeStackArg; 2034 2036 CPUState cpu; … … 2050 2052 template<typename T> T sp() { return cpu.sp<T>(); } 2051 2053 }; 2054 2055 } // namespace Probe 2056 2052 2057 #endif // ENABLE(MASM_PROBE) 2053 2058 -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerARM.cpp
r220871 r220921 103 103 #if COMPILER(GCC_OR_CLANG) 104 104 105 // The following are offsets for Probe Contextfields accessed105 // The following are offsets for Probe::State fields accessed 106 106 // by the ctiMasmProbeTrampoline stub. 107 107 … … 180 180 #define OUT_SIZE GPREG_SIZE 181 181 182 // These ASSERTs remind you that if you change the layout of Probe Context,182 // These ASSERTs remind you that if you change the layout of Probe::State, 183 183 // you need to change ctiMasmProbeTrampoline offsets above to match. 184 #define PROBE_OFFSETOF(x) offsetof(struct Probe Context, x)185 COMPILE_ASSERT(PROBE_OFFSETOF(probeFunction) == PROBE_PROBE_FUNCTION_OFFSET, Probe Context_probeFunction_offset_matches_ctiMasmProbeTrampoline);186 COMPILE_ASSERT(PROBE_OFFSETOF(arg) == PROBE_ARG_OFFSET, Probe Context_arg_offset_matches_ctiMasmProbeTrampoline);187 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackFunction) == PROBE_INIT_STACK_FUNCTION_OFFSET, Probe Context_initializeStackFunction_offset_matches_ctiMasmProbeTrampoline);188 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackArg) == PROBE_INIT_STACK_ARG_OFFSET, Probe Context_initializeStackArg_offset_matches_ctiMasmProbeTrampoline);189 190 COMPILE_ASSERT(!(PROBE_CPU_R0_OFFSET & 0x3), Probe Context_cpu_r0_offset_should_be_4_byte_aligned);191 192 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r0]) == PROBE_CPU_R0_OFFSET, Probe Context_cpu_r0_offset_matches_ctiMasmProbeTrampoline);193 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r1]) == PROBE_CPU_R1_OFFSET, Probe Context_cpu_r1_offset_matches_ctiMasmProbeTrampoline);194 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r2]) == PROBE_CPU_R2_OFFSET, Probe Context_cpu_r2_offset_matches_ctiMasmProbeTrampoline);195 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r3]) == PROBE_CPU_R3_OFFSET, Probe Context_cpu_r3_offset_matches_ctiMasmProbeTrampoline);196 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r4]) == PROBE_CPU_R4_OFFSET, Probe Context_cpu_r4_offset_matches_ctiMasmProbeTrampoline);197 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r5]) == PROBE_CPU_R5_OFFSET, Probe Context_cpu_r5_offset_matches_ctiMasmProbeTrampoline);198 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r6]) == PROBE_CPU_R6_OFFSET, Probe Context_cpu_r6_offset_matches_ctiMasmProbeTrampoline);199 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r7]) == PROBE_CPU_R7_OFFSET, Probe Context_cpu_r7_offset_matches_ctiMasmProbeTrampoline);200 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r8]) == PROBE_CPU_R8_OFFSET, Probe Context_cpu_r8_offset_matches_ctiMasmProbeTrampoline);201 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r9]) == PROBE_CPU_R9_OFFSET, Probe Context_cpu_r9_offset_matches_ctiMasmProbeTrampoline);202 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r10]) == PROBE_CPU_R10_OFFSET, Probe Context_cpu_r10_offset_matches_ctiMasmProbeTrampoline);203 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r11]) == PROBE_CPU_R11_OFFSET, Probe Context_cpu_r11_offset_matches_ctiMasmProbeTrampoline);204 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::ip]) == PROBE_CPU_IP_OFFSET, Probe Context_cpu_ip_offset_matches_ctiMasmProbeTrampoline);205 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::sp]) == PROBE_CPU_SP_OFFSET, Probe Context_cpu_sp_offset_matches_ctiMasmProbeTrampoline);206 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::lr]) == PROBE_CPU_LR_OFFSET, Probe Context_cpu_lr_offset_matches_ctiMasmProbeTrampoline);207 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::pc]) == PROBE_CPU_PC_OFFSET, Probe Context_cpu_pc_offset_matches_ctiMasmProbeTrampoline);208 209 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARMRegisters::apsr]) == PROBE_CPU_APSR_OFFSET, Probe Context_cpu_apsr_offset_matches_ctiMasmProbeTrampoline);210 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARMRegisters::fpscr]) == PROBE_CPU_FPSCR_OFFSET, Probe Context_cpu_fpscr_offset_matches_ctiMasmProbeTrampoline);211 212 COMPILE_ASSERT(!(PROBE_CPU_D0_OFFSET & 0x7), Probe Context_cpu_d0_offset_should_be_8_byte_aligned);213 214 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d0]) == PROBE_CPU_D0_OFFSET, Probe Context_cpu_d0_offset_matches_ctiMasmProbeTrampoline);215 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d1]) == PROBE_CPU_D1_OFFSET, Probe Context_cpu_d1_offset_matches_ctiMasmProbeTrampoline);216 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d2]) == PROBE_CPU_D2_OFFSET, Probe Context_cpu_d2_offset_matches_ctiMasmProbeTrampoline);217 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d3]) == PROBE_CPU_D3_OFFSET, Probe Context_cpu_d3_offset_matches_ctiMasmProbeTrampoline);218 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d4]) == PROBE_CPU_D4_OFFSET, Probe Context_cpu_d4_offset_matches_ctiMasmProbeTrampoline);219 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d5]) == PROBE_CPU_D5_OFFSET, Probe Context_cpu_d5_offset_matches_ctiMasmProbeTrampoline);220 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d6]) == PROBE_CPU_D6_OFFSET, Probe Context_cpu_d6_offset_matches_ctiMasmProbeTrampoline);221 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d7]) == PROBE_CPU_D7_OFFSET, Probe Context_cpu_d7_offset_matches_ctiMasmProbeTrampoline);222 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d8]) == PROBE_CPU_D8_OFFSET, Probe Context_cpu_d8_offset_matches_ctiMasmProbeTrampoline);223 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d9]) == PROBE_CPU_D9_OFFSET, Probe Context_cpu_d9_offset_matches_ctiMasmProbeTrampoline);224 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d10]) == PROBE_CPU_D10_OFFSET, Probe Context_cpu_d10_offset_matches_ctiMasmProbeTrampoline);225 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d11]) == PROBE_CPU_D11_OFFSET, Probe Context_cpu_d11_offset_matches_ctiMasmProbeTrampoline);226 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d12]) == PROBE_CPU_D12_OFFSET, Probe Context_cpu_d12_offset_matches_ctiMasmProbeTrampoline);227 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d13]) == PROBE_CPU_D13_OFFSET, Probe Context_cpu_d13_offset_matches_ctiMasmProbeTrampoline);228 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d14]) == PROBE_CPU_D14_OFFSET, Probe Context_cpu_d14_offset_matches_ctiMasmProbeTrampoline);229 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d15]) == PROBE_CPU_D15_OFFSET, Probe Context_cpu_d15_offset_matches_ctiMasmProbeTrampoline);184 #define PROBE_OFFSETOF(x) offsetof(struct Probe::State, x) 185 COMPILE_ASSERT(PROBE_OFFSETOF(probeFunction) == PROBE_PROBE_FUNCTION_OFFSET, ProbeState_probeFunction_offset_matches_ctiMasmProbeTrampoline); 186 COMPILE_ASSERT(PROBE_OFFSETOF(arg) == PROBE_ARG_OFFSET, ProbeState_arg_offset_matches_ctiMasmProbeTrampoline); 187 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackFunction) == PROBE_INIT_STACK_FUNCTION_OFFSET, ProbeState_initializeStackFunction_offset_matches_ctiMasmProbeTrampoline); 188 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackArg) == PROBE_INIT_STACK_ARG_OFFSET, ProbeState_initializeStackArg_offset_matches_ctiMasmProbeTrampoline); 189 190 COMPILE_ASSERT(!(PROBE_CPU_R0_OFFSET & 0x3), ProbeState_cpu_r0_offset_should_be_4_byte_aligned); 191 192 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r0]) == PROBE_CPU_R0_OFFSET, ProbeState_cpu_r0_offset_matches_ctiMasmProbeTrampoline); 193 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r1]) == PROBE_CPU_R1_OFFSET, ProbeState_cpu_r1_offset_matches_ctiMasmProbeTrampoline); 194 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r2]) == PROBE_CPU_R2_OFFSET, ProbeState_cpu_r2_offset_matches_ctiMasmProbeTrampoline); 195 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r3]) == PROBE_CPU_R3_OFFSET, ProbeState_cpu_r3_offset_matches_ctiMasmProbeTrampoline); 196 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r4]) == PROBE_CPU_R4_OFFSET, ProbeState_cpu_r4_offset_matches_ctiMasmProbeTrampoline); 197 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r5]) == PROBE_CPU_R5_OFFSET, ProbeState_cpu_r5_offset_matches_ctiMasmProbeTrampoline); 198 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r6]) == PROBE_CPU_R6_OFFSET, ProbeState_cpu_r6_offset_matches_ctiMasmProbeTrampoline); 199 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r7]) == PROBE_CPU_R7_OFFSET, ProbeState_cpu_r7_offset_matches_ctiMasmProbeTrampoline); 200 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r8]) == PROBE_CPU_R8_OFFSET, ProbeState_cpu_r8_offset_matches_ctiMasmProbeTrampoline); 201 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r9]) == PROBE_CPU_R9_OFFSET, ProbeState_cpu_r9_offset_matches_ctiMasmProbeTrampoline); 202 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r10]) == PROBE_CPU_R10_OFFSET, ProbeState_cpu_r10_offset_matches_ctiMasmProbeTrampoline); 203 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r11]) == PROBE_CPU_R11_OFFSET, ProbeState_cpu_r11_offset_matches_ctiMasmProbeTrampoline); 204 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::ip]) == PROBE_CPU_IP_OFFSET, ProbeState_cpu_ip_offset_matches_ctiMasmProbeTrampoline); 205 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::sp]) == PROBE_CPU_SP_OFFSET, ProbeState_cpu_sp_offset_matches_ctiMasmProbeTrampoline); 206 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::lr]) == PROBE_CPU_LR_OFFSET, ProbeState_cpu_lr_offset_matches_ctiMasmProbeTrampoline); 207 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::pc]) == PROBE_CPU_PC_OFFSET, ProbeState_cpu_pc_offset_matches_ctiMasmProbeTrampoline); 208 209 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARMRegisters::apsr]) == PROBE_CPU_APSR_OFFSET, ProbeState_cpu_apsr_offset_matches_ctiMasmProbeTrampoline); 210 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARMRegisters::fpscr]) == PROBE_CPU_FPSCR_OFFSET, ProbeState_cpu_fpscr_offset_matches_ctiMasmProbeTrampoline); 211 212 COMPILE_ASSERT(!(PROBE_CPU_D0_OFFSET & 0x7), ProbeState_cpu_d0_offset_should_be_8_byte_aligned); 213 214 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d0]) == PROBE_CPU_D0_OFFSET, ProbeState_cpu_d0_offset_matches_ctiMasmProbeTrampoline); 215 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d1]) == PROBE_CPU_D1_OFFSET, ProbeState_cpu_d1_offset_matches_ctiMasmProbeTrampoline); 216 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d2]) == PROBE_CPU_D2_OFFSET, ProbeState_cpu_d2_offset_matches_ctiMasmProbeTrampoline); 217 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d3]) == PROBE_CPU_D3_OFFSET, ProbeState_cpu_d3_offset_matches_ctiMasmProbeTrampoline); 218 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d4]) == PROBE_CPU_D4_OFFSET, ProbeState_cpu_d4_offset_matches_ctiMasmProbeTrampoline); 219 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d5]) == PROBE_CPU_D5_OFFSET, ProbeState_cpu_d5_offset_matches_ctiMasmProbeTrampoline); 220 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d6]) == PROBE_CPU_D6_OFFSET, ProbeState_cpu_d6_offset_matches_ctiMasmProbeTrampoline); 221 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d7]) == PROBE_CPU_D7_OFFSET, ProbeState_cpu_d7_offset_matches_ctiMasmProbeTrampoline); 222 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d8]) == PROBE_CPU_D8_OFFSET, ProbeState_cpu_d8_offset_matches_ctiMasmProbeTrampoline); 223 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d9]) == PROBE_CPU_D9_OFFSET, ProbeState_cpu_d9_offset_matches_ctiMasmProbeTrampoline); 224 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d10]) == PROBE_CPU_D10_OFFSET, ProbeState_cpu_d10_offset_matches_ctiMasmProbeTrampoline); 225 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d11]) == PROBE_CPU_D11_OFFSET, ProbeState_cpu_d11_offset_matches_ctiMasmProbeTrampoline); 226 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d12]) == PROBE_CPU_D12_OFFSET, ProbeState_cpu_d12_offset_matches_ctiMasmProbeTrampoline); 227 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d13]) == PROBE_CPU_D13_OFFSET, ProbeState_cpu_d13_offset_matches_ctiMasmProbeTrampoline); 228 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d14]) == PROBE_CPU_D14_OFFSET, ProbeState_cpu_d14_offset_matches_ctiMasmProbeTrampoline); 229 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d15]) == PROBE_CPU_D15_OFFSET, ProbeState_cpu_d15_offset_matches_ctiMasmProbeTrampoline); 230 230 231 231 #if CPU(ARM_NEON) || CPU(ARM_VFP_V3_D32) 232 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d16]) == PROBE_CPU_D16_OFFSET, Probe Context_cpu_d16_offset_matches_ctiMasmProbeTrampoline);233 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d17]) == PROBE_CPU_D17_OFFSET, Probe Context_cpu_d17_offset_matches_ctiMasmProbeTrampoline);234 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d18]) == PROBE_CPU_D18_OFFSET, Probe Context_cpu_d18_offset_matches_ctiMasmProbeTrampoline);235 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d19]) == PROBE_CPU_D19_OFFSET, Probe Context_cpu_d19_offset_matches_ctiMasmProbeTrampoline);236 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d20]) == PROBE_CPU_D20_OFFSET, Probe Context_cpu_d20_offset_matches_ctiMasmProbeTrampoline);237 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d21]) == PROBE_CPU_D21_OFFSET, Probe Context_cpu_d21_offset_matches_ctiMasmProbeTrampoline);238 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d22]) == PROBE_CPU_D22_OFFSET, Probe Context_cpu_d22_offset_matches_ctiMasmProbeTrampoline);239 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d23]) == PROBE_CPU_D23_OFFSET, Probe Context_cpu_d23_offset_matches_ctiMasmProbeTrampoline);240 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d24]) == PROBE_CPU_D24_OFFSET, Probe Context_cpu_d24_offset_matches_ctiMasmProbeTrampoline);241 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d25]) == PROBE_CPU_D25_OFFSET, Probe Context_cpu_d25_offset_matches_ctiMasmProbeTrampoline);242 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d26]) == PROBE_CPU_D26_OFFSET, Probe Context_cpu_d26_offset_matches_ctiMasmProbeTrampoline);243 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d27]) == PROBE_CPU_D27_OFFSET, Probe Context_cpu_d27_offset_matches_ctiMasmProbeTrampoline);244 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d28]) == PROBE_CPU_D28_OFFSET, Probe Context_cpu_d28_offset_matches_ctiMasmProbeTrampoline);245 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d29]) == PROBE_CPU_D29_OFFSET, Probe Context_cpu_d29_offset_matches_ctiMasmProbeTrampoline);246 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d30]) == PROBE_CPU_D30_OFFSET, Probe Context_cpu_d30_offset_matches_ctiMasmProbeTrampoline);247 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d31]) == PROBE_CPU_D31_OFFSET, Probe Context_cpu_d31_offset_matches_ctiMasmProbeTrampoline);232 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d16]) == PROBE_CPU_D16_OFFSET, ProbeState_cpu_d16_offset_matches_ctiMasmProbeTrampoline); 233 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d17]) == PROBE_CPU_D17_OFFSET, ProbeState_cpu_d17_offset_matches_ctiMasmProbeTrampoline); 234 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d18]) == PROBE_CPU_D18_OFFSET, ProbeState_cpu_d18_offset_matches_ctiMasmProbeTrampoline); 235 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d19]) == PROBE_CPU_D19_OFFSET, ProbeState_cpu_d19_offset_matches_ctiMasmProbeTrampoline); 236 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d20]) == PROBE_CPU_D20_OFFSET, ProbeState_cpu_d20_offset_matches_ctiMasmProbeTrampoline); 237 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d21]) == PROBE_CPU_D21_OFFSET, ProbeState_cpu_d21_offset_matches_ctiMasmProbeTrampoline); 238 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d22]) == PROBE_CPU_D22_OFFSET, ProbeState_cpu_d22_offset_matches_ctiMasmProbeTrampoline); 239 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d23]) == PROBE_CPU_D23_OFFSET, ProbeState_cpu_d23_offset_matches_ctiMasmProbeTrampoline); 240 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d24]) == PROBE_CPU_D24_OFFSET, ProbeState_cpu_d24_offset_matches_ctiMasmProbeTrampoline); 241 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d25]) == PROBE_CPU_D25_OFFSET, ProbeState_cpu_d25_offset_matches_ctiMasmProbeTrampoline); 242 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d26]) == PROBE_CPU_D26_OFFSET, ProbeState_cpu_d26_offset_matches_ctiMasmProbeTrampoline); 243 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d27]) == PROBE_CPU_D27_OFFSET, ProbeState_cpu_d27_offset_matches_ctiMasmProbeTrampoline); 244 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d28]) == PROBE_CPU_D28_OFFSET, ProbeState_cpu_d28_offset_matches_ctiMasmProbeTrampoline); 245 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d29]) == PROBE_CPU_D29_OFFSET, ProbeState_cpu_d29_offset_matches_ctiMasmProbeTrampoline); 246 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d30]) == PROBE_CPU_D30_OFFSET, ProbeState_cpu_d30_offset_matches_ctiMasmProbeTrampoline); 247 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d31]) == PROBE_CPU_D31_OFFSET, ProbeState_cpu_d31_offset_matches_ctiMasmProbeTrampoline); 248 248 #endif // CPU(ARM_NEON) || CPU(ARM_VFP_V3_D32) 249 249 250 COMPILE_ASSERT(sizeof(Probe Context) == PROBE_SIZE, ProbeContext_size_matches_ctiMasmProbeTrampoline);250 COMPILE_ASSERT(sizeof(Probe::State) == PROBE_SIZE, ProbeState_size_matches_ctiMasmProbeTrampoline); 251 251 #undef PROBE_OFFSETOF 252 252 … … 273 273 // The ARM EABI specifies that the stack needs to be 16 byte aligned. 274 274 "bic r3, r3, #0xf" "\n" 275 "mov sp, r3" "\n" // Set the sp to protect the Probe Contextfrom interrupts before we initialize it.275 "mov sp, r3" "\n" // Set the sp to protect the Probe::State from interrupts before we initialize it. 276 276 277 277 "str lr, [sp, #" STRINGIZE_VALUE_OF(PROBE_CPU_PC_OFFSET) "]" "\n" … … 303 303 "vstmia.64 ip!, { d16-d31 }" "\n" 304 304 #endif 305 "mov fp, sp" "\n" // Save the Probe Context*.306 307 // Initialize Probe Context::initializeStackFunction to zero.305 "mov fp, sp" "\n" // Save the Probe::State*. 306 307 // Initialize Probe::State::initializeStackFunction to zero. 308 308 "mov r0, #0" "\n" 309 309 "str r0, [fp, #" STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "]" "\n" 310 310 311 311 "ldr ip, [sp, #" STRINGIZE_VALUE_OF(PROBE_PROBE_FUNCTION_OFFSET) "]" "\n" 312 "mov r0, sp" "\n" // the Probe Context* arg.312 "mov r0, sp" "\n" // the Probe::State* arg. 313 313 "blx ip" "\n" 314 314 315 // Make sure the Probe Contextis entirely below the result stack pointer so315 // Make sure the Probe::State is entirely below the result stack pointer so 316 316 // that register values are still preserved when we call the initializeStack 317 317 // function. … … 319 319 "add r2, fp, #" STRINGIZE_VALUE_OF(PROBE_SIZE + OUT_SIZE) "\n" // End of ProveContext + buffer. 320 320 "cmp r1, r2" "\n" 321 "bge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) "\n"322 323 // Allocate a safe place on the stack below the result stack pointer to stash the Probe Context.321 "bge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) "\n" 322 323 // Allocate a safe place on the stack below the result stack pointer to stash the Probe::State. 324 324 "sub r1, r1, #" STRINGIZE_VALUE_OF(PROBE_SIZE + OUT_SIZE) "\n" 325 325 "bic r1, r1, #0xf" "\n" // The ARM EABI specifies that the stack needs to be 16 byte aligned. 326 "mov sp, r1" "\n" // Set the new sp to protect that memory from interrupts before we copy the Probe Context.327 328 // Copy the Probe Contextto the safe place.326 "mov sp, r1" "\n" // Set the new sp to protect that memory from interrupts before we copy the Probe::State. 327 328 // Copy the Probe::State to the safe place. 329 329 // Note: we have to copy from low address to higher address because we're moving the 330 // Probe Contextto a lower address.330 // Probe::State to a lower address. 331 331 "mov r5, fp" "\n" 332 332 "mov r6, r1" "\n" … … 344 344 345 345 // Call initializeStackFunction if present. 346 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) ":" "\n"346 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) ":" "\n" 347 347 "ldr r2, [fp, #" STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "]" "\n" 348 348 "cmp r2, #0" "\n" 349 349 "beq " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineRestoreRegisters) "\n" 350 350 351 "mov r0, fp" "\n" // Set the Probe Context* arg.351 "mov r0, fp" "\n" // Set the Probe::State* arg. 352 352 "blx r2" "\n" // Call the initializeStackFunction (loaded into r2 above). 353 353 … … 357 357 358 358 // To enable probes to modify register state, we copy all registers 359 // out of the Probe Contextbefore returning.359 // out of the Probe::State before returning. 360 360 361 361 #if CPU(ARM_NEON) || CPU(ARM_VFP_V3_D32) … … 398 398 #endif // COMPILER(GCC_OR_CLANG) 399 399 400 void MacroAssembler::probe(Probe Function function, void* arg)400 void MacroAssembler::probe(Probe::Function function, void* arg) 401 401 { 402 402 push(RegisterID::sp); -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerARM.h
r220579 r220921 1587 1587 } 1588 1588 1589 #if ENABLE(MASM_PROBE) 1589 1590 inline TrustedImm32 trustedImm32FromPtr(void* ptr) 1590 1591 { … … 1592 1593 } 1593 1594 1594 inline TrustedImm32 trustedImm32FromPtr(Probe Function function)1595 inline TrustedImm32 trustedImm32FromPtr(Probe::Function function) 1595 1596 { 1596 1597 return TrustedImm32(TrustedImmPtr(reinterpret_cast<void*>(function))); … … 1601 1602 return TrustedImm32(TrustedImmPtr(reinterpret_cast<void*>(function))); 1602 1603 } 1604 #endif // ENABLE(MASM_PROBE) 1603 1605 1604 1606 private: -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerARM64.cpp
r220823 r220921 41 41 #if COMPILER(GCC_OR_CLANG) 42 42 43 // The following are offsets for Probe Contextfields accessed43 // The following are offsets for Probe::State fields accessed 44 44 // by the ctiMasmProbeTrampoline stub. 45 45 #define PTR_SIZE 8 … … 131 131 #define PROBE_SIZE_PLUS_EXTRAS (PROBE_SIZE + (3 * PTR_SIZE)) 132 132 133 // These ASSERTs remind you that if you change the layout of Probe Context,133 // These ASSERTs remind you that if you change the layout of Probe::State, 134 134 // you need to change ctiMasmProbeTrampoline offsets above to match. 135 #define PROBE_OFFSETOF(x) offsetof(struct Probe Context, x)136 COMPILE_ASSERT(PROBE_OFFSETOF(probeFunction) == PROBE_PROBE_FUNCTION_OFFSET, Probe Context_probeFunction_offset_matches_ctiMasmProbeTrampoline);137 COMPILE_ASSERT(PROBE_OFFSETOF(arg) == PROBE_ARG_OFFSET, Probe Context_arg_offset_matches_ctiMasmProbeTrampoline);138 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackFunction) == PROBE_INIT_STACK_FUNCTION_OFFSET, Probe Context_initializeStackFunction_offset_matches_ctiMasmProbeTrampoline);139 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackArg) == PROBE_INIT_STACK_ARG_OFFSET, Probe Context_initializeStackArg_offset_matches_ctiMasmProbeTrampoline);140 141 COMPILE_ASSERT(!(PROBE_CPU_X0_OFFSET & 0x7), Probe Context_cpu_r0_offset_should_be_8_byte_aligned);142 143 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x0]) == PROBE_CPU_X0_OFFSET, Probe Context_cpu_x0_offset_matches_ctiMasmProbeTrampoline);144 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x1]) == PROBE_CPU_X1_OFFSET, Probe Context_cpu_x1_offset_matches_ctiMasmProbeTrampoline);145 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x2]) == PROBE_CPU_X2_OFFSET, Probe Context_cpu_x2_offset_matches_ctiMasmProbeTrampoline);146 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x3]) == PROBE_CPU_X3_OFFSET, Probe Context_cpu_x3_offset_matches_ctiMasmProbeTrampoline);147 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x4]) == PROBE_CPU_X4_OFFSET, Probe Context_cpu_x4_offset_matches_ctiMasmProbeTrampoline);148 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x5]) == PROBE_CPU_X5_OFFSET, Probe Context_cpu_x5_offset_matches_ctiMasmProbeTrampoline);149 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x6]) == PROBE_CPU_X6_OFFSET, Probe Context_cpu_x6_offset_matches_ctiMasmProbeTrampoline);150 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x7]) == PROBE_CPU_X7_OFFSET, Probe Context_cpu_x7_offset_matches_ctiMasmProbeTrampoline);151 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x8]) == PROBE_CPU_X8_OFFSET, Probe Context_cpu_x8_offset_matches_ctiMasmProbeTrampoline);152 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x9]) == PROBE_CPU_X9_OFFSET, Probe Context_cpu_x9_offset_matches_ctiMasmProbeTrampoline);153 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x10]) == PROBE_CPU_X10_OFFSET, Probe Context_cpu_x10_offset_matches_ctiMasmProbeTrampoline);154 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x11]) == PROBE_CPU_X11_OFFSET, Probe Context_cpu_x11_offset_matches_ctiMasmProbeTrampoline);155 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x12]) == PROBE_CPU_X12_OFFSET, Probe Context_cpu_x12_offset_matches_ctiMasmProbeTrampoline);156 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x13]) == PROBE_CPU_X13_OFFSET, Probe Context_cpu_x13_offset_matches_ctiMasmProbeTrampoline);157 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x14]) == PROBE_CPU_X14_OFFSET, Probe Context_cpu_x14_offset_matches_ctiMasmProbeTrampoline);158 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x15]) == PROBE_CPU_X15_OFFSET, Probe Context_cpu_x15_offset_matches_ctiMasmProbeTrampoline);159 160 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x16]) == PROBE_CPU_X16_OFFSET, Probe Context_cpu_x16_offset_matches_ctiMasmProbeTrampoline);161 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x17]) == PROBE_CPU_X17_OFFSET, Probe Context_cpu_x17_offset_matches_ctiMasmProbeTrampoline);162 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x18]) == PROBE_CPU_X18_OFFSET, Probe Context_cpu_x18_offset_matches_ctiMasmProbeTrampoline);163 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x19]) == PROBE_CPU_X19_OFFSET, Probe Context_cpu_x19_offset_matches_ctiMasmProbeTrampoline);164 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x20]) == PROBE_CPU_X20_OFFSET, Probe Context_cpu_x20_offset_matches_ctiMasmProbeTrampoline);165 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x21]) == PROBE_CPU_X21_OFFSET, Probe Context_cpu_x21_offset_matches_ctiMasmProbeTrampoline);166 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x22]) == PROBE_CPU_X22_OFFSET, Probe Context_cpu_x22_offset_matches_ctiMasmProbeTrampoline);167 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x23]) == PROBE_CPU_X23_OFFSET, Probe Context_cpu_x23_offset_matches_ctiMasmProbeTrampoline);168 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x24]) == PROBE_CPU_X24_OFFSET, Probe Context_cpu_x24_offset_matches_ctiMasmProbeTrampoline);169 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x25]) == PROBE_CPU_X25_OFFSET, Probe Context_cpu_x25_offset_matches_ctiMasmProbeTrampoline);170 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x26]) == PROBE_CPU_X26_OFFSET, Probe Context_cpu_x26_offset_matches_ctiMasmProbeTrampoline);171 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x27]) == PROBE_CPU_X27_OFFSET, Probe Context_cpu_x27_offset_matches_ctiMasmProbeTrampoline);172 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x28]) == PROBE_CPU_X28_OFFSET, Probe Context_cpu_x28_offset_matches_ctiMasmProbeTrampoline);173 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::fp]) == PROBE_CPU_FP_OFFSET, Probe Context_cpu_fp_offset_matches_ctiMasmProbeTrampoline);174 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::lr]) == PROBE_CPU_LR_OFFSET, Probe Context_cpu_lr_offset_matches_ctiMasmProbeTrampoline);175 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::sp]) == PROBE_CPU_SP_OFFSET, Probe Context_cpu_sp_offset_matches_ctiMasmProbeTrampoline);176 177 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARM64Registers::pc]) == PROBE_CPU_PC_OFFSET, Probe Context_cpu_pc_offset_matches_ctiMasmProbeTrampoline);178 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARM64Registers::nzcv]) == PROBE_CPU_NZCV_OFFSET, Probe Context_cpu_nzcv_offset_matches_ctiMasmProbeTrampoline);179 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARM64Registers::fpsr]) == PROBE_CPU_FPSR_OFFSET, Probe Context_cpu_fpsr_offset_matches_ctiMasmProbeTrampoline);180 181 COMPILE_ASSERT(!(PROBE_CPU_Q0_OFFSET & 0x7), Probe Context_cpu_q0_offset_should_be_8_byte_aligned);182 183 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q0]) == PROBE_CPU_Q0_OFFSET, Probe Context_cpu_q0_offset_matches_ctiMasmProbeTrampoline);184 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q1]) == PROBE_CPU_Q1_OFFSET, Probe Context_cpu_q1_offset_matches_ctiMasmProbeTrampoline);185 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q2]) == PROBE_CPU_Q2_OFFSET, Probe Context_cpu_q2_offset_matches_ctiMasmProbeTrampoline);186 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q3]) == PROBE_CPU_Q3_OFFSET, Probe Context_cpu_q3_offset_matches_ctiMasmProbeTrampoline);187 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q4]) == PROBE_CPU_Q4_OFFSET, Probe Context_cpu_q4_offset_matches_ctiMasmProbeTrampoline);188 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q5]) == PROBE_CPU_Q5_OFFSET, Probe Context_cpu_q5_offset_matches_ctiMasmProbeTrampoline);189 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q6]) == PROBE_CPU_Q6_OFFSET, Probe Context_cpu_q6_offset_matches_ctiMasmProbeTrampoline);190 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q7]) == PROBE_CPU_Q7_OFFSET, Probe Context_cpu_q7_offset_matches_ctiMasmProbeTrampoline);191 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q8]) == PROBE_CPU_Q8_OFFSET, Probe Context_cpu_q8_offset_matches_ctiMasmProbeTrampoline);192 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q9]) == PROBE_CPU_Q9_OFFSET, Probe Context_cpu_q9_offset_matches_ctiMasmProbeTrampoline);193 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q10]) == PROBE_CPU_Q10_OFFSET, Probe Context_cpu_q10_offset_matches_ctiMasmProbeTrampoline);194 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q11]) == PROBE_CPU_Q11_OFFSET, Probe Context_cpu_q11_offset_matches_ctiMasmProbeTrampoline);195 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q12]) == PROBE_CPU_Q12_OFFSET, Probe Context_cpu_q12_offset_matches_ctiMasmProbeTrampoline);196 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q13]) == PROBE_CPU_Q13_OFFSET, Probe Context_cpu_q13_offset_matches_ctiMasmProbeTrampoline);197 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q14]) == PROBE_CPU_Q14_OFFSET, Probe Context_cpu_q14_offset_matches_ctiMasmProbeTrampoline);198 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q15]) == PROBE_CPU_Q15_OFFSET, Probe Context_cpu_q15_offset_matches_ctiMasmProbeTrampoline);199 200 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q16]) == PROBE_CPU_Q16_OFFSET, Probe Context_cpu_q16_offset_matches_ctiMasmProbeTrampoline);201 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q17]) == PROBE_CPU_Q17_OFFSET, Probe Context_cpu_q17_offset_matches_ctiMasmProbeTrampoline);202 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q18]) == PROBE_CPU_Q18_OFFSET, Probe Context_cpu_q18_offset_matches_ctiMasmProbeTrampoline);203 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q19]) == PROBE_CPU_Q19_OFFSET, Probe Context_cpu_q19_offset_matches_ctiMasmProbeTrampoline);204 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q20]) == PROBE_CPU_Q20_OFFSET, Probe Context_cpu_q20_offset_matches_ctiMasmProbeTrampoline);205 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q21]) == PROBE_CPU_Q21_OFFSET, Probe Context_cpu_q21_offset_matches_ctiMasmProbeTrampoline);206 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q22]) == PROBE_CPU_Q22_OFFSET, Probe Context_cpu_q22_offset_matches_ctiMasmProbeTrampoline);207 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q23]) == PROBE_CPU_Q23_OFFSET, Probe Context_cpu_q23_offset_matches_ctiMasmProbeTrampoline);208 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q24]) == PROBE_CPU_Q24_OFFSET, Probe Context_cpu_q24_offset_matches_ctiMasmProbeTrampoline);209 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q25]) == PROBE_CPU_Q25_OFFSET, Probe Context_cpu_q25_offset_matches_ctiMasmProbeTrampoline);210 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q26]) == PROBE_CPU_Q26_OFFSET, Probe Context_cpu_q26_offset_matches_ctiMasmProbeTrampoline);211 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q27]) == PROBE_CPU_Q27_OFFSET, Probe Context_cpu_q27_offset_matches_ctiMasmProbeTrampoline);212 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q28]) == PROBE_CPU_Q28_OFFSET, Probe Context_cpu_q28_offset_matches_ctiMasmProbeTrampoline);213 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q29]) == PROBE_CPU_Q29_OFFSET, Probe Context_cpu_q29_offset_matches_ctiMasmProbeTrampoline);214 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q30]) == PROBE_CPU_Q30_OFFSET, Probe Context_cpu_q30_offset_matches_ctiMasmProbeTrampoline);215 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q31]) == PROBE_CPU_Q31_OFFSET, Probe Context_cpu_q31_offset_matches_ctiMasmProbeTrampoline);216 217 COMPILE_ASSERT(sizeof(Probe Context) == PROBE_SIZE, ProbeContext_size_matches_ctiMasmProbeTrampoline);135 #define PROBE_OFFSETOF(x) offsetof(struct Probe::State, x) 136 COMPILE_ASSERT(PROBE_OFFSETOF(probeFunction) == PROBE_PROBE_FUNCTION_OFFSET, ProbeState_probeFunction_offset_matches_ctiMasmProbeTrampoline); 137 COMPILE_ASSERT(PROBE_OFFSETOF(arg) == PROBE_ARG_OFFSET, ProbeState_arg_offset_matches_ctiMasmProbeTrampoline); 138 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackFunction) == PROBE_INIT_STACK_FUNCTION_OFFSET, ProbeState_initializeStackFunction_offset_matches_ctiMasmProbeTrampoline); 139 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackArg) == PROBE_INIT_STACK_ARG_OFFSET, ProbeState_initializeStackArg_offset_matches_ctiMasmProbeTrampoline); 140 141 COMPILE_ASSERT(!(PROBE_CPU_X0_OFFSET & 0x7), ProbeState_cpu_r0_offset_should_be_8_byte_aligned); 142 143 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x0]) == PROBE_CPU_X0_OFFSET, ProbeState_cpu_x0_offset_matches_ctiMasmProbeTrampoline); 144 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x1]) == PROBE_CPU_X1_OFFSET, ProbeState_cpu_x1_offset_matches_ctiMasmProbeTrampoline); 145 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x2]) == PROBE_CPU_X2_OFFSET, ProbeState_cpu_x2_offset_matches_ctiMasmProbeTrampoline); 146 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x3]) == PROBE_CPU_X3_OFFSET, ProbeState_cpu_x3_offset_matches_ctiMasmProbeTrampoline); 147 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x4]) == PROBE_CPU_X4_OFFSET, ProbeState_cpu_x4_offset_matches_ctiMasmProbeTrampoline); 148 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x5]) == PROBE_CPU_X5_OFFSET, ProbeState_cpu_x5_offset_matches_ctiMasmProbeTrampoline); 149 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x6]) == PROBE_CPU_X6_OFFSET, ProbeState_cpu_x6_offset_matches_ctiMasmProbeTrampoline); 150 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x7]) == PROBE_CPU_X7_OFFSET, ProbeState_cpu_x7_offset_matches_ctiMasmProbeTrampoline); 151 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x8]) == PROBE_CPU_X8_OFFSET, ProbeState_cpu_x8_offset_matches_ctiMasmProbeTrampoline); 152 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x9]) == PROBE_CPU_X9_OFFSET, ProbeState_cpu_x9_offset_matches_ctiMasmProbeTrampoline); 153 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x10]) == PROBE_CPU_X10_OFFSET, ProbeState_cpu_x10_offset_matches_ctiMasmProbeTrampoline); 154 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x11]) == PROBE_CPU_X11_OFFSET, ProbeState_cpu_x11_offset_matches_ctiMasmProbeTrampoline); 155 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x12]) == PROBE_CPU_X12_OFFSET, ProbeState_cpu_x12_offset_matches_ctiMasmProbeTrampoline); 156 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x13]) == PROBE_CPU_X13_OFFSET, ProbeState_cpu_x13_offset_matches_ctiMasmProbeTrampoline); 157 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x14]) == PROBE_CPU_X14_OFFSET, ProbeState_cpu_x14_offset_matches_ctiMasmProbeTrampoline); 158 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x15]) == PROBE_CPU_X15_OFFSET, ProbeState_cpu_x15_offset_matches_ctiMasmProbeTrampoline); 159 160 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x16]) == PROBE_CPU_X16_OFFSET, ProbeState_cpu_x16_offset_matches_ctiMasmProbeTrampoline); 161 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x17]) == PROBE_CPU_X17_OFFSET, ProbeState_cpu_x17_offset_matches_ctiMasmProbeTrampoline); 162 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x18]) == PROBE_CPU_X18_OFFSET, ProbeState_cpu_x18_offset_matches_ctiMasmProbeTrampoline); 163 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x19]) == PROBE_CPU_X19_OFFSET, ProbeState_cpu_x19_offset_matches_ctiMasmProbeTrampoline); 164 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x20]) == PROBE_CPU_X20_OFFSET, ProbeState_cpu_x20_offset_matches_ctiMasmProbeTrampoline); 165 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x21]) == PROBE_CPU_X21_OFFSET, ProbeState_cpu_x21_offset_matches_ctiMasmProbeTrampoline); 166 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x22]) == PROBE_CPU_X22_OFFSET, ProbeState_cpu_x22_offset_matches_ctiMasmProbeTrampoline); 167 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x23]) == PROBE_CPU_X23_OFFSET, ProbeState_cpu_x23_offset_matches_ctiMasmProbeTrampoline); 168 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x24]) == PROBE_CPU_X24_OFFSET, ProbeState_cpu_x24_offset_matches_ctiMasmProbeTrampoline); 169 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x25]) == PROBE_CPU_X25_OFFSET, ProbeState_cpu_x25_offset_matches_ctiMasmProbeTrampoline); 170 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x26]) == PROBE_CPU_X26_OFFSET, ProbeState_cpu_x26_offset_matches_ctiMasmProbeTrampoline); 171 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x27]) == PROBE_CPU_X27_OFFSET, ProbeState_cpu_x27_offset_matches_ctiMasmProbeTrampoline); 172 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::x28]) == PROBE_CPU_X28_OFFSET, ProbeState_cpu_x28_offset_matches_ctiMasmProbeTrampoline); 173 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::fp]) == PROBE_CPU_FP_OFFSET, ProbeState_cpu_fp_offset_matches_ctiMasmProbeTrampoline); 174 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::lr]) == PROBE_CPU_LR_OFFSET, ProbeState_cpu_lr_offset_matches_ctiMasmProbeTrampoline); 175 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARM64Registers::sp]) == PROBE_CPU_SP_OFFSET, ProbeState_cpu_sp_offset_matches_ctiMasmProbeTrampoline); 176 177 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARM64Registers::pc]) == PROBE_CPU_PC_OFFSET, ProbeState_cpu_pc_offset_matches_ctiMasmProbeTrampoline); 178 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARM64Registers::nzcv]) == PROBE_CPU_NZCV_OFFSET, ProbeState_cpu_nzcv_offset_matches_ctiMasmProbeTrampoline); 179 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARM64Registers::fpsr]) == PROBE_CPU_FPSR_OFFSET, ProbeState_cpu_fpsr_offset_matches_ctiMasmProbeTrampoline); 180 181 COMPILE_ASSERT(!(PROBE_CPU_Q0_OFFSET & 0x7), ProbeState_cpu_q0_offset_should_be_8_byte_aligned); 182 183 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q0]) == PROBE_CPU_Q0_OFFSET, ProbeState_cpu_q0_offset_matches_ctiMasmProbeTrampoline); 184 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q1]) == PROBE_CPU_Q1_OFFSET, ProbeState_cpu_q1_offset_matches_ctiMasmProbeTrampoline); 185 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q2]) == PROBE_CPU_Q2_OFFSET, ProbeState_cpu_q2_offset_matches_ctiMasmProbeTrampoline); 186 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q3]) == PROBE_CPU_Q3_OFFSET, ProbeState_cpu_q3_offset_matches_ctiMasmProbeTrampoline); 187 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q4]) == PROBE_CPU_Q4_OFFSET, ProbeState_cpu_q4_offset_matches_ctiMasmProbeTrampoline); 188 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q5]) == PROBE_CPU_Q5_OFFSET, ProbeState_cpu_q5_offset_matches_ctiMasmProbeTrampoline); 189 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q6]) == PROBE_CPU_Q6_OFFSET, ProbeState_cpu_q6_offset_matches_ctiMasmProbeTrampoline); 190 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q7]) == PROBE_CPU_Q7_OFFSET, ProbeState_cpu_q7_offset_matches_ctiMasmProbeTrampoline); 191 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q8]) == PROBE_CPU_Q8_OFFSET, ProbeState_cpu_q8_offset_matches_ctiMasmProbeTrampoline); 192 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q9]) == PROBE_CPU_Q9_OFFSET, ProbeState_cpu_q9_offset_matches_ctiMasmProbeTrampoline); 193 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q10]) == PROBE_CPU_Q10_OFFSET, ProbeState_cpu_q10_offset_matches_ctiMasmProbeTrampoline); 194 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q11]) == PROBE_CPU_Q11_OFFSET, ProbeState_cpu_q11_offset_matches_ctiMasmProbeTrampoline); 195 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q12]) == PROBE_CPU_Q12_OFFSET, ProbeState_cpu_q12_offset_matches_ctiMasmProbeTrampoline); 196 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q13]) == PROBE_CPU_Q13_OFFSET, ProbeState_cpu_q13_offset_matches_ctiMasmProbeTrampoline); 197 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q14]) == PROBE_CPU_Q14_OFFSET, ProbeState_cpu_q14_offset_matches_ctiMasmProbeTrampoline); 198 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q15]) == PROBE_CPU_Q15_OFFSET, ProbeState_cpu_q15_offset_matches_ctiMasmProbeTrampoline); 199 200 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q16]) == PROBE_CPU_Q16_OFFSET, ProbeState_cpu_q16_offset_matches_ctiMasmProbeTrampoline); 201 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q17]) == PROBE_CPU_Q17_OFFSET, ProbeState_cpu_q17_offset_matches_ctiMasmProbeTrampoline); 202 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q18]) == PROBE_CPU_Q18_OFFSET, ProbeState_cpu_q18_offset_matches_ctiMasmProbeTrampoline); 203 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q19]) == PROBE_CPU_Q19_OFFSET, ProbeState_cpu_q19_offset_matches_ctiMasmProbeTrampoline); 204 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q20]) == PROBE_CPU_Q20_OFFSET, ProbeState_cpu_q20_offset_matches_ctiMasmProbeTrampoline); 205 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q21]) == PROBE_CPU_Q21_OFFSET, ProbeState_cpu_q21_offset_matches_ctiMasmProbeTrampoline); 206 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q22]) == PROBE_CPU_Q22_OFFSET, ProbeState_cpu_q22_offset_matches_ctiMasmProbeTrampoline); 207 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q23]) == PROBE_CPU_Q23_OFFSET, ProbeState_cpu_q23_offset_matches_ctiMasmProbeTrampoline); 208 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q24]) == PROBE_CPU_Q24_OFFSET, ProbeState_cpu_q24_offset_matches_ctiMasmProbeTrampoline); 209 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q25]) == PROBE_CPU_Q25_OFFSET, ProbeState_cpu_q25_offset_matches_ctiMasmProbeTrampoline); 210 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q26]) == PROBE_CPU_Q26_OFFSET, ProbeState_cpu_q26_offset_matches_ctiMasmProbeTrampoline); 211 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q27]) == PROBE_CPU_Q27_OFFSET, ProbeState_cpu_q27_offset_matches_ctiMasmProbeTrampoline); 212 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q28]) == PROBE_CPU_Q28_OFFSET, ProbeState_cpu_q28_offset_matches_ctiMasmProbeTrampoline); 213 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q29]) == PROBE_CPU_Q29_OFFSET, ProbeState_cpu_q29_offset_matches_ctiMasmProbeTrampoline); 214 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q30]) == PROBE_CPU_Q30_OFFSET, ProbeState_cpu_q30_offset_matches_ctiMasmProbeTrampoline); 215 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARM64Registers::q31]) == PROBE_CPU_Q31_OFFSET, ProbeState_cpu_q31_offset_matches_ctiMasmProbeTrampoline); 216 217 COMPILE_ASSERT(sizeof(Probe::State) == PROBE_SIZE, ProbeState_size_matches_ctiMasmProbeTrampoline); 218 218 219 219 // Conditions for using ldp and stp. 220 220 static_assert(PROBE_CPU_PC_OFFSET == PROBE_CPU_SP_OFFSET + PTR_SIZE, "PROBE_CPU_SP_OFFSET and PROBE_CPU_PC_OFFSET must be adjacent"); 221 static_assert(!(PROBE_SIZE_PLUS_EXTRAS & 0xf), "PROBE_SIZE_PLUS_EXTRAS should be 16 byte aligned"); // the Probe Contextcopying code relies on this.221 static_assert(!(PROBE_SIZE_PLUS_EXTRAS & 0xf), "PROBE_SIZE_PLUS_EXTRAS should be 16 byte aligned"); // the Probe::State copying code relies on this. 222 222 223 223 #undef PROBE_OFFSETOF … … 300 300 "sub x27, x27, #" STRINGIZE_VALUE_OF(PROBE_SIZE_PLUS_EXTRAS + OUT_SIZE) "\n" 301 301 "bic x27, x27, #0xf" "\n" // The ARM EABI specifies that the stack needs to be 16 byte aligned. 302 "mov sp, x27" "\n" // Set the sp to protect the Probe Contextfrom interrupts before we initialize it.302 "mov sp, x27" "\n" // Set the sp to protect the Probe::State from interrupts before we initialize it. 303 303 304 304 "stp x0, x1, [sp, #" STRINGIZE_VALUE_OF(PROBE_CPU_X0_OFFSET) "]" "\n" … … 356 356 "stp d30, d31, [x9, #" STRINGIZE_VALUE_OF(FPR_OFFSET(Q30)) "]" "\n" 357 357 358 "mov x27, sp" "\n" // Save the Probe Context* in a callee saved register.359 360 // Initialize Probe Context::initializeStackFunction to zero.358 "mov x27, sp" "\n" // Save the Probe::State* in a callee saved register. 359 360 // Initialize Probe::State::initializeStackFunction to zero. 361 361 "str xzr, [x27, #" STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "]" "\n" 362 362 363 363 // Note: we haven't changed the value of fp. Hence, it is still pointing to the frame of 364 364 // the caller of the probe (which is what we want in order to play nice with debuggers e.g. lldb). 365 "mov x0, sp" "\n" // Set the Probe Context* arg.365 "mov x0, sp" "\n" // Set the Probe::State* arg. 366 366 "blr x2" "\n" // Call the probe handler function (loaded into x2 above). 367 367 368 // Make sure the Probe Contextis entirely below the result stack pointer so368 // Make sure the Probe::State is entirely below the result stack pointer so 369 369 // that register values are still preserved when we call the initializeStack 370 370 // function. 371 371 "ldr x1, [x27, #" STRINGIZE_VALUE_OF(PROBE_CPU_SP_OFFSET) "]" "\n" // Result sp. 372 "add x2, x27, #" STRINGIZE_VALUE_OF(PROBE_SIZE_PLUS_EXTRAS + OUT_SIZE) "\n" // End of Probe Context+ buffer.372 "add x2, x27, #" STRINGIZE_VALUE_OF(PROBE_SIZE_PLUS_EXTRAS + OUT_SIZE) "\n" // End of Probe::State + buffer. 373 373 "cmp x1, x2" "\n" 374 "bge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) "\n"375 376 // Allocate a safe place on the stack below the result stack pointer to stash the Probe Context.374 "bge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) "\n" 375 376 // Allocate a safe place on the stack below the result stack pointer to stash the Probe::State. 377 377 "sub x1, x1, #" STRINGIZE_VALUE_OF(PROBE_SIZE_PLUS_EXTRAS + OUT_SIZE) "\n" 378 378 "bic x1, x1, #0xf" "\n" // The ARM EABI specifies that the stack needs to be 16 byte aligned. 379 "mov sp, x1" "\n" // Set the new sp to protect that memory from interrupts before we copy the Probe Context.380 381 // Copy the Probe Contextto the safe place.379 "mov sp, x1" "\n" // Set the new sp to protect that memory from interrupts before we copy the Probe::State. 380 381 // Copy the Probe::State to the safe place. 382 382 // Note: we have to copy from low address to higher address because we're moving the 383 // Probe Contextto a lower address.383 // Probe::State to a lower address. 384 384 "mov x5, x27" "\n" 385 385 "mov x6, x1" "\n" … … 395 395 396 396 // Call initializeStackFunction if present. 397 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) ":" "\n"397 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) ":" "\n" 398 398 "ldr x2, [x27, #" STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "]" "\n" 399 399 "cbz x2, " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineRestoreRegisters) "\n" 400 400 401 "mov x0, x27" "\n" // Set the Probe Context* arg.401 "mov x0, x27" "\n" // Set the Probe::State* arg. 402 402 "blr x2" "\n" // Call the initializeStackFunction (loaded into x2 above). 403 403 … … 407 407 408 408 // To enable probes to modify register state, we copy all registers 409 // out of the Probe Contextbefore returning. That is except for x18.409 // out of the Probe::State before returning. That is except for x18. 410 410 // x18 is "reserved for the platform. Conforming software should not make use of it." 411 411 // Hence, the JITs would not be using it, and the probe should also not be modifying it. … … 526 526 // The probe handler changed both lr and pc. This is not supported for ARM64. 527 527 "ldr x1, [sp, #" STRINGIZE_VALUE_OF(SAVED_PROBE_ERROR_FUNCTION_OFFSET) "]" "\n" 528 "mov x0, sp" "\n" // Set the Probe Context* arg.528 "mov x0, sp" "\n" // Set the Probe::State* arg. 529 529 "blr x1" "\n" 530 530 "brk #0x1000" // Should never return here. … … 532 532 #endif // COMPILER(GCC_OR_CLANG) 533 533 534 static NO_RETURN_DUE_TO_CRASH void arm64ProbeError(Probe Context*)534 static NO_RETURN_DUE_TO_CRASH void arm64ProbeError(Probe::State*) 535 535 { 536 536 dataLog("MacroAssembler probe ERROR: ARM64 does not support the probe changing both LR and PC.\n"); … … 538 538 } 539 539 540 void MacroAssembler::probe(Probe Function function, void* arg)540 void MacroAssembler::probe(Probe::Function function, void* arg) 541 541 { 542 542 sub64(TrustedImm32(sizeof(IncomingProbeRecord)), sp); -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerARMv7.cpp
r220871 r220921 39 39 #if COMPILER(GCC_OR_CLANG) 40 40 41 // The following are offsets for Probe Contextfields accessed41 // The following are offsets for Probe::State fields accessed 42 42 // by the ctiMasmProbeTrampoline stub. 43 43 … … 116 116 #define OUT_SIZE GPREG_SIZE 117 117 118 // These ASSERTs remind you that if you change the layout of Probe Context,118 // These ASSERTs remind you that if you change the layout of Probe::State, 119 119 // you need to change ctiMasmProbeTrampoline offsets above to match. 120 #define PROBE_OFFSETOF(x) offsetof(struct Probe Context, x)121 COMPILE_ASSERT(PROBE_OFFSETOF(probeFunction) == PROBE_PROBE_FUNCTION_OFFSET, Probe Context_probeFunction_offset_matches_ctiMasmProbeTrampoline);122 COMPILE_ASSERT(PROBE_OFFSETOF(arg) == PROBE_ARG_OFFSET, Probe Context_arg_offset_matches_ctiMasmProbeTrampoline);123 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackFunction) == PROBE_INIT_STACK_FUNCTION_OFFSET, Probe Context_initializeStackFunction_offset_matches_ctiMasmProbeTrampoline);124 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackArg) == PROBE_INIT_STACK_ARG_OFFSET, Probe Context_initializeStackArg_offset_matches_ctiMasmProbeTrampoline);125 126 COMPILE_ASSERT(!(PROBE_CPU_R0_OFFSET & 0x3), Probe Context_cpu_r0_offset_should_be_4_byte_aligned);127 128 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r0]) == PROBE_CPU_R0_OFFSET, Probe Context_cpu_r0_offset_matches_ctiMasmProbeTrampoline);129 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r1]) == PROBE_CPU_R1_OFFSET, Probe Context_cpu_r1_offset_matches_ctiMasmProbeTrampoline);130 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r2]) == PROBE_CPU_R2_OFFSET, Probe Context_cpu_r2_offset_matches_ctiMasmProbeTrampoline);131 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r3]) == PROBE_CPU_R3_OFFSET, Probe Context_cpu_r3_offset_matches_ctiMasmProbeTrampoline);132 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r4]) == PROBE_CPU_R4_OFFSET, Probe Context_cpu_r4_offset_matches_ctiMasmProbeTrampoline);133 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r5]) == PROBE_CPU_R5_OFFSET, Probe Context_cpu_r5_offset_matches_ctiMasmProbeTrampoline);134 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r6]) == PROBE_CPU_R6_OFFSET, Probe Context_cpu_r6_offset_matches_ctiMasmProbeTrampoline);135 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r7]) == PROBE_CPU_R7_OFFSET, Probe Context_cpu_r7_offset_matches_ctiMasmProbeTrampoline);136 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r8]) == PROBE_CPU_R8_OFFSET, Probe Context_cpu_r8_offset_matches_ctiMasmProbeTrampoline);137 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r9]) == PROBE_CPU_R9_OFFSET, Probe Context_cpu_r9_offset_matches_ctiMasmProbeTrampoline);138 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r10]) == PROBE_CPU_R10_OFFSET, Probe Context_cpu_r10_offset_matches_ctiMasmProbeTrampoline);139 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r11]) == PROBE_CPU_R11_OFFSET, Probe Context_cpu_r11_offset_matches_ctiMasmProbeTrampoline);140 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::ip]) == PROBE_CPU_IP_OFFSET, Probe Context_cpu_ip_offset_matches_ctiMasmProbeTrampoline);141 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::sp]) == PROBE_CPU_SP_OFFSET, Probe Context_cpu_sp_offset_matches_ctiMasmProbeTrampoline);142 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::lr]) == PROBE_CPU_LR_OFFSET, Probe Context_cpu_lr_offset_matches_ctiMasmProbeTrampoline);143 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::pc]) == PROBE_CPU_PC_OFFSET, Probe Context_cpu_pc_offset_matches_ctiMasmProbeTrampoline);144 145 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARMRegisters::apsr]) == PROBE_CPU_APSR_OFFSET, Probe Context_cpu_apsr_offset_matches_ctiMasmProbeTrampoline);146 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARMRegisters::fpscr]) == PROBE_CPU_FPSCR_OFFSET, Probe Context_cpu_fpscr_offset_matches_ctiMasmProbeTrampoline);147 148 COMPILE_ASSERT(!(PROBE_CPU_D0_OFFSET & 0x7), Probe Context_cpu_d0_offset_should_be_8_byte_aligned);149 150 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d0]) == PROBE_CPU_D0_OFFSET, Probe Context_cpu_d0_offset_matches_ctiMasmProbeTrampoline);151 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d1]) == PROBE_CPU_D1_OFFSET, Probe Context_cpu_d1_offset_matches_ctiMasmProbeTrampoline);152 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d2]) == PROBE_CPU_D2_OFFSET, Probe Context_cpu_d2_offset_matches_ctiMasmProbeTrampoline);153 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d3]) == PROBE_CPU_D3_OFFSET, Probe Context_cpu_d3_offset_matches_ctiMasmProbeTrampoline);154 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d4]) == PROBE_CPU_D4_OFFSET, Probe Context_cpu_d4_offset_matches_ctiMasmProbeTrampoline);155 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d5]) == PROBE_CPU_D5_OFFSET, Probe Context_cpu_d5_offset_matches_ctiMasmProbeTrampoline);156 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d6]) == PROBE_CPU_D6_OFFSET, Probe Context_cpu_d6_offset_matches_ctiMasmProbeTrampoline);157 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d7]) == PROBE_CPU_D7_OFFSET, Probe Context_cpu_d7_offset_matches_ctiMasmProbeTrampoline);158 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d8]) == PROBE_CPU_D8_OFFSET, Probe Context_cpu_d8_offset_matches_ctiMasmProbeTrampoline);159 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d9]) == PROBE_CPU_D9_OFFSET, Probe Context_cpu_d9_offset_matches_ctiMasmProbeTrampoline);160 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d10]) == PROBE_CPU_D10_OFFSET, Probe Context_cpu_d10_offset_matches_ctiMasmProbeTrampoline);161 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d11]) == PROBE_CPU_D11_OFFSET, Probe Context_cpu_d11_offset_matches_ctiMasmProbeTrampoline);162 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d12]) == PROBE_CPU_D12_OFFSET, Probe Context_cpu_d12_offset_matches_ctiMasmProbeTrampoline);163 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d13]) == PROBE_CPU_D13_OFFSET, Probe Context_cpu_d13_offset_matches_ctiMasmProbeTrampoline);164 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d14]) == PROBE_CPU_D14_OFFSET, Probe Context_cpu_d14_offset_matches_ctiMasmProbeTrampoline);165 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d15]) == PROBE_CPU_D15_OFFSET, Probe Context_cpu_d15_offset_matches_ctiMasmProbeTrampoline);120 #define PROBE_OFFSETOF(x) offsetof(struct Probe::State, x) 121 COMPILE_ASSERT(PROBE_OFFSETOF(probeFunction) == PROBE_PROBE_FUNCTION_OFFSET, ProbeState_probeFunction_offset_matches_ctiMasmProbeTrampoline); 122 COMPILE_ASSERT(PROBE_OFFSETOF(arg) == PROBE_ARG_OFFSET, ProbeState_arg_offset_matches_ctiMasmProbeTrampoline); 123 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackFunction) == PROBE_INIT_STACK_FUNCTION_OFFSET, ProbeState_initializeStackFunction_offset_matches_ctiMasmProbeTrampoline); 124 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackArg) == PROBE_INIT_STACK_ARG_OFFSET, ProbeState_initializeStackArg_offset_matches_ctiMasmProbeTrampoline); 125 126 COMPILE_ASSERT(!(PROBE_CPU_R0_OFFSET & 0x3), ProbeState_cpu_r0_offset_should_be_4_byte_aligned); 127 128 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r0]) == PROBE_CPU_R0_OFFSET, ProbeState_cpu_r0_offset_matches_ctiMasmProbeTrampoline); 129 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r1]) == PROBE_CPU_R1_OFFSET, ProbeState_cpu_r1_offset_matches_ctiMasmProbeTrampoline); 130 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r2]) == PROBE_CPU_R2_OFFSET, ProbeState_cpu_r2_offset_matches_ctiMasmProbeTrampoline); 131 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r3]) == PROBE_CPU_R3_OFFSET, ProbeState_cpu_r3_offset_matches_ctiMasmProbeTrampoline); 132 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r4]) == PROBE_CPU_R4_OFFSET, ProbeState_cpu_r4_offset_matches_ctiMasmProbeTrampoline); 133 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r5]) == PROBE_CPU_R5_OFFSET, ProbeState_cpu_r5_offset_matches_ctiMasmProbeTrampoline); 134 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r6]) == PROBE_CPU_R6_OFFSET, ProbeState_cpu_r6_offset_matches_ctiMasmProbeTrampoline); 135 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r7]) == PROBE_CPU_R7_OFFSET, ProbeState_cpu_r7_offset_matches_ctiMasmProbeTrampoline); 136 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r8]) == PROBE_CPU_R8_OFFSET, ProbeState_cpu_r8_offset_matches_ctiMasmProbeTrampoline); 137 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r9]) == PROBE_CPU_R9_OFFSET, ProbeState_cpu_r9_offset_matches_ctiMasmProbeTrampoline); 138 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r10]) == PROBE_CPU_R10_OFFSET, ProbeState_cpu_r10_offset_matches_ctiMasmProbeTrampoline); 139 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::r11]) == PROBE_CPU_R11_OFFSET, ProbeState_cpu_r11_offset_matches_ctiMasmProbeTrampoline); 140 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::ip]) == PROBE_CPU_IP_OFFSET, ProbeState_cpu_ip_offset_matches_ctiMasmProbeTrampoline); 141 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::sp]) == PROBE_CPU_SP_OFFSET, ProbeState_cpu_sp_offset_matches_ctiMasmProbeTrampoline); 142 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::lr]) == PROBE_CPU_LR_OFFSET, ProbeState_cpu_lr_offset_matches_ctiMasmProbeTrampoline); 143 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[ARMRegisters::pc]) == PROBE_CPU_PC_OFFSET, ProbeState_cpu_pc_offset_matches_ctiMasmProbeTrampoline); 144 145 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARMRegisters::apsr]) == PROBE_CPU_APSR_OFFSET, ProbeState_cpu_apsr_offset_matches_ctiMasmProbeTrampoline); 146 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[ARMRegisters::fpscr]) == PROBE_CPU_FPSCR_OFFSET, ProbeState_cpu_fpscr_offset_matches_ctiMasmProbeTrampoline); 147 148 COMPILE_ASSERT(!(PROBE_CPU_D0_OFFSET & 0x7), ProbeState_cpu_d0_offset_should_be_8_byte_aligned); 149 150 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d0]) == PROBE_CPU_D0_OFFSET, ProbeState_cpu_d0_offset_matches_ctiMasmProbeTrampoline); 151 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d1]) == PROBE_CPU_D1_OFFSET, ProbeState_cpu_d1_offset_matches_ctiMasmProbeTrampoline); 152 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d2]) == PROBE_CPU_D2_OFFSET, ProbeState_cpu_d2_offset_matches_ctiMasmProbeTrampoline); 153 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d3]) == PROBE_CPU_D3_OFFSET, ProbeState_cpu_d3_offset_matches_ctiMasmProbeTrampoline); 154 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d4]) == PROBE_CPU_D4_OFFSET, ProbeState_cpu_d4_offset_matches_ctiMasmProbeTrampoline); 155 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d5]) == PROBE_CPU_D5_OFFSET, ProbeState_cpu_d5_offset_matches_ctiMasmProbeTrampoline); 156 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d6]) == PROBE_CPU_D6_OFFSET, ProbeState_cpu_d6_offset_matches_ctiMasmProbeTrampoline); 157 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d7]) == PROBE_CPU_D7_OFFSET, ProbeState_cpu_d7_offset_matches_ctiMasmProbeTrampoline); 158 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d8]) == PROBE_CPU_D8_OFFSET, ProbeState_cpu_d8_offset_matches_ctiMasmProbeTrampoline); 159 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d9]) == PROBE_CPU_D9_OFFSET, ProbeState_cpu_d9_offset_matches_ctiMasmProbeTrampoline); 160 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d10]) == PROBE_CPU_D10_OFFSET, ProbeState_cpu_d10_offset_matches_ctiMasmProbeTrampoline); 161 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d11]) == PROBE_CPU_D11_OFFSET, ProbeState_cpu_d11_offset_matches_ctiMasmProbeTrampoline); 162 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d12]) == PROBE_CPU_D12_OFFSET, ProbeState_cpu_d12_offset_matches_ctiMasmProbeTrampoline); 163 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d13]) == PROBE_CPU_D13_OFFSET, ProbeState_cpu_d13_offset_matches_ctiMasmProbeTrampoline); 164 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d14]) == PROBE_CPU_D14_OFFSET, ProbeState_cpu_d14_offset_matches_ctiMasmProbeTrampoline); 165 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d15]) == PROBE_CPU_D15_OFFSET, ProbeState_cpu_d15_offset_matches_ctiMasmProbeTrampoline); 166 166 167 167 #if CPU(ARM_NEON) || CPU(ARM_VFP_V3_D32) 168 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d16]) == PROBE_CPU_D16_OFFSET, Probe Context_cpu_d16_offset_matches_ctiMasmProbeTrampoline);169 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d17]) == PROBE_CPU_D17_OFFSET, Probe Context_cpu_d17_offset_matches_ctiMasmProbeTrampoline);170 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d18]) == PROBE_CPU_D18_OFFSET, Probe Context_cpu_d18_offset_matches_ctiMasmProbeTrampoline);171 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d19]) == PROBE_CPU_D19_OFFSET, Probe Context_cpu_d19_offset_matches_ctiMasmProbeTrampoline);172 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d20]) == PROBE_CPU_D20_OFFSET, Probe Context_cpu_d20_offset_matches_ctiMasmProbeTrampoline);173 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d21]) == PROBE_CPU_D21_OFFSET, Probe Context_cpu_d21_offset_matches_ctiMasmProbeTrampoline);174 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d22]) == PROBE_CPU_D22_OFFSET, Probe Context_cpu_d22_offset_matches_ctiMasmProbeTrampoline);175 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d23]) == PROBE_CPU_D23_OFFSET, Probe Context_cpu_d23_offset_matches_ctiMasmProbeTrampoline);176 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d24]) == PROBE_CPU_D24_OFFSET, Probe Context_cpu_d24_offset_matches_ctiMasmProbeTrampoline);177 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d25]) == PROBE_CPU_D25_OFFSET, Probe Context_cpu_d25_offset_matches_ctiMasmProbeTrampoline);178 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d26]) == PROBE_CPU_D26_OFFSET, Probe Context_cpu_d26_offset_matches_ctiMasmProbeTrampoline);179 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d27]) == PROBE_CPU_D27_OFFSET, Probe Context_cpu_d27_offset_matches_ctiMasmProbeTrampoline);180 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d28]) == PROBE_CPU_D28_OFFSET, Probe Context_cpu_d28_offset_matches_ctiMasmProbeTrampoline);181 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d29]) == PROBE_CPU_D29_OFFSET, Probe Context_cpu_d29_offset_matches_ctiMasmProbeTrampoline);182 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d30]) == PROBE_CPU_D30_OFFSET, Probe Context_cpu_d30_offset_matches_ctiMasmProbeTrampoline);183 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d31]) == PROBE_CPU_D31_OFFSET, Probe Context_cpu_d31_offset_matches_ctiMasmProbeTrampoline);168 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d16]) == PROBE_CPU_D16_OFFSET, ProbeState_cpu_d16_offset_matches_ctiMasmProbeTrampoline); 169 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d17]) == PROBE_CPU_D17_OFFSET, ProbeState_cpu_d17_offset_matches_ctiMasmProbeTrampoline); 170 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d18]) == PROBE_CPU_D18_OFFSET, ProbeState_cpu_d18_offset_matches_ctiMasmProbeTrampoline); 171 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d19]) == PROBE_CPU_D19_OFFSET, ProbeState_cpu_d19_offset_matches_ctiMasmProbeTrampoline); 172 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d20]) == PROBE_CPU_D20_OFFSET, ProbeState_cpu_d20_offset_matches_ctiMasmProbeTrampoline); 173 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d21]) == PROBE_CPU_D21_OFFSET, ProbeState_cpu_d21_offset_matches_ctiMasmProbeTrampoline); 174 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d22]) == PROBE_CPU_D22_OFFSET, ProbeState_cpu_d22_offset_matches_ctiMasmProbeTrampoline); 175 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d23]) == PROBE_CPU_D23_OFFSET, ProbeState_cpu_d23_offset_matches_ctiMasmProbeTrampoline); 176 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d24]) == PROBE_CPU_D24_OFFSET, ProbeState_cpu_d24_offset_matches_ctiMasmProbeTrampoline); 177 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d25]) == PROBE_CPU_D25_OFFSET, ProbeState_cpu_d25_offset_matches_ctiMasmProbeTrampoline); 178 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d26]) == PROBE_CPU_D26_OFFSET, ProbeState_cpu_d26_offset_matches_ctiMasmProbeTrampoline); 179 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d27]) == PROBE_CPU_D27_OFFSET, ProbeState_cpu_d27_offset_matches_ctiMasmProbeTrampoline); 180 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d28]) == PROBE_CPU_D28_OFFSET, ProbeState_cpu_d28_offset_matches_ctiMasmProbeTrampoline); 181 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d29]) == PROBE_CPU_D29_OFFSET, ProbeState_cpu_d29_offset_matches_ctiMasmProbeTrampoline); 182 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d30]) == PROBE_CPU_D30_OFFSET, ProbeState_cpu_d30_offset_matches_ctiMasmProbeTrampoline); 183 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[ARMRegisters::d31]) == PROBE_CPU_D31_OFFSET, ProbeState_cpu_d31_offset_matches_ctiMasmProbeTrampoline); 184 184 #endif // CPU(ARM_NEON) || CPU(ARM_VFP_V3_D32) 185 185 186 COMPILE_ASSERT(sizeof(Probe Context) == PROBE_SIZE, ProbeContext_size_matches_ctiMasmProbeTrampoline);186 COMPILE_ASSERT(sizeof(Probe::State) == PROBE_SIZE, ProbeState_size_matches_ctiMasmProbeTrampoline); 187 187 #undef PROBE_OFFSETOF 188 188 … … 211 211 // The ARM EABI specifies that the stack needs to be 16 byte aligned. 212 212 "bic r0, r0, #0xf" "\n" 213 "mov sp, r0" "\n" // Set the sp to protect the Probe Contextfrom interrupts before we initialize it.213 "mov sp, r0" "\n" // Set the sp to protect the Probe::State from interrupts before we initialize it. 214 214 215 215 "str lr, [sp, #" STRINGIZE_VALUE_OF(PROBE_CPU_PC_OFFSET) "]" "\n" … … 241 241 "vstmia.64 ip!, { d16-d31 }" "\n" 242 242 #endif 243 "mov fp, sp" "\n" // Save the Probe Context*.244 245 // Initialize Probe Context::initializeStackFunction to zero.243 "mov fp, sp" "\n" // Save the Probe::State*. 244 245 // Initialize Probe::State::initializeStackFunction to zero. 246 246 "mov r0, #0" "\n" 247 247 "str r0, [fp, #" STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "]" "\n" 248 248 249 249 "ldr ip, [sp, #" STRINGIZE_VALUE_OF(PROBE_PROBE_FUNCTION_OFFSET) "]" "\n" 250 "mov r0, sp" "\n" // the Probe Context* arg.250 "mov r0, sp" "\n" // the Probe::State* arg. 251 251 "blx ip" "\n" 252 252 253 // Make sure the Probe Contextis entirely below the result stack pointer so253 // Make sure the Probe::State is entirely below the result stack pointer so 254 254 // that register values are still preserved when we call the initializeStack 255 255 // function. … … 258 258 "cmp r1, r2" "\n" 259 259 "it ge" "\n" 260 "bge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) "\n"261 262 // Allocate a safe place on the stack below the result stack pointer to stash the Probe Context.260 "bge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) "\n" 261 262 // Allocate a safe place on the stack below the result stack pointer to stash the Probe::State. 263 263 "sub r1, r1, #" STRINGIZE_VALUE_OF(PROBE_SIZE + OUT_SIZE) "\n" 264 264 "bic r1, r1, #0xf" "\n" // The ARM EABI specifies that the stack needs to be 16 byte aligned. 265 "mov sp, r1" "\n" // Set the new sp to protect that memory from interrupts before we copy the Probe Context.266 267 // Copy the Probe Contextto the safe place.265 "mov sp, r1" "\n" // Set the new sp to protect that memory from interrupts before we copy the Probe::State. 266 267 // Copy the Probe::State to the safe place. 268 268 // Note: we have to copy from low address to higher address because we're moving the 269 // Probe Contextto a lower address.269 // Probe::State to a lower address. 270 270 "mov r5, fp" "\n" 271 271 "mov r6, r1" "\n" … … 284 284 285 285 // Call initializeStackFunction if present. 286 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) ":" "\n"286 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) ":" "\n" 287 287 "ldr r2, [fp, #" STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "]" "\n" 288 288 "cbz r2, " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineRestoreRegisters) "\n" 289 289 290 "mov r0, fp" "\n" // Set the Probe Context* arg.290 "mov r0, fp" "\n" // Set the Probe::State* arg. 291 291 "blx r2" "\n" // Call the initializeStackFunction (loaded into r2 above). 292 292 … … 296 296 297 297 // To enable probes to modify register state, we copy all registers 298 // out of the Probe Contextbefore returning.298 // out of the Probe::State before returning. 299 299 300 300 #if CPU(ARM_NEON) || CPU(ARM_VFP_V3_D32) … … 337 337 #endif // COMPILER(GCC_OR_CLANG) 338 338 339 void MacroAssembler::probe(Probe Function function, void* arg)339 void MacroAssembler::probe(Probe::Function function, void* arg) 340 340 { 341 341 push(RegisterID::lr); -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerARMv7.h
r220579 r220921 2108 2108 } 2109 2109 2110 #if ENABLE(MASM_PROBE) 2110 2111 inline TrustedImm32 trustedImm32FromPtr(void* ptr) 2111 2112 { … … 2113 2114 } 2114 2115 2115 inline TrustedImm32 trustedImm32FromPtr(Probe Function function)2116 inline TrustedImm32 trustedImm32FromPtr(Probe::Function function) 2116 2117 { 2117 2118 return TrustedImm32(TrustedImmPtr(reinterpret_cast<void*>(function))); … … 2122 2123 return TrustedImm32(TrustedImmPtr(reinterpret_cast<void*>(function))); 2123 2124 } 2125 #endif // ENABLE(MASM_PROBE) 2124 2126 2125 2127 private: -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerPrinter.cpp
r220823 r220921 172 172 } 173 173 174 void printCallback(Probe Context* probeContext)174 void printCallback(Probe::State* probeContext) 175 175 { 176 176 auto& out = WTF::dataFile(); -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerPrinter.h
r220823 r220921 224 224 }; 225 225 226 void printCallback(Probe Context*);226 void printCallback(Probe::State*); 227 227 228 228 } // namespace Printer -
trunk/Source/JavaScriptCore/assembler/MacroAssemblerX86Common.cpp
r220823 r220921 39 39 #if COMPILER(GCC_OR_CLANG) 40 40 41 // The following are offsets for Probe Contextfields accessed by the ctiMasmProbeTrampoline stub.41 // The following are offsets for Probe::State fields accessed by the ctiMasmProbeTrampoline stub. 42 42 43 43 #if CPU(X86) … … 108 108 #define OUT_SIZE (5 * PTR_SIZE) 109 109 110 // These ASSERTs remind you that if you change the layout of Probe Context,110 // These ASSERTs remind you that if you change the layout of Probe::State, 111 111 // you need to change ctiMasmProbeTrampoline offsets above to match. 112 #define PROBE_OFFSETOF(x) offsetof(struct Probe Context, x)113 COMPILE_ASSERT(PROBE_OFFSETOF(probeFunction) == PROBE_PROBE_FUNCTION_OFFSET, Probe Context_probeFunction_offset_matches_ctiMasmProbeTrampoline);114 COMPILE_ASSERT(PROBE_OFFSETOF(arg) == PROBE_ARG_OFFSET, Probe Context_arg_offset_matches_ctiMasmProbeTrampoline);115 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackFunction) == PROBE_INIT_STACK_FUNCTION_OFFSET, Probe Context_initializeStackFunction_offset_matches_ctiMasmProbeTrampoline);116 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackArg) == PROBE_INIT_STACK_ARG_OFFSET, Probe Context_initializeStackArg_offset_matches_ctiMasmProbeTrampoline);117 118 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::eax]) == PROBE_CPU_EAX_OFFSET, Probe Context_cpu_eax_offset_matches_ctiMasmProbeTrampoline);119 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::ecx]) == PROBE_CPU_ECX_OFFSET, Probe Context_cpu_ecx_offset_matches_ctiMasmProbeTrampoline);120 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::edx]) == PROBE_CPU_EDX_OFFSET, Probe Context_cpu_edx_offset_matches_ctiMasmProbeTrampoline);121 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::ebx]) == PROBE_CPU_EBX_OFFSET, Probe Context_cpu_ebx_offset_matches_ctiMasmProbeTrampoline);122 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::esp]) == PROBE_CPU_ESP_OFFSET, Probe Context_cpu_esp_offset_matches_ctiMasmProbeTrampoline);123 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::ebp]) == PROBE_CPU_EBP_OFFSET, Probe Context_cpu_ebp_offset_matches_ctiMasmProbeTrampoline);124 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::esi]) == PROBE_CPU_ESI_OFFSET, Probe Context_cpu_esi_offset_matches_ctiMasmProbeTrampoline);125 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::edi]) == PROBE_CPU_EDI_OFFSET, Probe Context_cpu_edi_offset_matches_ctiMasmProbeTrampoline);126 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[X86Registers::eip]) == PROBE_CPU_EIP_OFFSET, Probe Context_cpu_eip_offset_matches_ctiMasmProbeTrampoline);127 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[X86Registers::eflags]) == PROBE_CPU_EFLAGS_OFFSET, Probe Context_cpu_eflags_offset_matches_ctiMasmProbeTrampoline);112 #define PROBE_OFFSETOF(x) offsetof(struct Probe::State, x) 113 COMPILE_ASSERT(PROBE_OFFSETOF(probeFunction) == PROBE_PROBE_FUNCTION_OFFSET, ProbeState_probeFunction_offset_matches_ctiMasmProbeTrampoline); 114 COMPILE_ASSERT(PROBE_OFFSETOF(arg) == PROBE_ARG_OFFSET, ProbeState_arg_offset_matches_ctiMasmProbeTrampoline); 115 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackFunction) == PROBE_INIT_STACK_FUNCTION_OFFSET, ProbeState_initializeStackFunction_offset_matches_ctiMasmProbeTrampoline); 116 COMPILE_ASSERT(PROBE_OFFSETOF(initializeStackArg) == PROBE_INIT_STACK_ARG_OFFSET, ProbeState_initializeStackArg_offset_matches_ctiMasmProbeTrampoline); 117 118 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::eax]) == PROBE_CPU_EAX_OFFSET, ProbeState_cpu_eax_offset_matches_ctiMasmProbeTrampoline); 119 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::ecx]) == PROBE_CPU_ECX_OFFSET, ProbeState_cpu_ecx_offset_matches_ctiMasmProbeTrampoline); 120 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::edx]) == PROBE_CPU_EDX_OFFSET, ProbeState_cpu_edx_offset_matches_ctiMasmProbeTrampoline); 121 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::ebx]) == PROBE_CPU_EBX_OFFSET, ProbeState_cpu_ebx_offset_matches_ctiMasmProbeTrampoline); 122 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::esp]) == PROBE_CPU_ESP_OFFSET, ProbeState_cpu_esp_offset_matches_ctiMasmProbeTrampoline); 123 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::ebp]) == PROBE_CPU_EBP_OFFSET, ProbeState_cpu_ebp_offset_matches_ctiMasmProbeTrampoline); 124 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::esi]) == PROBE_CPU_ESI_OFFSET, ProbeState_cpu_esi_offset_matches_ctiMasmProbeTrampoline); 125 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::edi]) == PROBE_CPU_EDI_OFFSET, ProbeState_cpu_edi_offset_matches_ctiMasmProbeTrampoline); 126 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[X86Registers::eip]) == PROBE_CPU_EIP_OFFSET, ProbeState_cpu_eip_offset_matches_ctiMasmProbeTrampoline); 127 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.sprs[X86Registers::eflags]) == PROBE_CPU_EFLAGS_OFFSET, ProbeState_cpu_eflags_offset_matches_ctiMasmProbeTrampoline); 128 128 129 129 #if CPU(X86_64) 130 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r8]) == PROBE_CPU_R8_OFFSET, Probe Context_cpu_r8_offset_matches_ctiMasmProbeTrampoline);131 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r9]) == PROBE_CPU_R9_OFFSET, Probe Context_cpu_r9_offset_matches_ctiMasmProbeTrampoline);132 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r10]) == PROBE_CPU_R10_OFFSET, Probe Context_cpu_r10_offset_matches_ctiMasmProbeTrampoline);133 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r11]) == PROBE_CPU_R11_OFFSET, Probe Context_cpu_r11_offset_matches_ctiMasmProbeTrampoline);134 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r12]) == PROBE_CPU_R12_OFFSET, Probe Context_cpu_r12_offset_matches_ctiMasmProbeTrampoline);135 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r13]) == PROBE_CPU_R13_OFFSET, Probe Context_cpu_r13_offset_matches_ctiMasmProbeTrampoline);136 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r14]) == PROBE_CPU_R14_OFFSET, Probe Context_cpu_r14_offset_matches_ctiMasmProbeTrampoline);137 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r15]) == PROBE_CPU_R15_OFFSET, Probe Context_cpu_r15_offset_matches_ctiMasmProbeTrampoline);130 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r8]) == PROBE_CPU_R8_OFFSET, ProbeState_cpu_r8_offset_matches_ctiMasmProbeTrampoline); 131 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r9]) == PROBE_CPU_R9_OFFSET, ProbeState_cpu_r9_offset_matches_ctiMasmProbeTrampoline); 132 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r10]) == PROBE_CPU_R10_OFFSET, ProbeState_cpu_r10_offset_matches_ctiMasmProbeTrampoline); 133 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r11]) == PROBE_CPU_R11_OFFSET, ProbeState_cpu_r11_offset_matches_ctiMasmProbeTrampoline); 134 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r12]) == PROBE_CPU_R12_OFFSET, ProbeState_cpu_r12_offset_matches_ctiMasmProbeTrampoline); 135 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r13]) == PROBE_CPU_R13_OFFSET, ProbeState_cpu_r13_offset_matches_ctiMasmProbeTrampoline); 136 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r14]) == PROBE_CPU_R14_OFFSET, ProbeState_cpu_r14_offset_matches_ctiMasmProbeTrampoline); 137 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.gprs[X86Registers::r15]) == PROBE_CPU_R15_OFFSET, ProbeState_cpu_r15_offset_matches_ctiMasmProbeTrampoline); 138 138 #endif // CPU(X86_64) 139 139 140 COMPILE_ASSERT(!(PROBE_CPU_XMM0_OFFSET & 0x7), Probe Context_cpu_xmm0_offset_should_be_8_byte_aligned);141 142 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm0]) == PROBE_CPU_XMM0_OFFSET, Probe Context_cpu_xmm0_offset_matches_ctiMasmProbeTrampoline);143 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm1]) == PROBE_CPU_XMM1_OFFSET, Probe Context_cpu_xmm1_offset_matches_ctiMasmProbeTrampoline);144 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm2]) == PROBE_CPU_XMM2_OFFSET, Probe Context_cpu_xmm2_offset_matches_ctiMasmProbeTrampoline);145 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm3]) == PROBE_CPU_XMM3_OFFSET, Probe Context_cpu_xmm3_offset_matches_ctiMasmProbeTrampoline);146 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm4]) == PROBE_CPU_XMM4_OFFSET, Probe Context_cpu_xmm4_offset_matches_ctiMasmProbeTrampoline);147 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm5]) == PROBE_CPU_XMM5_OFFSET, Probe Context_cpu_xmm5_offset_matches_ctiMasmProbeTrampoline);148 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm6]) == PROBE_CPU_XMM6_OFFSET, Probe Context_cpu_xmm6_offset_matches_ctiMasmProbeTrampoline);149 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm7]) == PROBE_CPU_XMM7_OFFSET, Probe Context_cpu_xmm7_offset_matches_ctiMasmProbeTrampoline);140 COMPILE_ASSERT(!(PROBE_CPU_XMM0_OFFSET & 0x7), ProbeState_cpu_xmm0_offset_should_be_8_byte_aligned); 141 142 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm0]) == PROBE_CPU_XMM0_OFFSET, ProbeState_cpu_xmm0_offset_matches_ctiMasmProbeTrampoline); 143 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm1]) == PROBE_CPU_XMM1_OFFSET, ProbeState_cpu_xmm1_offset_matches_ctiMasmProbeTrampoline); 144 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm2]) == PROBE_CPU_XMM2_OFFSET, ProbeState_cpu_xmm2_offset_matches_ctiMasmProbeTrampoline); 145 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm3]) == PROBE_CPU_XMM3_OFFSET, ProbeState_cpu_xmm3_offset_matches_ctiMasmProbeTrampoline); 146 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm4]) == PROBE_CPU_XMM4_OFFSET, ProbeState_cpu_xmm4_offset_matches_ctiMasmProbeTrampoline); 147 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm5]) == PROBE_CPU_XMM5_OFFSET, ProbeState_cpu_xmm5_offset_matches_ctiMasmProbeTrampoline); 148 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm6]) == PROBE_CPU_XMM6_OFFSET, ProbeState_cpu_xmm6_offset_matches_ctiMasmProbeTrampoline); 149 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm7]) == PROBE_CPU_XMM7_OFFSET, ProbeState_cpu_xmm7_offset_matches_ctiMasmProbeTrampoline); 150 150 151 151 #if CPU(X86_64) 152 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm8]) == PROBE_CPU_XMM8_OFFSET, Probe Context_cpu_xmm8_offset_matches_ctiMasmProbeTrampoline);153 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm9]) == PROBE_CPU_XMM9_OFFSET, Probe Context_cpu_xmm9_offset_matches_ctiMasmProbeTrampoline);154 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm10]) == PROBE_CPU_XMM10_OFFSET, Probe Context_cpu_xmm10_offset_matches_ctiMasmProbeTrampoline);155 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm11]) == PROBE_CPU_XMM11_OFFSET, Probe Context_cpu_xmm11_offset_matches_ctiMasmProbeTrampoline);156 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm12]) == PROBE_CPU_XMM12_OFFSET, Probe Context_cpu_xmm12_offset_matches_ctiMasmProbeTrampoline);157 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm13]) == PROBE_CPU_XMM13_OFFSET, Probe Context_cpu_xmm13_offset_matches_ctiMasmProbeTrampoline);158 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm14]) == PROBE_CPU_XMM14_OFFSET, Probe Context_cpu_xmm14_offset_matches_ctiMasmProbeTrampoline);159 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm15]) == PROBE_CPU_XMM15_OFFSET, Probe Context_cpu_xmm15_offset_matches_ctiMasmProbeTrampoline);152 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm8]) == PROBE_CPU_XMM8_OFFSET, ProbeState_cpu_xmm8_offset_matches_ctiMasmProbeTrampoline); 153 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm9]) == PROBE_CPU_XMM9_OFFSET, ProbeState_cpu_xmm9_offset_matches_ctiMasmProbeTrampoline); 154 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm10]) == PROBE_CPU_XMM10_OFFSET, ProbeState_cpu_xmm10_offset_matches_ctiMasmProbeTrampoline); 155 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm11]) == PROBE_CPU_XMM11_OFFSET, ProbeState_cpu_xmm11_offset_matches_ctiMasmProbeTrampoline); 156 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm12]) == PROBE_CPU_XMM12_OFFSET, ProbeState_cpu_xmm12_offset_matches_ctiMasmProbeTrampoline); 157 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm13]) == PROBE_CPU_XMM13_OFFSET, ProbeState_cpu_xmm13_offset_matches_ctiMasmProbeTrampoline); 158 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm14]) == PROBE_CPU_XMM14_OFFSET, ProbeState_cpu_xmm14_offset_matches_ctiMasmProbeTrampoline); 159 COMPILE_ASSERT(PROBE_OFFSETOF(cpu.fprs[X86Registers::xmm15]) == PROBE_CPU_XMM15_OFFSET, ProbeState_cpu_xmm15_offset_matches_ctiMasmProbeTrampoline); 160 160 #endif // CPU(X86_64) 161 161 162 COMPILE_ASSERT(sizeof(Probe Context) == PROBE_SIZE, ProbeContext_size_matches_ctiMasmProbeTrampoline);162 COMPILE_ASSERT(sizeof(Probe::State) == PROBE_SIZE, ProbeState_size_matches_ctiMasmProbeTrampoline); 163 163 164 164 #undef PROBE_OFFSETOF … … 189 189 190 190 "movl %ebp, " STRINGIZE_VALUE_OF(PROBE_CPU_EBP_OFFSET) "(%esp)" "\n" 191 "movl %esp, %ebp" "\n" // Save the Probe Context*.191 "movl %esp, %ebp" "\n" // Save the Probe::State*. 192 192 193 193 "movl %ecx, " STRINGIZE_VALUE_OF(PROBE_CPU_ECX_OFFSET) "(%ebp)" "\n" … … 225 225 // pointer 32 byte alignment: 226 226 "subl $0x20, %esp" "\n" 227 "movl %ebp, 0(%esp)" "\n" // the Probe Context* arg.227 "movl %ebp, 0(%esp)" "\n" // the Probe::State* arg. 228 228 229 229 "call *" STRINGIZE_VALUE_OF(PROBE_PROBE_FUNCTION_OFFSET) "(%ebp)" "\n" 230 230 231 // Make sure the Probe Contextis entirely below the result stack pointer so231 // Make sure the Probe::State is entirely below the result stack pointer so 232 232 // that register values are still preserved when we call the initializeStack 233 233 // function. … … 237 237 "addl %ecx, %eax" "\n" 238 238 "cmpl %eax, %edx" "\n" 239 "jge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) "\n"240 241 // Allocate a safe place on the stack below the result stack pointer to stash the Probe Context.239 "jge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) "\n" 240 241 // Allocate a safe place on the stack below the result stack pointer to stash the Probe::State. 242 242 "subl %ecx, %edx" "\n" 243 243 "andl $~0x1f, %edx" "\n" // Keep the stack pointer 32 bytes aligned. … … 247 247 "movl $" STRINGIZE_VALUE_OF(PROBE_SIZE) ", %ecx" "\n" 248 248 249 // Copy the Probe Contextto the safe place.249 // Copy the Probe::State to the safe place. 250 250 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineCopyLoop) ":" "\n" 251 251 "movl (%ebp, %eax), %edx" "\n" … … 258 258 259 259 // Call initializeStackFunction if present. 260 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) ":" "\n"260 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) ":" "\n" 261 261 "xorl %ecx, %ecx" "\n" 262 262 "addl " STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "(%ebp), %ecx" "\n" … … 266 266 // pointer 32 byte alignment: 267 267 "subl $0x20, %esp" "\n" 268 "movl %ebp, 0(%esp)" "\n" // the Probe Context* arg.268 "movl %ebp, 0(%esp)" "\n" // the Probe::State* arg. 269 269 "call *%ecx" "\n" 270 270 … … 272 272 273 273 // To enable probes to modify register state, we copy all registers 274 // out of the Probe Contextbefore returning.274 // out of the Probe::State before returning. 275 275 276 276 "movl " STRINGIZE_VALUE_OF(PROBE_CPU_EDX_OFFSET) "(%ebp), %edx" "\n" … … 301 301 // ecx now points to the restore area. 302 302 303 // Copy remaining restore values from the Probe Contextto the restore area.304 // Note: We already ensured above that the Probe Contextis in a safe location before303 // Copy remaining restore values from the Probe::State to the restore area. 304 // Note: We already ensured above that the Probe::State is in a safe location before 305 305 // calling the initializeStackFunction. The initializeStackFunction is not allowed to 306 306 // change the stack pointer again. … … 349 349 // The X86_64 ABI specifies that the worse case stack alignment requirement is 32 bytes. 350 350 "andq $~0x1f, %rsp" "\n" 351 // Since sp points to the Probe Context, we've ensured that it's protected from interrupts before we initialize it.351 // Since sp points to the Probe::State, we've ensured that it's protected from interrupts before we initialize it. 352 352 353 353 "movq %rbp, " STRINGIZE_VALUE_OF(PROBE_CPU_EBP_OFFSET) "(%rsp)" "\n" 354 "movq %rsp, %rbp" "\n" // Save the Probe Context*.354 "movq %rsp, %rbp" "\n" // Save the Probe::State*. 355 355 356 356 "movq %rcx, " STRINGIZE_VALUE_OF(PROBE_CPU_ECX_OFFSET) "(%rbp)" "\n" … … 402 402 "movq %rax, " STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "(%rbp)" "\n" 403 403 404 "movq %rbp, %rdi" "\n" // the Probe Context* arg.404 "movq %rbp, %rdi" "\n" // the Probe::State* arg. 405 405 "call *" STRINGIZE_VALUE_OF(PROBE_PROBE_FUNCTION_OFFSET) "(%rbp)" "\n" 406 406 407 // Make sure the Probe Contextis entirely below the result stack pointer so407 // Make sure the Probe::State is entirely below the result stack pointer so 408 408 // that register values are still preserved when we call the initializeStack 409 409 // function. … … 413 413 "addq %rcx, %rax" "\n" 414 414 "cmpq %rax, %rdx" "\n" 415 "jge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) "\n"415 "jge " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) "\n" 416 416 417 // Allocate a safe place on the stack below the result stack pointer to stash the Probe Context.417 // Allocate a safe place on the stack below the result stack pointer to stash the Probe::State. 418 418 "subq %rcx, %rdx" "\n" 419 419 "andq $~0x1f, %rdx" "\n" // Keep the stack pointer 32 bytes aligned. … … 423 423 "movq $" STRINGIZE_VALUE_OF(PROBE_SIZE) ", %rcx" "\n" 424 424 425 // Copy the Probe Contextto the safe place.425 // Copy the Probe::State to the safe place. 426 426 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineCopyLoop) ":" "\n" 427 427 "movq (%rbp, %rax), %rdx" "\n" … … 434 434 435 435 // Call initializeStackFunction if present. 436 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbe ContextIsSafe) ":" "\n"436 LOCAL_LABEL_STRING(ctiMasmProbeTrampolineProbeStateIsSafe) ":" "\n" 437 437 "xorq %rcx, %rcx" "\n" 438 438 "addq " STRINGIZE_VALUE_OF(PROBE_INIT_STACK_FUNCTION_OFFSET) "(%rbp), %rcx" "\n" 439 439 "je " LOCAL_LABEL_STRING(ctiMasmProbeTrampolineRestoreRegisters) "\n" 440 440 441 "movq %rbp, %rdi" "\n" // the Probe Context* arg.441 "movq %rbp, %rdi" "\n" // the Probe::State* arg. 442 442 "call *%rcx" "\n" 443 443 … … 445 445 446 446 // To enable probes to modify register state, we copy all registers 447 // out of the Probe Contextbefore returning.447 // out of the Probe::State before returning. 448 448 449 449 "movq " STRINGIZE_VALUE_OF(PROBE_CPU_EDX_OFFSET) "(%rbp), %rdx" "\n" … … 491 491 // rcx now points to the restore area. 492 492 493 // Copy remaining restore values from the Probe Contextto the restore area.494 // Note: We already ensured above that the Probe Contextis in a safe location before493 // Copy remaining restore values from the Probe::State to the restore area. 494 // Note: We already ensured above that the Probe::State is in a safe location before 495 495 // calling the initializeStackFunction. The initializeStackFunction is not allowed to 496 496 // change the stack pointer again. … … 532 532 // We want to keep the size of the emitted probe invocation code as compact as 533 533 // possible to minimize the perturbation to the JIT generated code. However, 534 // we also need to preserve the CPU registers and set up the Probe Contextto be534 // we also need to preserve the CPU registers and set up the Probe::State to be 535 535 // passed to the user probe function. 536 536 // … … 538 538 // in this case) and the stack pointer (i.e. rsp), and pass the probe arguments. 539 539 // We'll let the ctiMasmProbeTrampoline handle the rest of the probe invocation 540 // work i.e. saving the CPUState (and setting up the Probe Context), calling the540 // work i.e. saving the CPUState (and setting up the Probe::State), calling the 541 541 // user probe function, and restoring the CPUState before returning to JIT 542 542 // generated code. … … 564 564 // 565 565 // Specifically, the saved stack pointer register will point to the stack 566 // position before we push the Probe Contextframe. The saved rip will point to566 // position before we push the Probe::State frame. The saved rip will point to 567 567 // the address of the instruction immediately following the probe. 568 568 569 void MacroAssembler::probe(Probe Function function, void* arg)569 void MacroAssembler::probe(Probe::Function function, void* arg) 570 570 { 571 571 push(RegisterID::esp); -
trunk/Source/JavaScriptCore/assembler/Printer.h
r215642 r220921 32 32 namespace JSC { 33 33 34 struct ProbeContext; 34 namespace Probe { 35 struct State; 36 } // namespace Probe 35 37 36 38 namespace Printer { … … 85 87 86 88 struct Context { 87 Context(Probe Context& probeContext, Data& data)89 Context(Probe::State& probeContext, Data& data) 88 90 : probeContext(probeContext) 89 91 , data(data) 90 92 { } 91 93 92 Probe Context& probeContext;94 Probe::State& probeContext; 93 95 Data& data; 94 96 }; -
trunk/Source/JavaScriptCore/assembler/testmasm.cpp
r220823 r220921 185 185 #endif 186 186 187 jit.probe([&] (Probe Context* context) {187 jit.probe([&] (Probe::State* context) { 188 188 auto& cpu = context->cpu; 189 189 probeWasCalled = true; … … 227 227 228 228 // Write expected values. 229 jit.probe([&] (Probe Context* context) {229 jit.probe([&] (Probe::State* context) { 230 230 auto& cpu = context->cpu; 231 231 probeCallCount++; … … 240 240 241 241 // Validate that expected values were written. 242 jit.probe([&] (Probe Context* context) {242 jit.probe([&] (Probe::State* context) { 243 243 auto& cpu = context->cpu; 244 244 probeCallCount++; … … 283 283 284 284 // Write expected values into the registers (except for sp, fp, and pc). 285 jit.probe([&] (Probe Context* context) {285 jit.probe([&] (Probe::State* context) { 286 286 auto& cpu = context->cpu; 287 287 probeCallCount++; … … 299 299 300 300 // Invoke the probe to call a lot of functions and trash register values. 301 jit.probe([&] (Probe Context*) {301 jit.probe([&] (Probe::State*) { 302 302 probeCallCount++; 303 303 CHECK_EQ(testFunctionToTrashGPRs(0, 1, 2, 3, 4, 5, 6, 7, 8, 9), 10); … … 306 306 307 307 // Validate that the registers have the expected values. 308 jit.probe([&] (Probe Context* context) {308 jit.probe([&] (Probe::State* context) { 309 309 auto& cpu = context->cpu; 310 310 probeCallCount++; … … 323 323 324 324 // Restore the original state. 325 jit.probe([&] (Probe Context* context) {325 jit.probe([&] (Probe::State* context) { 326 326 auto& cpu = context->cpu; 327 327 probeCallCount++; … … 336 336 337 337 // Validate that the original state was restored. 338 jit.probe([&] (Probe Context* context) {338 jit.probe([&] (Probe::State* context) { 339 339 auto& cpu = context->cpu; 340 340 probeCallCount++; … … 354 354 } 355 355 356 void testProbeModifiesStackPointer(WTF::Function<void*(Probe Context*)> computeModifiedStack)356 void testProbeModifiesStackPointer(WTF::Function<void*(Probe::State*)> computeModifiedStack) 357 357 { 358 358 unsigned probeCallCount = 0; … … 378 378 // Preserve original stack pointer and modify the sp, and 379 379 // write expected values into other registers (except for fp, and pc). 380 jit.probe([&] (Probe Context* context) {380 jit.probe([&] (Probe::State* context) { 381 381 auto& cpu = context->cpu; 382 382 probeCallCount++; … … 402 402 403 403 // Validate that the registers have the expected values. 404 jit.probe([&] (Probe Context* context) {404 jit.probe([&] (Probe::State* context) { 405 405 auto& cpu = context->cpu; 406 406 probeCallCount++; … … 421 421 422 422 // Restore the original state. 423 jit.probe([&] (Probe Context* context) {423 jit.probe([&] (Probe::State* context) { 424 424 auto& cpu = context->cpu; 425 425 probeCallCount++; … … 436 436 437 437 // Validate that the original state was restored. 438 jit.probe([&] (Probe Context* context) {438 jit.probe([&] (Probe::State* context) { 439 439 auto& cpu = context->cpu; 440 440 probeCallCount++; … … 456 456 } 457 457 458 void testProbeModifiesStackPointerToInsideProbe ContextOnStack()458 void testProbeModifiesStackPointerToInsideProbeStateOnStack() 459 459 { 460 460 size_t increment = sizeof(uintptr_t); … … 463 463 increment = 2 * sizeof(uintptr_t); 464 464 #endif 465 for (size_t offset = 0; offset < sizeof(Probe Context); offset += increment) {466 testProbeModifiesStackPointer([=] (Probe Context* context) -> void* {465 for (size_t offset = 0; offset < sizeof(Probe::State); offset += increment) { 466 testProbeModifiesStackPointer([=] (Probe::State* context) -> void* { 467 467 return reinterpret_cast<uint8_t*>(context) + offset; 468 468 }); … … 478 478 #endif 479 479 for (size_t offset = 0; offset < 1 * KB; offset += increment) { 480 testProbeModifiesStackPointer([=] (Probe Context* context) -> void* {480 testProbeModifiesStackPointer([=] (Probe::State* context) -> void* { 481 481 return reinterpret_cast<uint8_t*>(context->cpu.sp()) - offset; 482 482 }); … … 494 494 MacroAssemblerCodeRef continuation = compile([&] (CCallHelpers& jit) { 495 495 // Validate that we reached the continuation. 496 jit.probe([&] (Probe Context*) {496 jit.probe([&] (Probe::State*) { 497 497 probeCallCount++; 498 498 continuationWasReached = true; … … 507 507 508 508 // Write expected values into the registers. 509 jit.probe([&] (Probe Context* context) {509 jit.probe([&] (Probe::State* context) { 510 510 probeCallCount++; 511 511 context->pc() = continuation.code().executableAddress(); … … 526 526 }; 527 527 528 static void fillStack(Probe Context* context)528 static void fillStack(Probe::State* context) 529 529 { 530 530 auto& cpu = context->cpu; … … 540 540 CHECK_EQ(cpu.sp(), newSP); 541 541 542 // Verify that the probe has put the Probe Contextout of harm's way.542 // Verify that the probe has put the Probe::State out of harm's way. 543 543 CHECK_EQ((reinterpret_cast<void*>(context + 1) <= cpu.sp()), true); 544 544 … … 590 590 591 591 // Write expected values into the registers. 592 jit.probe([&] (Probe Context* context) {592 jit.probe([&] (Probe::State* context) { 593 593 auto& cpu = context->cpu; 594 594 probeCallCount++; … … 615 615 context->initializeStackArg = &data; 616 616 617 // Ensure that we'll be writing over the regions of the stack where the Probe Contextis.617 // Ensure that we'll be writing over the regions of the stack where the Probe::State is. 618 618 originalSP = cpu.sp(); 619 619 newSP = reinterpret_cast<uintptr_t*>(context) - numberOfExtraEntriesToWrite; … … 622 622 623 623 // Validate that the registers and stack have the expected values. 624 jit.probe([&] (Probe Context* context) {624 jit.probe([&] (Probe::State* context) { 625 625 auto& cpu = context->cpu; 626 626 probeCallCount++; … … 649 649 650 650 // Restore the original state. 651 jit.probe([&] (Probe Context* context) {651 jit.probe([&] (Probe::State* context) { 652 652 auto& cpu = context->cpu; 653 653 probeCallCount++; … … 701 701 RUN(testProbeWritesArgumentRegisters()); 702 702 RUN(testProbePreservesGPRS()); 703 RUN(testProbeModifiesStackPointerToInsideProbe ContextOnStack());703 RUN(testProbeModifiesStackPointerToInsideProbeStateOnStack()); 704 704 RUN(testProbeModifiesStackPointerToNBytesBelowSP()); 705 705 RUN(testProbeModifiesProgramCounter());
Note:
See TracChangeset
for help on using the changeset viewer.