search for: markupand

Displaying 8 results from an estimated 8 matches for "markupand".

Did you mean: markand
2011 Sep 28
2
[LLVMdev] Instrumenting C/C++ programs
...LLVM pass and how to make one on my own, I >> looked at an example of a pass that adds run-time checks to LLVM IR loads >> and stores, the SAFECode's load/store instrumentation pass ( >> http://llvm.org/viewvc/llvm-project/safecode/trunk/include/safecode/LoadStoreChecks.h?view=markupand >> http://llvm.org/viewvc/llvm-project/safecode/trunk/lib/InsertPoolChecks/LoadStoreChecks.cpp?view=markup). >> But I couldn't figure out how to run this pass. Please give me steps how to >> run this pass on some program say the above Account.cpp. >> >> Thanks, &gt...
2011 Sep 27
1
[LLVMdev] Instrumenting C/C++ programs
...order to get started with LLVM pass and how to make one on my own, I looked at an example of a pass that adds run-time checks to LLVM IR loads and stores, the SAFECode's load/store instrumentation pass ( http://llvm.org/viewvc/llvm-project/safecode/trunk/include/safecode/LoadStoreChecks.h?view=markupand http://llvm.org/viewvc/llvm-project/safecode/trunk/lib/InsertPoolChecks/LoadStoreChecks.cpp?view=markup). But I couldn't figure out how to run this pass. Please give me steps how to run this pass on some program say the above Account.cpp. Thanks, Himanshu On Fri, Sep 23, 2011 at 11:13 PM,...
2011 Sep 29
0
[LLVMdev] Instrumenting C/C++ programs
...d how to make one on my own, I >>> looked at an example of a pass that adds run-time checks to LLVM IR loads >>> and stores, the SAFECode's load/store instrumentation pass ( >>> http://llvm.org/viewvc/llvm-project/safecode/trunk/include/safecode/LoadStoreChecks.h?view=markupand >>> http://llvm.org/viewvc/llvm-project/safecode/trunk/lib/InsertPoolChecks/LoadStoreChecks.cpp?view=markup). >>> But I couldn't figure out how to run this pass. Please give me steps how to >>> run this pass on some program say the above Account.cpp. >>> >...
2011 Sep 28
0
[LLVMdev] Instrumenting C/C++ programs
...tarted with LLVM pass and how to make one on my own, I > looked at an example of a pass that adds run-time checks to LLVM IR loads > and stores, the SAFECode's load/store instrumentation pass ( > http://llvm.org/viewvc/llvm-project/safecode/trunk/include/safecode/LoadStoreChecks.h?view=markupand > http://llvm.org/viewvc/llvm-project/safecode/trunk/lib/InsertPoolChecks/LoadStoreChecks.cpp?view=markup). > But I couldn't figure out how to run this pass. Please give me steps how to > run this pass on some program say the above Account.cpp. > > Thanks, > Himanshu > >...
2011 Sep 23
3
[LLVMdev] Instrumenting C/C++ programs
I just read that LLVM project could be used to do static analysis on C/C++ codes using the analyzer Clang which the front end of LLVM. I wanted to know if it is possible to extract all the accesses to memory(variables, local as well as global) in the source code using LLVM. Is there any inbuilt library present in LLVM which I could use to extract this information. If not please suggest me how to
2011 Sep 29
2
[LLVMdev] Instrumenting C/C++ programs
...e one on my own, I >>>> looked at an example of a pass that adds run-time checks to LLVM IR loads >>>> and stores, the SAFECode's load/store instrumentation pass ( >>>> http://llvm.org/viewvc/llvm-project/safecode/trunk/include/safecode/LoadStoreChecks.h?view=markupand >>>> http://llvm.org/viewvc/llvm-project/safecode/trunk/lib/InsertPoolChecks/LoadStoreChecks.cpp?view=markup). >>>> But I couldn't figure out how to run this pass. Please give me steps how to >>>> run this pass on some program say the above Account.cpp. >&...
2011 Nov 17
1
[LLVMdev] Instrumenting C/C++ programs
...;>>>> and stores, the SAFECode's load/store instrumentation pass (<http://llvm.org/viewvc/llvm-project/safecode/trunk/include/safecode/LoadStoreChecks.h?view=markup> >>>>> http://llvm.org/viewvc/llvm-project/safecode/trunk/include/safecode/LoadStoreChecks.h?view=markupand >>>>> <http://llvm.org/viewvc/llvm-project/safecode/trunk/lib/InsertPoolChecks/LoadStoreChecks.cpp?view=markup> >>>>> http://llvm.org/viewvc/llvm-project/safecode/trunk/lib/InsertPoolChecks/LoadStoreChecks.cpp?view=markup). >>>>> But I couldn't...
2011 Sep 29
0
[LLVMdev] Instrumenting C/C++ programs
Hello, What you're describing is basically the parsing and codegen portions of clang. I'd suggest reading through the code there and posting to clang-dev if you have any specific questions. The clang devs are more likely to see your questions there as not all of them also hang out here. Regards, Jim On Sep 28, 2011, at 8:28 PM, eyasu getahun <eya.get at gmail.com> wrote: >