search for: instra

Displaying 1 result from an estimated 1 matches for "instra".

Did you mean: instr
2013 Nov 22
1
[LLVMdev] prevents instruction-scheduler from interfereing instruction pair
Hi, LLVM list, I am using Post-RA scheduler to reorder instructions. by now, it's helpful for our processor but I meet a trouble. In our ISA, we have fixed instruction pairs. that is to say, our cpu must see instrA right before instrB. it's not acceptable to have any instruction between them. we call it an instruction pair. The problem is I am not aware of describing this kind of constraint in TD or cpp code. Post-RA scheduler may insert an instruction between instruction pair. Does any other ISA have si...