search for: negi

Displaying 11 results from an estimated 11 matches for "negi".

Did you mean: neg
2009 Jun 08
3
[LLVMdev] debug information for functions
Suppose I have fun.h as: static void fun() { int a =10; } Now I have two files foo.c and goo.c as foo.c : #include "fun.h" void foo() { fun(); } goo.c: #include "fun.h" void goo() { fun(); } I get .bc files for foo.c and foo.bc through clang. Now I run llvm-ld with -disable-opt for foo.bc and goo.bc. In the resulting .bc files, one of the
2009 Jun 08
0
[LLVMdev] debug information for functions
On Mon, Jun 8, 2009 at 3:25 AM, <Vasudev.Negi at microchip.com> wrote: > > I get .bc files for foo.c and foo.bc through clang. Now I run llvm-ld > with -disable-opt for foo.bc and goo.bc. In the resulting .bc files, one > of the two functions fun, is renamed to fun<number>. There are two > llvm.dbg.subprogram descriptor...
2009 Jul 11
3
Migration in Multiple Database
hello to all I been working on this from past few days. .I am talking about separate migration for each one of the multiple database that a single rails application has connection with.I know that rails can work with multiple databases but what with migrations for e.g my main rails application has a connection to two databases 1> main_development 2> secondary_development Know suppose i
2009 Aug 10
1
[LLVMdev] wrong debug information for library functions
I am using llvm-ld to make a library using -link-as-library -disable-opt options. Now I create a test case which invokes a function from this library and link the library in llvm-ld. The compilation unit that library function gets is the one in which the test case is defined and not the one where library function is defined. -------------- next part -------------- An HTML attachment was
2009 Jul 21
1
synatx error while running migration
hello to all, i am getting weird syntax error while running the rake db:migrate syntax error, unexpected tSYMBEG, expecting kDO or ''{'' or ''('' Apparently i am creating an engine in my main application using ''ruby script/generate plugin'' command in rails 2.3.0 with engine having its own separate database define in database.yml of main
2012 Sep 02
3
Loading Chess Data
All, What would be the most efficient way to load the data at the following address into a dataframe? http://ratings.fide.com/top.phtml?list=men Thanks, David -- View this message in context: http://r.789695.n4.nabble.com/Loading-Chess-Data-tp4642006.html Sent from the R help mailing list archive at Nabble.com.
2009 Sep 02
0
[LLVMdev] writing an llvm pass
I need to write a pass where I need to find all the predecessors of each leaf node. I think the options that I have is create a sub class of ModulePass or CallGraphSCCPass. I will need to traverse the call graph bottom up and by the description of CallGraphSCCPass, it seems the Pass to use. The problem that I am facing is from a CallGraphNode, I don't see any way to get it's callers.
2010 Jan 21
4
[LLVMdev] call graph not complete
Consider C code void foo(); int main(void) { foo(); return 0; } void foo(void) { int a =10; } Bitcode generated by clang with -O0 is : define i32 @main() nounwind { entry: %retval = alloca i32 ; <i32*> [#uses=3] store i32 0, i32* %retval call void (...)* bitcast (void ()* @foo to void (...)*)() store i32 0, i32* %retval %0 =
2009 Apr 06
2
[LLVMdev] debug stoppoint nodes with -fast option
I need to generate line number debug information for PIC16 target. PIC16 does not support dwarf format. It supports coff format. So I need to custom handle the STOPPOINT nodes. Without -fast option the STOPPOINT nodes are not created in dag because of the below check in SelectionDAGBuild.cpp if (Fast) DAG.setRoot(DAG.getDbgStopPoint(getRoot(), If I give -fast option then the Fast
2009 Apr 18
1
[LLVMdev] debug stoppoint nodes with -fast option
Can we help in local variable debug info work. Dale Johannesen wrote: > On Apr 7, 2009, at 9:52 PMPDT, vasudev wrote: > > >> Thanks for the info regarding DebugLoc field. Another related >> question >> that I have is regarding debug info for local variables. With -fast >> option, ISD::DECLARE nodes are created in DAG for debug info of local >>
2009 Apr 08
2
[LLVMdev] debug stoppoint nodes with -fast option
Thanks for the info regarding DebugLoc field. Another related question that I have is regarding debug info for local variables. With -fast option, ISD::DECLARE nodes are created in DAG for debug info of local variables. I am planning to custom handle these nodes, get the required info from llvm.dbg.variable global address and emit it in ISel. But without -fast option ISD::DECLARE nodes