hello:
I write linear assembly, and --opt_level=2 , build the assembly file,and generate .asm file, I open the .asm file , find that before PIPED LOOP PROLOG, the compiler disable the interrupt , and after PIPED LOOP EPILOG, compiler enable the interrupt , I want to know if when the assembly file is executed , a interrupt may be dropped! Because the interrupt is disable! So it may result some question! if so, what should I do?
if I do the SOFTWARE PIPELINE and do Optimization myself, need I disable the interrupt before pipeline loop, enable the interrupt after the pipeline loop?????
thanks!