Re: [PATCH v2] sparse: add LLVM code generation backend

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Christopher Li wrote:
On Mon, Apr 27, 2009 at 6:21 PM, Jeff Garzik <jeff@xxxxxxxxxx> wrote:
You mean, besides the reasons already listed?  Namely, no upstream changes
are required, and I already have something that works.

Sure, the same trick can be applied.  But that requires a total backend
rewrite plus dealing with linearize obstacles already described (ref
linearize_load_gen, linearize_store_gen).  Thus it is obviously a lot more
work, with additional obstacles (patching upstream, which affects existing
users), just get back to achieving the same result :)

I take a look at the how LLVM handle bit fields. Please correct me if
I am wrong.
LLVM does not take bit field member as a type. Given the example:

struct s {
   int a:3;
   int b:3;
} foo;

void func (struct s *a)
{
   a->a = 6;
}

The LLVM outputs:

target datalayout =
"e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32"
target triple = "i386-pc-linux-gnu"
	%struct.s = type <{ i8, [3 x i8] }>
@foo = common global %struct.s zeroinitializer, align 4		;
<%struct.s*> [#uses=0]

define void @func(%struct.s* nocapture %a) nounwind {
entry:
	%0 = getelementptr %struct.s* %a, i32 0, i32 0		; <i8*> [#uses=2]
	%1 = load i8* %0, align 1		; <i8> [#uses=1]
	%2 = or i8 %1, 6		; <i8> [#uses=1]
	%3 = and i8 %2, -2		; <i8> [#uses=1]
	store i8 %3, i8* %0, align 1
	ret void
}

LLVM does not treat bit field as first class types. It apply bit mask
before/after
the load/store to fix things up. It actually is the same reason
linearize_load_gen
and linearize_store_gen exists in the first place. It does the same thing.

LLVM treats all "i%u" types: i1, i11, i16, i32, i64, etc. as first class types. See http://www.llvm.org/docs/LangRef.html

Therefore, the above is not a fundamental instrinsic of LLVM, but rather how one LLVM _emitter_ -- either llvm-gcc or clang, I assume -- chose to handle bitfields.

Big, big difference!

Next, you can see from C99 6.7.2.1 P9, the layout of bit-fields may not necessary correspond to ad->bit_offset as linearize_{load,store}_gen assume.

Run "info gcc" and do a search on "bitfield", after reviewing C99 again. linearize hardcodes behavior it should not.



Let's review why you insist on duplicating the lineariztion effort.

1) You have the code already working.
    True. But a back end base on linearize instruction will be much
    simpler to your existing code.

This is what we call in the engineering business a "wild-assed guess."

You have obviously not reviewed C99 on bitfields nor looked closely at LLVM, so judgement of "will be much simpler" is easily questioned.


2) Require up stream changes.
    Let's compare apple to apple. Using linearize instruction to generate
    a output exactly as your V2 does not require up stream changes.
    It is not a reason to pick one over another.

That is a silly comparison, because my LLVM backend is not static at V2. It should be self-evident that one looks at future changes needed to complete an LLVM backend.


3) Obstacles in linearize_load_gen and linearize_store_gen.
   It turns out those "obstacles" are exactly what you need to handle
   bit fields. One more reason to use linearize instructions.

False, as shown above.


4) More work to get the same results.
   It will be more work for *you* to write yet another back end.

Yes, and I am doing the work.  For fun.  So this is supremely relevant.

It's amusing how easily you hand-wave away my engineering time :) Shades of the kernel...


   But if you compare the end result. The one base on linearize instruction
   will be much simpler.

We have no end result to compare.


   It will be less new code get check in to the sparse
   tree, less code for people other than you to review. Less work to maintain
   one implementation of linearization instead of two.

Do you not see the difference between simple tree walking, and forced generation of basic blocks and instructions chosen by sparse? There are multiple tree walkers in sparse -- not just linearize.c.


Overall, I think linearized format is too limiting and low level for LLVM, and thus chose a different starting point.


I wouldn't mind seeing a single tree walker implementation in sparse, but it would be incorrect to assume that linearize.c is a generic tree walker.

	Jeff


--
To unsubscribe from this list: send the line "unsubscribe linux-sparse" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Newbies FAQ]     [LKML]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Trinity Fuzzer Tool]

  Powered by Linux