Home
last modified time | relevance | path

Searched refs:JITStackFrame (Results 1 – 8 of 8) sorted by relevance

/external/webkit/JavaScriptCore/jit/
DJITStubs.cpp78 COMPILE_ASSERT(offsetof(struct JITStackFrame, code) % 16 == 0x0, JITStackFrame_maintains_16byte_sta…
79 COMPILE_ASSERT(offsetof(struct JITStackFrame, savedEBX) == 0x3c, JITStackFrame_stub_argument_space_…
80 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x58, JITStackFrame_callFrame_offset_ma…
81 COMPILE_ASSERT(offsetof(struct JITStackFrame, code) == 0x50, JITStackFrame_code_offset_matches_ctiT…
137 COMPILE_ASSERT(offsetof(struct JITStackFrame, code) % 32 == 0x0, JITStackFrame_maintains_32byte_sta…
138 COMPILE_ASSERT(offsetof(struct JITStackFrame, savedRBX) == 0x48, JITStackFrame_stub_argument_space_…
139 COMPILE_ASSERT(offsetof(struct JITStackFrame, callFrame) == 0x90, JITStackFrame_callFrame_offset_ma…
140 COMPILE_ASSERT(offsetof(struct JITStackFrame, code) == 0x80, JITStackFrame_code_offset_matches_ctiT…
268 COMPILE_ASSERT(offsetof(struct JITStackFrame, code) % 16 == 0x0, JITStackFrame_maintains_16byte_sta…
269 COMPILE_ASSERT(offsetof(struct JITStackFrame, savedEBX) == 0x3c, JITStackFrame_stub_argument_space_…
[all …]
DJITStubs.h80 struct JITStackFrame { struct
108 struct JITStackFrame { argument
135 struct JITStackFrame { argument
161 struct JITStackFrame { argument
DJITInlineMethods.h144 poke(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*)); in restoreArgumentReference()
151 poke(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*)); in restoreArgumentReference()
DJITOpcodes.cpp288 poke(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*)); in privateCompileCTIMachineTrampolines()
1282 peek(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*)); in emit_op_catch()
1437 peek(regT2, OBJECT_OFFSETOF(JITStackFrame, enabledProfilerReference) / sizeof (void*)); in emit_op_profile_will_call()
1448 peek(regT2, OBJECT_OFFSETOF(JITStackFrame, enabledProfilerReference) / sizeof (void*)); in emit_op_profile_did_call()
1774 poke(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*));
2478 peek(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*));
2662 peek(regT1, OBJECT_OFFSETOF(JITStackFrame, enabledProfilerReference) / sizeof (void*));
2674 peek(regT1, OBJECT_OFFSETOF(JITStackFrame, enabledProfilerReference) / sizeof (void*));
DJIT.cpp458 peek(regT0, OBJECT_OFFSETOF(JITStackFrame, registerFile) / sizeof (void*)); in privateCompile()
DJITPropertyAccess.cpp588 …load32(Address(stackPointerRegister, offsetof(struct JITStackFrame, args[2]) + sizeof(void*)), reg… in privateCompilePutByIdTransition()
589 …load32(Address(stackPointerRegister, offsetof(struct JITStackFrame, args[2]) + sizeof(void*) + 4),… in privateCompilePutByIdTransition()
/external/webkit/JavaScriptCore/
DChangeLog593 (JSC::JITStackFrame::returnAddressSlot):
862 (JITStackFrame): (X86_64): move args area earlier
2571 (JSC::JIT::emit_op_throw): Updated to use JITStackFrame abstraction.
2717 * jit/JITStubs.h: Changed up some offsets in the JITStackFrame class, since
5786 …Unfortunate the arm compiler does not like the use of offsetof on JITStackFrame (since it now cont…
5790 …* Move COMPILE_ASSERTs defending layout of JITStackFrame structure on armv7 into JITThunks constru…
DChangeLog-2009-06-16137 (JSC::JITStackFrame::returnAddressSlot):
543 (JSC::JITStackFrame::returnAddressSlot):
4287 Replaced two more macros with references to the JITStackFrame structure.
4666 Added the return address of a stub function to the JITStackFrame abstraction.
4786 (JSC::JITStackFrame::returnAddressSlot):
4843 the JITStackFrame struct.