I'm writing a B+-tree implementation in C#, and the tree implementation I chose for my application has a very specific structure which is cache-conscious. To achieve these properties, it has strict layout policies on tree nodes.

What I want is simply expressed using C#'s fixed keyword for fixed-sized buffers:

public abstract class Tree<K, T> { }
sealed class Node<K, T> : Tree<K, T>
{
    Node<K, T> right;
    fixed Tree<K, T> nodes[127]; // inline array of 128 nodes
}

Unfortunately, fixed-sized buffers can only be used with primitive value types, like int and float. Just using plain arrays would add pointer indirections which destroy the cache-friendly properties of this tree type.

I also can't generate 128 fields and use pointer arithmetic to extract the field I want because there are no conversions between pointer types and managed objects.

About the only thing left is generating 128 fields with an indexer that selects the right one based on a switch (which can't be fast), or writing it as a C library and using P/Invoke, which would also destroy the performance.

Any suggestions?

link|improve this question

78% accept rate
Why would C library destroy performance? – Dani Oct 7 '11 at 21:08
1  
@Dani: It's not the C library, but p/invoke that is the concern, IIUC. – Ben Voigt Oct 7 '11 at 21:11
1  
You will always have a pointer indirection unless you make Tree a struct. This does not imply that an array of objects is not cache-friendly. The friendly garbage collector ensures it is, it compacts the heap and puts every nicely together. Avoid premature optimization. The nodes member should almost certainly be a List<>. – Hans Passant Oct 7 '11 at 21:18
Thanks for the correction Henk, post updated. Unfortunately there's other data in this tree structure that I excluded for the sake of brevity, but that was good idea. Hans, an array is cache-friendly, but a class pointing to an array is less so. I need the array embedded in the class, or a struct pointing to an array would also work. – naasking Oct 7 '11 at 21:34
@naasking: The 129th "element" Hans was talking about was right. You probably didn't want to reduce the size of the array, unless you want computations modulo 127 instead of bit-shifting. – Ben Voigt Oct 7 '11 at 22:13
feedback

2 Answers

up vote 2 down vote accepted

Use C++/CLI. That gives you total control over layout, just like C, but the cost of managed/unmanaged transitions is much reduced from p/invoke (probably no extra cost at all).

Unfortunately managed code is not very good for "cache-conscious" work: inside the managed heap you are powerless to avoid false-sharing. C++/CLI lets you use the unmanaged allocator, so you can not only keep the data contiguous, but aligned to cache lines.


Also note: Using the class keyword creates a "reference type" which already adds that level of indirection you wanted to avoid. With some reorganization, you might be able to use a struct and an array and not have any more indirection that the code you proposed.

link|improve this answer
I already tried just using structs with a managed array. Unfortunately, because there are more than 1 tree node type, the array must be polymorphic and thus a pointer type of some sort. I don't know much about C++/CLI, so I'll take a look. If it would allow me to specify a reference type with an inline array without marshalling overhead of P/Invoke, then I'm sold. – naasking Oct 7 '11 at 21:29
@naasking: C++/CLI isn't going to change the rules for managed types (well, you can try: see How do I specify a fixed-size buffer in C++/CLI? ) Mainly, it's going to get you to "C library with p/invoke" without needing the p/invoke part. "C++ interop" (codename "It Just Works") is both faster than p/invoke and understands C header files so you don't have to write p/invoke declarations. – Ben Voigt Oct 7 '11 at 21:36
Ultimately, you want to use unmanaged structures with explicit alignment if you care about cache behavior. In this case, that'll be a native C++ struct containing an array of pointers. – Ben Voigt Oct 7 '11 at 21:38
I was hopeful for a minute there, but that inline_array template has roughly the same restrictions as 'fixed', ie. T can only be a value type. Darn. – naasking Oct 7 '11 at 21:43
@naasking: You can make an array of pointers though, and use the gcroot template to store handles back to managed objects. – Ben Voigt Oct 7 '11 at 21:45
show 2 more comments
feedback

I think you are mistaking what the fixed keyword does in C#. it doesn't declare a fixed-size buffer- it pins memory to prevent the GC from moving it around during collections.

link|improve this answer
1  
Did you even click the link to MSDN provided right there in the question?!? – Ben Voigt Oct 7 '11 at 21:10
He's referring to this (fixed Statement): msdn.microsoft.com/en-us/library/f58wzh21%28v=vs.80%29.aspx – meklarian Oct 7 '11 at 21:15
Yes. From said link: "fixed statement: Temporarily fixes a variable so that its address may be found." Also, he is declaring it on a field, which may implicitly violate: "Be aware that passing pointers between methods can cause undefined behavior. Examples are returning a pointer to a local variable through an Out or Ref parameter or as the function result. If the pointer was set in a fixed block, the variable to which it points may no longer be fixed." I was replying to the implication "What I want is simply expressed using C#'s fixed keyword for fixed-sized buffers" (I didnt think it did) – Chris Shain Oct 7 '11 at 21:18
1  
Whats funny is that I didnt even know this existed: msdn.microsoft.com/en-us/library/zycewsya.aspx I was, as mek points out, referring to the fixed keyword he linked, which is also linked to from the bottom of the OP's link. – Chris Shain Oct 7 '11 at 21:21
@ChrisShain: The fixed statement meklarian linked is not the fixed keyword that naasking linked. – Ben Voigt Oct 7 '11 at 21:32
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.