• Efficient uasage of PLD instruction in combination with Load instructions?
    Hi all,  after a long time I'm back to forum with a question I'm posting this question with some pseudo code for(i=0;i<100;i++) { instruction1 instruction2 instruction3 ................. instructionA...
  • Efficient uasage of PLD instruction in combination with Load instructions?
    Hi all,  after a long time I'm back to forum with a question I'm posting this question with some pseudo code for(i=0;i<100;i++) { instruction1 instruction2 instruction3 ................. instructionA...
  • Cortex A8 PLD
    Good morning, I'm studying ARM assembly, Cortex A series. Reading the ARM documentation I found out this paper (Cortex A8, fast memcpy examples). My attention went to the PDL instruction, preloading...
  • Cortex A8 PLD
    Good morning, I'm studying ARM assembly, Cortex A series. Reading the ARM documentation I found out this paper (Cortex A8, fast memcpy examples). My attention went to the PDL instruction, preloading...
  • Using PLD for strided access to an array
    Given the following code that is accessing the columns of a matrix layer out in row major order, I want to include a prefetch so that I do not have misses on each column component. Cam you tell me where...