search for: reific

Displaying 3 results from an estimated 3 matches for "reific".

Did you mean: reafic
2006 Feb 18
6
Naming join models
...ass to represent the association of an Author and a Book, and a Tagging for a Taggable and a Tag. Those examples are fairly readable, but I''m noticing that many other relationships are harder to name. I think the problem is trying to turn a verb-type relationship into a noun-type reification of that relationship. For example, what do you call the reification of the relationship of a Participant to a Meeting? A "Participation"? An "Attendance"? What about a Student to a SchoolClass? A ProjectManager to a Project? Start pluralizing and things get ev...
2008 Dec 28
0
[LLVMdev] Controlling the stack layout
> I'd like to generate this layout: > > 12(%ebp) - second function parameter > 8(%ebp) - first function parameter > 4(%ebp) - old %EIP (the function's "return address") > 0(%ebp) - old %EBP (previous function's base pointer) > -4(%ebp) - My language specific information > -8(%ebp) - first local variable > -12(%ebp) -
2008 Dec 27
5
[LLVMdev] Controlling the stack layout
Hi everyone, As a front-end developer, I'd like to add a language-specific information at a fixed location of each stack frame. The reason is that I want to retrieve this information when dynamically walking the stack. For example, X86 has the following stack layout for a function with two arguments and two locals: 12(%ebp) - second function parameter 8(%ebp) - first function