Search

Friday, July 19, 2013

More geekyness - How is memory on a computer used?

Location: Salt Lake City, UT, USA
Since it had been a while since I had a geeky post, I figured it was time.  Following with the theme of the low level, I am going to delve into memory a bit deeper than I have in the past.  This will be a two-part post.  This post will cover the hardware and operating system view of memory.  My next post will cover the view of memory which programs see.

On your computer you have some amount of memory.  You might have 2-4 GB or a little less, or a lot more, but beyond the abstract idea that your programs go in there when they run, you likely have little idea what your computer actually does with this memory.  You may have seen something about virtual memory, seen something about swapping, or even heard people talking about locality (I'm talking spacial locality), and not understood what they meant.  I aim to clear up some of this confusion.  This post is from a programming perspective.

The memory on your computer, typically refered to as RAM (random access memory), is one large array of contiguous bytes.  If you have 2 GB of memory, you have 2*2^30 (two times two to the thirtieth power) total bytes, or 2147483648 bytes numbered from 0 to 2147483647.  This numbering forms an address system for the memory array, thought of as Physical Memory.  This is a very logical way to address memory, and lends itself to very fast hardware operations, however this method of addressing poses a problem for applications running on the computer.  To understand why, we must look at how programs are actually run by your hardware (I will go into much more detail on this subject in my next post).

When a program is run on your computer the code which makes up the program (called the code segment) is loaded into memory.  Spread liberally throughout this code are commands that jump to new memory addresses, load values from memory, save values to memory, and generally manipulate the memory in any number of ways.  If your computer is only running one program this is not a problem, but if you happen to run a second program, the computer will have to place it in a different part of memory.  Since all modern computers are able to run more than one program at a time, the programs will never know where in memory they are, and programs have no way to know ahead of time where memory values will be, something a program must be able to do because these addresses must be defined and resolved at compile time, before the program is run.  To resolve this issue Intel introduced a new architecture to their chips called Virtual Memory (not to be confused with your operating systems swap file, which is sometimes called Virtual Memory by Windows users).

Virtual memory is an addressing scheme where each running program is presented with its own address 'space'.  This is an abstract representation where each program running (or more properly put, each process) is presented with a memory space that appears to be its own computer.  This memory space is not real, in the sense that it does not directly correspond to the physical memory installed on the computer, it is a completely logical memory space as opposed to physical, an abstraction.  Since there is a disconnect between the physical memory, and what each program sees, a special piece of hardware, called a memory management unit (MMU) is added to the computer to translate these logical addresses to a physical space in your memory array.  Hardware translation is important because it is very fast.  This way each program can address its own memory as if it were the only program running, but your physical memory can be used to handle many of these programs running at once.  Virtual memory and the increasing use of multi-tasking operating systems are a large contributing factor to increasing memory requirements.

So on top of this physical memory we have a layer of abstraction giving us logical addressing.  But there is another traditional issue in computer memory which must be addressed before we can use (program for) a modern operating system, that is the issue of fragmentation and total space.  What do I mean by fragmentation?  When we are laying out programs in memory, we need to make sure those programs do not run out of space.  We also must ensure that all the memory for a program is near the other memory for that program, a concept called spacial locality.  This is important because many operations within a program will move much faster if the memory accessed is sequential (because memory is transferred in chunks), and cache schemes tend to depend to some degree on spacial locality.  To achieve this we over-allocate memory to each program leading to unused memory that is unavailable, fragmented.  Also there is the issue of running out of memory all together.  Programs regularly allocate memory.  There are many programs running on every computer which will cause it to crash if this request for memory is unsatisfied, and as we run more and more programs we use more and more memory.

To deal with these issues by making it appear that we have nearly unlimited memory (limited only by the address width) we turn to a vast but slow array of memory, your computers hard disk.  To accomplish this we introduce the abstract idea of a page, a limited range of memory of a predefined size which we can assign to a single process (program).  Pages could be of any size, but as with anything in memory are typically sized to be a power of 2, aligning properly in memory with addresses that are powers of 2.  We can then move this page (a limited range of memory) back and forth from the physical memory (via logical addresses) to the hard drive and vice-versa depending on how frequently it is needed and how full the physical memory is.  This memory paging is controlled by the operating system which builds and maintains a table of all the pages of memory allocated and manages the access and location of the data stored in that memory whether it be in physical memory, or stored on disk.  The file on the disk which holds the memory not located in physical RAM is called a page file (proper name) or swap file (descriptive).  Many people improperly or informally refer to this concept of paging as virtual memory, though this can lead to confusion as I mentioned eariler.

So if you made it this far, at the very least, the next time you get an error that refers to a page or paging you will know what is causing the issue...  Then you will restart your computer like everyone else!

The only other thing that I can think to say on the subject of virtual memory and paging is that they are working together.  Your computer, consisting of a CPU, MMU, memory and busses (which transmit data between places), handles the virtual memory translation, an address translation, and this logical view presented by the hardware is what is being manipulated by the software, or the logical system on your computer, including your operating system.  In fact, your operating system is responsible for talking to the hardware, and it is prudent to note that the OS can control how the hardware functions on this level (through user rings, and processor modes, I will not go into this here).  The operating system is what created pages.  So if logical memory is an abstraction of physical memory, pages are an abstraction of logical memory.


Computers are a layered collection of abstractions!


I will leave you with that thought, and I will follow up this post with another about how programs work with memory, and how applications are structured in memory.  If you had trouble following my post on switch statements and jump tables, this next post will help clear it up a lot!

Tuesday, July 16, 2013

Fast lane or passing lane?

Location: Salt Lake City, UT, USA
Something that irks me, and I know I am not alone, are people who monopolize the passing lane.  I know I am not alone because this is one of the few things I consistently complain about to those around me, and everyone I know immediately agrees and they commiserate with me.  However, where I will complain about misuse of a passing lane, most people I know will complain about misuse of a fast lane, and therein I believe is part of the problem.

Fast is an abstract idea.  Ask 10 people what is fast, and you will likely get 10 different answers.  By thinking of the far left lane as a fast lane you open this lane up to everyone's individual idea of what is fast.  This could be everything from what someone feels is the appropriate speed for conditions, to the speed limit, to as fast as a car can be pushed.  The result, the left lane becomes the same as every other lane, a mire of traffic to impede anyone who may want to travel faster than the slowest inhabitant.

This is the importance of defining this lane as a passing lane (which is often how state law will define the left lane in a multi-lane highway).  Passing is not an abstract idea.  You either are passing cars on your right, or you are not.  This creates a very clear standard, if you are not passing cars then you should not be in the passing lane.  If you are blocking the passing lane by not passing cars you are being an anti-social ass.

Short post today!  What do you think of people monopolizing the passing lane?  What do you call it?

Wednesday, July 10, 2013

Benefiting disproportionately from the common wealth

Location: Salt Lake City, UT, USA
Something that has been bandied around a lot for the past decade or so is this idea of 'job creators'.  This typically is used as a political term to describe an economic strategy that came about in the late 70's and early 80's, the idea of 'trickle down economics'.  This is the idea that the wealthy should be allowed to keep much more of their money than previously they had, the justification being that they would take all that money and invest it in things that would create jobs and raise the standard of living for everyone.

At first thought, this may seem like a logical strategy.  But it simply is a pipe-dream, as history has shown.  In fact, since that time the rich have gotten richer, and the middle class has stagnated, a fact that is clearly seen when one looks at the statistics over the last 30 or so years.  The reality is that the prosperity of our nation is fueled by the consumption of the middle class, and if the middle class incomes do not keep up with inflation, our economy cannot grow.  It can appear to grow, as we have now where so much wealth is created on paper out of thin air, but a stagnant middle class is a stagnant economy, no matter how rich the upper 0.1% appears on paper.  Not to say that means that the rich are all just as poor as us, far from it, this paper inflated wealth is spread nicely around among us all, many of us hold it through retirement accounts.

The struggle between income taxes is one that has been in the news recently, and I will not rehash it further, but instead I want to draw attention back to a tax issue which almost always is overlooked, the estate tax.  Opponents of this tax will refer to it as the death tax, but in honesty this would be similar to referring to a will as "the dead guys demands."  The reality is that the tax is leveled against the remaining estate of the most wealthy in our society.  These are imposed against estates valued at over 5 million dollars, more than twice what most people would make in their lifetimes.  This is important because most rational people understand the arguments against the estate tax, as they are not irrational arguments.

Why should someone be penalized because they are successful?  That is what all rational arguments boil down to on this issue, and it is a valid point.  I have heard many people attempt to respond to this question, and in my opinion, all but one group has failed to make an argument that acknowledged the moral question raised.  To understand why this argument is incorrect, I must show that the estate tax is not a penalization, but a repayment of a debt to the common wealth that we all create, own, and are responsible for.

I steal a statement from Bill Gates Sr. (yes, the father of the richest man on earth, at the moment), and assert that the rich deserve to pay disproportionately in taxes because the rich have benefited disproportionately from the common wealth.  What Mr. Gates is talking about here is important because it hints at one of the other true source of the wealth which we are capable of creating, the public infrastructure.

I have heard others talk about this.  Obama tried to point it out in a speech and was accused of being anti-business and saying business owners didn't work for what they have.  I am not a fan of Obama, and he has done his own defense against this, but his original point is quite valid.  He said that along with all the hard work that individuals put into their business, there is also work put in by the community.  The most obvious is the public system of roads and transportation that brings goods and supplied, as well as customers.  Obama talks about police, and firemen who protect businesses, funded by the public common wealth held by all of us.

It goes much deeper than that though.  We have a patent system which was created by and for all of us.  This patent system has been an enormous source of wealth for countless businesses, along with trademark and copyright law.  When businesses have their patents, written works, or trademarks stolen, they enjoy the services of another public sector entity, the courts.  When businesses seek to hire new talent, they do not have to invest significant sums in extensive ground-up training systems because they can walk over to the publicly funded schools in their area and find people trained in a myriad of skills which they require.

This is how those who are able to amass large amounts of money are benefiting from the common holdings of we the people, the common wealth.  This is why the rich are benefiting disproportional to the public.  They live in a society which has built an infrastructure that is the greatest generator of wealth in the modern world.  The wealthy shoulder a moral responsibility to return in proportion to their benefit to the system created by others to give them that opportunity.  This is indeed the moral imperative.  Some of the wealthy will return disproportionately to society if left to their own devices, however, this is by no means the norm.  Anyone who looks at the history of wealth distribution can see that this repayment to society cannot be voluntary.

Through most of our nations history of taxation the wealthy have been taxed at a much higher rate than the middle and lower classes.  Most of the time this meant effective tax rates of 60-80%, though tax rates on the top tier of the rich rose as high as 96%.  Tax rates now are effectively in the 12-15% range for the richest of Americans, and I believe my effective rate last year (which included a one time credit for money I spent on tuition) was 35%, I look forward to an effective rate closer to 40% next year.  I make almost exactly the median income at my current job.  If I pay taxes and don't spend a single penny of what I make, it would take me 142 years to make the 5 million dollars required to have to pay the estate tax.

If you look at where true economic prosperity comes from, the middle class consumers and the public infrastructure created through taxes, it becomes clear why the wealthy should pay proportionally more in taxes than the rest of the population.  I think the estate tax is a perfect tool in this quest because it ensures that the wealthy return to the system for the benefit they have received.  I think that humans are greedy beings, and that the estate tax helps to encourage people to create amazing things by allowing them to employ their money in their choice of pursuits, to hold their reward, but that at some point a portion of that accumulated wealth must be returned to the public which is charged with creating the infrastructure to ensure that future generations are allowed to enjoy the same prosperity that we can.

If humans were not humans and the world was perfect, perhaps this idea of trickle down economics would be viable, but the reality is that it is the job of government to structure markets in such a way as to encourage positive outcomes and discourage negative outcomes, and this idea of completely unregulated economies and markets is a daydream that is doing irrevocable harm to our society.

As always (and dammit, will someone someday take me up on this), tell me I'm wrong!  Or perhaps why I am right?

And here area few videos that inspired my post today:





Saturday, July 6, 2013

False equivalency - drinking Kool-Aid

Location: Salt Lake City, UT, USA
I have heard this one in lots of situations, but the one that really gets under my skin is how it is used in politics and business, and perpetuated by the news media.  The term I refer to is 'drinking the kool-aid'.  For this one a little bit of history is in order (apologies if you lived through this and know the story).

In the 50's an evangelical minister named Jim Jones founded a church called the Peoples Temple.  In the mid 70's Jones moved with most of his followers from Indiana to California.  The story of their time in California is too long to fully describe here, but to make the story short, though their membership continued to grow and Jim Jones had become politically well connected, the Peoples Temple had come under increasing scrutiny fueled by reports from former members, and current members families, through a group named the Concerned Relatives.  Under mounting pressure in the US, and increasingly socialist/communist aspirations for their group, Jim Jones negotiated with the Guyanese government for land in Guyana to establish a settlement, which would later be called Jonestown.

The story of the Peoples Temple in Jonestown is another long and involved story which I will skip here, but you need to understand that Jonestown was built on land deep within the Guyanese jungle on land that natives did not want because it was so difficult to work.  Life in Jonestown was hard, but the people there were (mostly) committed.  At its height there were around 1000 people living there, commune style.  However, back in the US, allegations were flying about people being held against their will, and crimes as serious as murder which left a lot of questions about the Peoples Temple and its leadership.  The allegations became so widespread that Congressman Leo Ryan, from California, arranged a delegation to visit Jonestown himself, accompanied by several members of the press, and family members from the Concerned Relatives group.  The meeting in Jonestown started out well, despite scheduling issues and trouble getting permission to visit the site when they arrived in Guyana.  Ultimately of over 900 present, around 8-12 requested to leave with the congressman, and were granted permission by both the congressman and Jim Jones.  This stirred up a very emotional scene as a parent who asked to leave attempted to take the children from a parent who was choosing to stay.  There was a small scuffle involving one such split family and a knife, after which it was suggested that the congressman and his delegation, which now included the defectors, should leave for the evening while tempers died down.  However, waiting at the airstrip where the congressman and his delegation were preparing to depart after having left Jonestown, several Peoples Temple members arrived and opened fire, killing around 5 including Congressman Ryan.

It is unknown if these killings were directed by Jim Jones (many accounts falsely report that Jones ordered the killing, any evidence of this is circumstantial), but there is no question that when the perpetrators returned, Jim Jones knew what had happened.  Fearing US retaliation for the killing, Jim Jones commanded his people to commit mass suicide by drinking fruit punch (flavor-aid or kool-aid) mixed with cyanide.  Over 900 temple members committed suicide that day, most by cyanide poisoning.  Jim Jones and his inner circle all died to gunshot wounds.  Something like 2 or 4 members who were present that day survived, one of them was hard of hearing and slept through the assembly bell.  Another saw what was happening and lied about needing to get something, then fled and hid in the jungle.  The Jonestown youth basketball team survived because they were elsewhere at the time.

This is the origin of the phrase 'drinking the kool-aid'.  It refers to a large group of people following an ideology or personality to the point of taking their own lives and the lives of their families.

Now, lets compare this to how the term is commonly used.

In 1984 President Regan used this term 'drink the kool-aid' to describe three civil rights activists,  Jesse Jackson, Vernon Jordan Jr., and Benjamin Hooks.  He went further to accuse them of dragging the country into a political Jonestown during the previous election.  Now, lets look at this.  Over the 20th century many black people were unjustly killed in America.  Civil rights leaders looked at the rule of our land, and held faith that in that framework was freedom for their people, and an end (or at least sharp decline) of the threat against their lives.  Perhaps you could see this faith in our system as blind faith, and though eventually the civil rights activists won, they certainly suffered greatly to win, and many were killed for their beliefs.  So in that regard perhaps Regan was right, for a while the civil rights leaders did drink the kool-aid.  They had blind faith that this country would protect them, and many died for that faith.  Unfortunately, this is not what Regan meant.

As the dot-com bubble burst, the New York Times indicated that the phrase was being commonly used to refer to the investors who thought the market would never stop going up.  So in this context we are comparing losing money to taking your life and murdering your family.  I'm not even going to elaborate on how ridiculous this comparison is.

The way this phrase is used in political commentary provides some of the worst examples.  Often it is bandied about by pundits, such as Bill O'Reilly, to simply denote that they find no logic in an alternative viewpoint.  He has some great quotes on the subject:
"Most talk radio is conservative-dominated, ideologue, Kool-Aid–drinking idiots."
You are a blind ideologue who even if somebody’s nice to you, won’t admit it because you’re… Talk about a Kool-aid drinker!
The first situation he is just talking about his competition, in the second he simply doesn't like this lady and finds her logic inconsistent.  Neither situation baring any resemblance to the events at Jonestown.  I pick on O'Reilly because he has got to be the absolute worst, but this issue pervades many other pundits.  O'Reilly has a whole reoccurring bit about kool-aid drinkers where he lambastes anyone who disagrees with him, complete with kool-aid-man graphics and all.

I see this used to describe people who voted for Obama, acceptance of a project at work, employee dress codes.  I even found a reference where it was used to describe a marriage...

One funny thing I found while doing a little research on the uses of this phrase were site after site of people asking what the kool-aid reference was in regards to Obama.  Many report thinking it was a racial slur, like a reference to fried chicken or watermelon might be.  I was saddened that so many would be ignorant of the origin of the phrase, but I couldn't help but chuckle at how revealing it is about our culture.

The sad part is that they do it knowingly.  Regan and O'Reilly lived through Jonestown, and both have a great understanding of the tragedy that unfolded there.  Yet they both made a choice to exploit those events for their own benefits.  They tarnish the memories of those who died at Jonestown by comparing their plight to that of a media star battling for ratings, or corporate executives losing money.  They are disingenuous with their audiences when they assume that their arguments are so weak that they have to be supported by raw emotions such as that brought up by references to tragic events.

This is not unique to Jonestown, just look at the comparisons in modern culture to the holocaust, Hitler, or communist Russia.  Few if any are appropriate, almost all are perfect examples of gross false equivalency.

As always, tell me I'm wrong!