Searched refs:artReadBarrierSlow (Results 1 – 12 of 12) sorted by relevance
/art/runtime/entrypoints/quick/ |
D | quick_entrypoints.h | 101 extern "C" mirror::Object* artReadBarrierSlow(mirror::Object* ref,
|
D | quick_field_entrypoints.cc | 384 extern "C" mirror::Object* artReadBarrierSlow(mirror::Object* ref ATTRIBUTE_UNUSED, in artReadBarrierSlow() function
|
/art/runtime/arch/arm/ |
D | entrypoints_init_arm.cc | 197 qpoints->pReadBarrierSlow = artReadBarrierSlow; in InitEntryPoints()
|
D | quick_entrypoints_arm.S | 878 bl artReadBarrierSlow @ artReadBarrierSlow(ref, rObj, offset) 879 @ No need to unpoison return value in r0, artReadBarrierSlow() would do the unpoisoning. 902 .extern artReadBarrierSlow
|
/art/runtime/arch/arm64/ |
D | entrypoints_init_arm64.cc | 193 qpoints->pReadBarrierSlow = artReadBarrierSlow; in InitEntryPoints()
|
D | quick_entrypoints_arm64.S | 1342 bl artReadBarrierSlow // artReadBarrierSlow(ref, xObj, offset) 1364 .extern artReadBarrierSlow
|
/art/runtime/arch/mips64/ |
D | entrypoints_init_mips64.cc | 207 qpoints->pReadBarrierSlow = artReadBarrierSlow; in InitEntryPoints()
|
D | quick_entrypoints_mips64.S | 1443 jal artReadBarrierSlow # artReadBarrierSlow(ref, rObj, offset) 1445 # t8 may be clobbered in artReadBarrierSlow. 1446 # No need to unpoison return value in v0, artReadBarrierSlow() would do the unpoisoning.
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 1504 la $t9, artReadBarrierSlow 1505 jalr $t9 # artReadBarrierSlow(ref, rObj, offset) 1507 # before the call to artReadBarrierSlow. 1508 addiu $sp, $sp, 16 # restore stack after call to artReadBarrierSlow 1509 # No need to unpoison return value in v0, artReadBarrierSlow() would do the unpoisoning. 1535 .extern artReadBarrierSlow
|
D | entrypoints_init_mips.cc | 476 qpoints->pReadBarrierSlow = artReadBarrierSlow; in InitEntryPoints()
|
/art/runtime/arch/x86_64/ |
D | quick_entrypoints_x86_64.S | 1482 call SYMBOL(artReadBarrierSlow) // artReadBarrierSlow(ref, obj_reg, offset) 2336 call SYMBOL(artReadBarrierSlow) // artReadBarrierSlow(ref, obj, offset)
|
/art/runtime/arch/x86/ |
D | quick_entrypoints_x86.S | 1503 call SYMBOL(artReadBarrierSlow) // artReadBarrierSlow(ref, obj_reg, offset) 2352 call SYMBOL(artReadBarrierSlow) // artReadBarrierSlow(ref, obj, offset)
|