Arm Community
Site
Search
User
Site
Search
User
Support forums
Arm Development Studio forum
LDR parallelism on arm926ej-s processors...?
Jump...
Cancel
Locked
Locked
Replies
2 replies
Subscribers
119 subscribers
Views
2252 views
Users
0 members are here
Options
Share
More actions
Cancel
Related
How was your experience today?
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion
LDR parallelism on arm926ej-s processors...?
Nick Pelling
over 12 years ago
Note: This was originally posted on 2nd November 2009 at
http://forums.arm.com
Hi everyone,
(I know it sounds like a trivial question but...)
What does the arm926ej-s do while it is filling a data cache line? That is, can you execute other normal ALU opcodes while a LDR completes (as long as you don''t try to read the LDR's target register from the register file), or does the LDR stall the processor until such time as the write to the register file is complete?
I've gone through countless ARM tech ref guides trying to work out what behaviour to expect here - please feel free to suggest any relevant tech documentation I should be looking at (there wasn't anything in the ARMv5 architecture guide or the ARM System Developer's Guide, etc).
Thanks, ....Nick Pelling....
Parents
Martin Weidmann
over 12 years ago
Note: This was originally posted on 2nd November 2009 at
http://forums.arm.com
The 926 pipeline is serial - so a following instruction can not progress until the current instruction does.
If the LDR hits in the cache, that shouldn't affect the susequent ADD.
If the LDR misses, the ADD will be stalled while the load completes. That said, the core will fetch the requested word first. So you only wait for the required data, not the complete cache line.
The ARM11s have support for out-standing loads.
Cancel
Vote up
0
Vote down
Cancel
Reply
Martin Weidmann
over 12 years ago
Note: This was originally posted on 2nd November 2009 at
http://forums.arm.com
The 926 pipeline is serial - so a following instruction can not progress until the current instruction does.
If the LDR hits in the cache, that shouldn't affect the susequent ADD.
If the LDR misses, the ADD will be stalled while the load completes. That said, the core will fetch the requested word first. So you only wait for the required data, not the complete cache line.
The ARM11s have support for out-standing loads.
Cancel
Vote up
0
Vote down
Cancel
Children
No data