[cacao] RFC: CACAO PR157 ARM memory barrier patch

Robert Lougher rob.lougher at gmail.com
Fri Mar 11 07:48:11 PST 2011


On 11 March 2011 15:40, Xerxes Rånby <xerxes at zafena.se> wrote:
> On 2011-03-11 16:27, Andrew Haley wrote:
>> On 03/11/2011 03:12 PM, Xerxes Rånby wrote:
>>> On 2011-03-11 16:06, Matthias Klose wrote:
>>>> On 11.03.2011 14:59, Xerxes Rånby wrote:
>>>>> Hi
>>>>>
>>>>> The attached patch makes CACAO SMP safe on ARM by fixing
>>>>> CACAO PR157: ARM SMP Assertion thinlock failed.
>>>>> http://server.complang.tuwien.ac.at/cgi-bin/bugzilla/show_bug.cgi?id=157
>>>>>
>>>>> Ok to push to IcedTea6 HEAD and 1.10 branch?
>>>> please could you make this check depending on the compiler version used? As it
>>>> is not in 4.5.x fsf, the safe version to check would be 4.6.0.
>>>>
>>>>   Matthias
>>> No, i dont think making this dependent on the compiler version would work.
>>> For what i know
>>>
>>> __asm__ __volatile__ ("" : : : "memory");
>>>
>>> do not generate any code and do not work as a memory barrier on ARM for any GCC version.
>> The gcc barrier is called __sync_synchronize().
>>
>> Andrew.
>
> I will look into if I can make a follow up optimization patch for IcedTea6 HEAD
> that uses the GCC __sync_synchronize() memory barrier on GCC 4.5 and later in combination with ARMV7.
> The GCC __sync_synchronize() do emit an armv7+ dmb instruction directly
> that are faster than using the kernel helper on the latest ARM socs but only on GCC 4.5+ for what i have tested.
>

This is how I define MBARRIER for ARM in JamVM:

#ifdef __ARM_ARCH_7A__
#define MBARRIER() __asm__ __volatile__ ("dmb" ::: "memory")
#else
#define MBARRIER() __asm__ __volatile__ ("" ::: "memory")
#endif

Rob.

> Cheers
> Xerxes
>
> _______________________________________________
> cacao mailing list
> cacao at complang.tuwien.ac.at
> http://c1.complang.tuwien.ac.at/cgi-bin/mailman/listinfo/cacao
>



More information about the distro-pkg-dev mailing list