Displaying 5 results from an estimated 5 matches for "getoffsetoflocalarea".
2008 Jun 30
2
[LLVMdev] Recently failing vector tests
...ks.
> if (!RegInfo->targetHandlesStackFrameRounding() &&
> (FFI->hasCalls() || FFI->hasVarSizedObjects() ||
> - RegInfo->needsStackRealignment(Fn))) {
> + (RegInfo->needsStackRealignment(Fn) &&
> + Offset > std::abs(TFI.getOffsetOfLocalArea())))) {
> // If we have reserved argument space for call sites in the
> function
> // immediately on entry to the current function, count it as
> part of the
> // overall stack size.
>
> _______________________________________________
> LLVM Developers...
2008 Jun 27
0
[LLVMdev] Recently failing vector tests
...64,7 +464,8 @@
// works.
if (!RegInfo->targetHandlesStackFrameRounding() &&
(FFI->hasCalls() || FFI->hasVarSizedObjects() ||
- RegInfo->needsStackRealignment(Fn))) {
+ (RegInfo->needsStackRealignment(Fn) &&
+ Offset > std::abs(TFI.getOffsetOfLocalArea())))) {
// If we have reserved argument space for call sites in the
function
// immediately on entry to the current function, count it as
part of the
// overall stack size.
2008 Jun 27
2
[LLVMdev] Recently failing vector tests
Running on x86-64 linux:
FAIL: test/CodeGen/X86/vec_ins_extract.ll
Failed with exit(1) at line 1
while running: llvm-as < test/CodeGen/X86/vec_ins_extract.ll | opt -scalarrepl -instcombine | llc -march=x86 -mcpu=yonah | not grep sub.*esp
subl $16, %esp
subl $16, %esp
subl $16, %esp
subl $16, %esp
child process exited abnormally
FAIL:
2008 Jun 30
0
[LLVMdev] Recently failing vector tests
...(!RegInfo->targetHandlesStackFrameRounding() &&
>> (FFI->hasCalls() || FFI->hasVarSizedObjects() ||
>> - RegInfo->needsStackRealignment(Fn))) {
>> + (RegInfo->needsStackRealignment(Fn) &&
>> + Offset > std::abs(TFI.getOffsetOfLocalArea())))) {
>> // If we have reserved argument space for call sites in the
>> function
>> // immediately on entry to the current function, count it as
>> part of the
>> // overall stack size.
>>
>> _______________________________________________...
2008 Jun 30
1
[LLVMdev] Recently failing vector tests
...tHandlesStackFrameRounding() &&
> >> (FFI->hasCalls() || FFI->hasVarSizedObjects() ||
> >> - RegInfo->needsStackRealignment(Fn))) {
> >> + (RegInfo->needsStackRealignment(Fn) &&
> >> + Offset > std::abs(TFI.getOffsetOfLocalArea())))) {
> >> // If we have reserved argument space for call sites in the
> >> function
> >> // immediately on entry to the current function, count it as
> >> part of the
> >> // overall stack size.
> >>
> >> _____________...