Changeset 48527 in webkit for trunk/JavaScriptCore/jit/JITStubs.cpp
- Timestamp:
- Sep 18, 2009, 1:35:30 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITStubs.cpp
r48525 r48527 70 70 #endif 71 71 72 #if PLATFORM(IPHONE) 73 #define THUMB_FUNC_PARAM(name) SYMBOL_STRING(name) 74 #else 75 #define THUMB_FUNC_PARAM(name) 76 #endif 77 72 78 #if USE(JSVALUE32_64) 73 79 … … 205 211 ".globl " SYMBOL_STRING(ctiTrampoline) "\n" 206 212 ".thumb" "\n" 207 ".thumb_func " SYMBOL_STRING(ctiTrampoline) "\n"213 ".thumb_func " THUMB_FUNC_PARAM(ctiTrampoline) "\n" 208 214 SYMBOL_STRING(ctiTrampoline) ":" "\n" 209 215 "sub sp, sp, #0x3c" "\n" … … 231 237 ".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n" 232 238 ".thumb" "\n" 233 ".thumb_func " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"239 ".thumb_func " THUMB_FUNC_PARAM(ctiVMThrowTrampoline) "\n" 234 240 SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n" 235 241 "cpy r0, sp" "\n" … … 248 254 ".globl " SYMBOL_STRING(ctiOpThrowNotCaught) "\n" 249 255 ".thumb" "\n" 250 ".thumb_func " SYMBOL_STRING(ctiOpThrowNotCaught) "\n"256 ".thumb_func " THUMB_FUNC_PARAM(ctiOpThrowNotCaught) "\n" 251 257 SYMBOL_STRING(ctiOpThrowNotCaught) ":" "\n" 252 258 "ldr r6, [sp, #0x2c]" "\n" … … 464 470 ".globl " SYMBOL_STRING(ctiTrampoline) "\n" 465 471 ".thumb" "\n" 466 ".thumb_func " SYMBOL_STRING(ctiTrampoline) "\n"472 ".thumb_func " THUMB_FUNC_PARAM(ctiTrampoline) "\n" 467 473 SYMBOL_STRING(ctiTrampoline) ":" "\n" 468 474 "sub sp, sp, #0x3c" "\n" … … 490 496 ".globl " SYMBOL_STRING(ctiVMThrowTrampoline) "\n" 491 497 ".thumb" "\n" 492 ".thumb_func " SYMBOL_STRING(ctiVMThrowTrampoline) "\n"498 ".thumb_func " THUMB_FUNC_PARAM(ctiVMThrowTrampoline) "\n" 493 499 SYMBOL_STRING(ctiVMThrowTrampoline) ":" "\n" 494 500 "cpy r0, sp" "\n" … … 507 513 ".globl " SYMBOL_STRING(ctiOpThrowNotCaught) "\n" 508 514 ".thumb" "\n" 509 ".thumb_func " SYMBOL_STRING(ctiOpThrowNotCaught) "\n"515 ".thumb_func " THUMB_FUNC_PARAM(ctiOpThrowNotCaught) "\n" 510 516 SYMBOL_STRING(ctiOpThrowNotCaught) ":" "\n" 511 517 "ldr r6, [sp, #0x2c]" "\n" … … 888 894 ".globl " SYMBOL_STRING(cti_##op) "\n" \ 889 895 ".thumb" "\n" \ 890 ".thumb_func " SYMBOL_STRING(cti_##op) "\n" \896 ".thumb_func " THUMB_FUNC_PARAM(cti_##op) "\n" \ 891 897 SYMBOL_STRING(cti_##op) ":" "\n" \ 892 898 "str lr, [sp, #0x1c]" "\n" \
Note:
See TracChangeset
for help on using the changeset viewer.