Displaying 6 results from an estimated 6 matches for "getdynamicareaoffset".
2015 Nov 24
2
asan for allocas on powerpc64
...PEI::calculateCallsInformation() has run.
>>
>> So maybe the lowering has to be done as part of frame index elimination?
>> (I'm not too familiar with this code.)
>
>
> Yeah, this sounds like a good idea. I'm attaching another draft patch that
> tries to lower getDynamicAreaOffset during frame index elimination. There
> are still some directions for improvements, thought, such as combining
> getDynamicAreaOffset with other instructions, but anyway, could you please
> check it on your PPC box?
Yes, this fixes the test case. Thanks!
Jay.
2015 Nov 23
2
asan for allocas on powerpc64
...to be done as part of frame index elimination?
(I'm not too familiar with this code.)
Jay.
On 23 November 2015 at 13:07, Jay Foad <jay.foad at gmail.com> wrote:
> Maxim,
>
> It seems to be doing roughly the right thing, but it isn't quite enough to
> fix the test case. getDynamicAreaOffset() is returning 0x20, but from
> looking at the generated code for the test case, the real offset from
> native sp to the allocated area is 0x60.
>
> I will run it under gdb and see if I can spot the problem...
>
> Thanks!
> Jay.
>
> On 23 November 2015 at 11:41, Maxim Ost...
2015 Nov 23
2
asan for allocas on powerpc64
Jay, do you have a PowerPC64 target? If so, could you please check
attached patch on PPC box? This is a draft patch, but it would be nice
to make sure that we are moving to right direction here.
Thanks,
-Maxim
On 18/11/15 00:12, Jay Foad wrote:
>>> Currently test/asan/TestCases/alloca_vla_interact.cc is XFAILed for
>>> powerpc64. I've had a look at why it
2005 Feb 17
2
[LLVMdev] LLVM under MS VC++ 2005
...nment
llvm::TargetFrameInfo::getIncomingArgOffset
llvm::TargetFrameInfo::getOutgoingArgOffset
llvm::TargetFrameInfo::getFirstAutomaticVarOffset
llvm::TargetFrameInfo::getRegSpillAreaOffset
llvm::TargetFrameInfo::getTmpAreaOffset
llvm::TargetFrameInfo::getDynamicAreaOffset
Note I have not commited anything to CVS.
Aaron
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050217/42046651/attachment.html>
-------------- next part --------------
An embedded and charset-unspecifie...
2005 Feb 17
0
[LLVMdev] LLVM under MS VC++ 2005
...rgetFrameInfo::getRegSpillAreaOffset' : must return a value
c:\languages\llvm\lib\target\targetframeinfo.cpp(52) : error C4716: 'llvm::TargetFrameInfo::getTmpAreaOffset' : must return a value
c:\languages\llvm\lib\target\targetframeinfo.cpp(56) : error C4716: 'llvm::TargetFrameInfo::getDynamicAreaOffset' : must return a value
Presumably 2003 did not pick up these errors, although I would have thought it would have ??? :(
These should really be fixed, for consistancies sake, presumably they produce warnings on 2003 and GCC.
I have added dummy constructors in return statements to allow these t...
2015 Nov 17
3
asan for allocas on powerpc64
Hi!
Sorry for delay, just returned from vacation.
On 12/11/15 23:44, Kostya Serebryany via llvm-dev wrote:
> +Maxim and Yuri, as I think this is their code.
>
> On Thu, Nov 12, 2015 at 3:02 AM, Jay Foad <jay.foad at gmail.com
> <mailto:jay.foad at gmail.com>> wrote:
>
> (Resending with the correct mailing list address.)
>
> Hi,
>
> Currently