Changeset 38669 in webkit for trunk/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Nov 21, 2008, 11:31:34 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r38652 r38669 3060 3060 3061 3061 void* code = __ executableCopy(); 3062 ASSERT(code);3063 3062 3064 3063 // Translate vPC offsets into addresses in JIT generated code, for switch tables. … … 3132 3131 3133 3132 void* code = __ executableCopy(); 3134 ASSERT(code);3135 3133 3136 3134 X86Assembler::link(code, failureCases1, reinterpret_cast<void*>(Interpreter::cti_op_get_by_id_self_fail)); … … 3175 3173 3176 3174 void* code = __ executableCopy(); 3177 ASSERT(code);3178 3175 3179 3176 // Use the repatch information to link the failure cases back to the original slow case routine. … … 3216 3213 3217 3214 void* code = __ executableCopy(); 3218 ASSERT(code);3219 3215 3220 3216 #if USE(CTI_REPATCH_PIC) … … 3259 3255 3260 3256 void* code = __ executableCopy(); 3261 ASSERT(code);3262 3257 3263 3258 // Use the repatch information to link the failure cases back to the original slow case routine. … … 3313 3308 3314 3309 void* code = __ executableCopy(); 3315 ASSERT(code);3316 3310 3317 3311 for (unsigned i = 0; i < bucketsOfFail.size(); ++i) … … 3336 3330 3337 3331 void* code = __ executableCopy(); 3338 ASSERT(code);3339 3332 3340 3333 X86Assembler::link(code, failureCases1, reinterpret_cast<void*>(Interpreter::cti_op_put_by_id_fail)); … … 3432 3425 3433 3426 void* code = __ executableCopy(); 3434 ASSERT(code);3435 3427 3436 3428 if (failureCases.size()) … … 3641 3633 3642 3634 void* code = __ executableCopy(); 3643 ASSERT(code);3644 3635 3645 3636 X86Assembler::link(code, array_failureCases1, reinterpret_cast<void*>(Interpreter::cti_op_get_by_id_array_fail)); … … 3722 3713 3723 3714 void* code = __ executableCopy(); 3724 ASSERT(code);3725 3715 3726 3716 // Use the repatch information to link the failure cases back to the original slow case routine.
Note:
See TracChangeset
for help on using the changeset viewer.