Displaying 2 results from an estimated 2 matches for "evaluatedependents".
2007 Oct 18
3
[LLVMdev] movaps being generated despite alignment 1 being specified
...Since this is just a
repro-example, there is very little besides the boundaries here. :-) I
fully admit the constructions below may not be optimal.
; ModuleID = 'hydra'
target datalayout =
"E-p:32:32:32-i1:8:8:8-i8:8:8:8-i32:32:32:32-f32:32:32:32"
define void @evaluateDependents(float* %dependentV, float* %globalV)
{
Entry_evaluateDependents:
%Promoted_dependentV_Ptr = alloca <4 x float>, align 16
; <<4 x float>*> [#uses=2]
%Promoted_globalV_Ptr = alloca <4 x float>, align 16
; <<4 x float>*> [#uses=2]
%ext...
2007 Oct 19
0
[LLVMdev] movaps being generated despite alignment 1 being specified
On Oct 18, 2007, at 1:52 PM, Chuck Rose III wrote:
>
> Here are the instructions for evaluateDependents. The JITter
> hasn’t compiled foo yet. What’s confusing to me is why did my
> movups suddenly become a movaps? All the stores and loads have
> align 1 on them.
Hi Chuck,
I believe this is a bug but am unable to reproduce it with the test
case you've provided. I should be a...