Re: [Mono-dev] Embedded mono crash on exception

2015-08-11 Thread Trigve
Anyone, please? -- View this message in context: http://mono.1490590.n4.nabble.com/Embedded-mono-crash-on-exception-tp4666414p4666459.html Sent from the Mono - Dev mailing list archive at Nabble.com. ___ Mono-devel-list mailing list

Re: [Mono-dev] Number of elements in a fixed buffer

2015-08-11 Thread Bill Seurer
The ELF ABI v2 changed how parameters that are structures are passed to functions and also how structures are returned. One of the changes is that if a structure parameter is completely made up of 8 or fewer doubles xor floats then the structure is passed in FPRs instead of GPRs. The

Re: [Mono-dev] Investigating mono crashes on linux 4.1

2015-08-11 Thread Taloth Saldono
Time for a status update on this issue. Sadly no good news at all. Long story short on my mono tests. Managed to get no-managed-allocator working, but disabling TLABs didn't have any noticeable effect. Neither did adding a memory barrier to the mono_100ns_ticks method and some other attempts. Btw

Re: [Mono-dev] Number of elements in a fixed buffer

2015-08-11 Thread Zoltan Varga
Hi, Fixed buffers are a c# construct, the il code generared by the c# compiler is not much different than the il code generated for this declaration: [StructLayout (LayoutKind.Sequential, Size=32)] struct FooStruct { double d; } The Size= argument is kinda hard to handle in the runtime