search for: dataflowflag

Displaying 3 results from an estimated 3 matches for "dataflowflag".

2008 Oct 27
0
[LLVMdev] ADDE on HW that doesn't have flags?
...gs is not something I am qualified to speak on (though I suspect it would put an unnecessary compuational burdon on the scheduler and RA, esp on x86), but seperating control and dataflow flags so that an arch can say dataflow flags are always registers would let legalize know that addc was <int, dataflowflag> and that on the arch dataflowflag == register, so it could handle fixing up the types to <int, bool>. Right now, addc can't be legalized locally to add and cmp because the result of legalization needs to be the same type as before. Andrew
2008 Oct 27
2
[LLVMdev] ADDE on HW that doesn't have flags?
Thanks - that solves both problems. In the future, HW may have built in ADDE support, but will likely still not have flags - it'll just read 3 registers and write two. Any thoughts there? Thanks, Dan On Oct 27, 2008, at 12:07 PM, Andrew Lenharth wrote: > On Mon, Oct 27, 2008 at 10:11 AM, Daniel M Gessel <gessel at apple.com> > wrote: >> The language I'm
2008 Oct 27
1
[LLVMdev] ADDE on HW that doesn't have flags?
...I am qualified to speak on (though I suspect it > would put an unnecessary compuational burdon on the scheduler and RA, > esp on x86), but seperating control and dataflow flags so that an arch > can say dataflow flags are always registers would let legalize know > that addc was <int, dataflowflag> and that on the arch dataflowflag == > register, so it could handle fixing up the types to <int, bool>. > Right now, addc can't be legalized locally to add and cmp because the > result of legalization needs to be the same type as before. > > Andrew > ________________...