The difference between “load” and “fetch”

terminology

I often encounter the words load and fetch in contexts where data are being read from some source, and they seem to have slightly different meanings. What's the difference?

I've done some research and couldn't find any specific technical difference in general usage. While the term fetch can refer to one stage in CPU instruction execution, I've seen it used in contexts not related to CPUs. To keep this question on-topic for Super User, I expect only the technical definition of these terms, rather than their general usage.

Best Answer

"Load" refers to taking the value and assigning it to a register or variable, whereas "fetch" refers to taking the value and using it directly in an operation.

Related Question