Displaying 5 results from an estimated 5 matches for "targethandlesstackframeround".
2008 Jun 30
2
[LLVMdev] Recently failing vector tests
...Index: CodeGen/PrologEpilogInserter.cpp
> ===================================================================
> --- CodeGen/PrologEpilogInserter.cpp (revision 52829)
> +++ CodeGen/PrologEpilogInserter.cpp (working copy)
> @@ -464,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 rese...
2008 Jun 27
0
[LLVMdev] Recently failing vector tests
...l be something close to this.
Index: CodeGen/PrologEpilogInserter.cpp
===================================================================
--- CodeGen/PrologEpilogInserter.cpp (revision 52829)
+++ CodeGen/PrologEpilogInserter.cpp (working copy)
@@ -464,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 c...
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
...EpilogInserter.cpp
>> ===================================================================
>> --- CodeGen/PrologEpilogInserter.cpp (revision 52829)
>> +++ CodeGen/PrologEpilogInserter.cpp (working copy)
>> @@ -464,7 +464,8 @@
>> // works.
>> if (!RegInfo->targetHandlesStackFrameRounding() &&
>> (FFI->hasCalls() || FFI->hasVarSizedObjects() ||
>> - RegInfo->needsStackRealignment(Fn))) {
>> + (RegInfo->needsStackRealignment(Fn) &&
>> + Offset > std::abs(TFI.getOffsetOfLocalArea())))) {
>>...
2008 Jun 30
1
[LLVMdev] Recently failing vector tests
...t; ===================================================================
> >> --- CodeGen/PrologEpilogInserter.cpp (revision 52829)
> >> +++ CodeGen/PrologEpilogInserter.cpp (working copy)
> >> @@ -464,7 +464,8 @@
> >> // works.
> >> if (!RegInfo->targetHandlesStackFrameRounding() &&
> >> (FFI->hasCalls() || FFI->hasVarSizedObjects() ||
> >> - RegInfo->needsStackRealignment(Fn))) {
> >> + (RegInfo->needsStackRealignment(Fn) &&
> >> + Offset > std::abs(TFI.getOffsetOfLocalArea())...