search for: releaselock

Displaying 5 results from an estimated 5 matches for "releaselock".

Did you mean: release_lock
2005 Aug 29
1
[LLVMdev] getCalledFunction
...----------- if (CallInst* callInst = dyn_cast<CallInst>(&inst)) { std::cerr<<callInst->getCalledFunction(); } ----------------------- When ------------------ std::cerr<<*callInst ---------------- the output is. %tmp.10 = call int (...)* cast (int ()* %releaseLock to int (...)*)( ) ; <int> [#uses=0] Note: releaseLock is defined in the same file and is not called as function pointer. Do I require some other pass information beforehand.
2005 Dec 03
2
[LLVMdev] garbage collection
Hi, We are working on a project to improve garbage collection using pool allocation in llvm. Has anybody implemented any garbage collection algorithm in llvm? There is an incomplete semispace GC implementation in llvm. It will be of great help, if somebody has a complete GC implementation. Regards, Swarup. ************************************* Swarup Kumar Sahoo Thomas M. Siebel Center for
2005 Dec 05
0
[LLVMdev] optimization question
...The code: %tmp.0 = call int %acquireLock( ) ; <int> [#uses=0] store int 1, int* %unique %load = load int* %unique ; <int> [#uses=1] %Set = seteq int 1, %load ; <bool> [#uses=1] br bool %Set, label %Insertion, label %remaining Insertion: ; preds = %entry call int %releaseLock( ) ; <int>:0 [#uses=0] br label %remaining remaining: ; preds = %Insertion, %entry %tmp.1 = call int %acquireLock( ) ; <int> [#uses=0] %tmp.2 = call int %releaseLock( ) Note: %unique = internal global int 0 ; <int*> [#uses=2]
2005 Aug 28
0
[LLVMdev] unoptimised LLVM, not in SSA form
On Sat, Aug 27, 2005 at 01:18:56PM +0100, Umar Janjua wrote: > I am interested in obtaining LLVM IR without any optimization > performed on it.( IR obtained from cfrontend's AST). Is this LLVM IR > in SSA form? This question has become a FAQ: http://llvm.cs.uiuc.edu/docs/FAQ.html#cfe -- Misha Brukman :: http://misha.brukman.net :: http://llvm.cs.uiuc.edu
2005 Aug 27
4
[LLVMdev] unoptimised LLVM, not in SSA form
Hi, I am interested in obtaining LLVM IR without any optimization performed on it.( IR obtained from cfrontend's AST). Is this LLVM IR in SSA form? Secondly, I want to make a transformation on this unoptimized IR, and convert it back to C. I believe llc -c does that. Thirdly, is it possible to use LLVM tool suite on LLVM IR that's not in SSA form, if we have such LLVM so.