Displaying 13 results from an estimated 13 matches for "printfunctionnam".
Did you mean:
printfunctionnames
2012 Jun 04
3
Have you guys met an issue about "typeinfo & vtable"?
Hello Guys,From this morning, I have been always trying PrintFunctionNames - an example of clang, but during compiling I was always meeting "__ZTIN5clang15PluginASTActionE", referenced from: __ZTI24PrintFunctionNamesAction in PrintFunctionNames.cpp.o.In fact, I didn't have "__ZTIN5clang15PluginASTActionE" in the symbol table, only I have was &quo...
2012 Jun 04
3
Have you guys met an issue about "typeinfo & vtable"?
Hello Guys,From this morning, I have been always trying PrintFunctionNames - an example of clang, but during compiling I was always meeting "__ZTIN5clang15PluginASTActionE", referenced from: __ZTI24PrintFunctionNamesAction in PrintFunctionNames.cpp.o.In fact, I didn't have "__ZTIN5clang15PluginASTActionE" in the symbol table, only I have was &quo...
2019 Aug 02
2
building a custom plugin
...e process of building my own plugin for Clang/LLVM in Windows
on Visual Studio. I am having difficulty generating the .dll shared file to use
at compile time. How have the .dlls corresponding to the example plugins
been built?
This works:
clang -fplugin=C:/Users/User/llvm-project/build/Release/bin/PrintFunctionNames.dll -Xclang -plugin -Xclang print-fns test.c
This doesn't
clang -fplugin=C:/Users/User/llvm-project/build/Release/bin/MyPlugin.dll -Xclang -plugin -Xclang my-plugin test.c
cheers,
Osanne
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.o...
2012 Jun 05
1
[LLVMdev] Have you guys met this issue about "typeinfo" & "vtable" of ASTConsumer and PluginASTAction?
Hello Guys,From this morning, I have been always trying PrintFunctionNames - an example of clang, but during compiling I was always meeting "__ZTIN5clang15PluginASTActionE", referenced from: __ZTI24PrintFunctionNamesAction in PrintFunctionNames.cpp.o.In fact, I didn't have "__ZTIN5clang15PluginASTActionE" in the symbol table, only I have...
2012 Jun 04
0
[LLVMdev] [llvm-announce] Have you guys met an issue about "typeinfo & vtable"?
On 06/04/2012 02:00 PM, yangzhi0104 at sohu.com wrote:
> Hello Guys,
>
> From this morning, I have been always trying PrintFunctionNames - an example of clang, but during compiling I was always meeting "__ZTIN5clang15PluginASTActionE", referenced from:
> __ZTI24PrintFunctionNamesAction in PrintFunctionNames.cpp.o.
>
> In fact, I didn't have "__ZTIN5clang15PluginASTActionE" in the symbol table, onl...
2012 Jun 05
0
[LLVMdev] Have you guys met this issue about "typeinfo" & "vtable" of, ASTConsumer and PluginASTAction?
Hello Guys,
From this morning, I have been always trying PrintFunctionNames - an example of clang, but during compiling I was always meeting "__ZTIN5clang15PluginASTActionE", referenced from:
__ZTI24PrintFunctionNamesAction in PrintFunctionNames.cpp.o.
In fact, I didn't have "__ZTIN5clang15PluginASTActionE" in the symbol table, only I have was &q...
2013 Jan 12
0
[LLVMdev] Error for 'make'
...> wrote:
> Off the top of my head it looks like you're trying to build the plugin 'in
> tree'? (That is, within the source tree rather than in a build directory.)
> You should build LLVM and Clang to, say, ~/llvm-build, and then go to
> ~/llvm-build/tools/clang/examples/PrintFunctionNames and run make there.
>
> Stephen
>
> On 12 January 2013 16:41, Akash Gulhane <gulhane.akash at gmail.com> wrote:
>
>> Hello,
>> I want to write my own plug-in. So when i tried to execute the
>> PrintFumctionNames plug-in in llvm/tools/clang/examples/Print...
2013 Feb 05
1
[LLVMdev] How to write plugin in CLANG.
Hi,
I am new to LLVM and CLANG, I want to write plugin for printing detailed
information about source code such as member function, function calls etc.
I have referred PrintFunctionNames.cpp, and on line documentation for it,
still i am confused about implementation of functions
ex:- from CallGraph.cpp i want to use VisitCallExpr(CallExpr *E) and void
CallGraph::print(raw_ostream &OS), also I am getting different useful
functions regarding my purpose but not getting how t...
2011 Apr 25
0
[LLVMdev] Big Windows Clang DLL
...the big DLL
for the component libraries.)
7. Modify "add_clang_executable" to pass an "LLVM_USE_DLL" define to the
compiler if the big-DLL version is enabled. This define enables the symbol
imports/exports to be described later.
8. Update the clang executable, interpreter, and PrintFunctionNames projects
to use the new and revised cmake macros.
The source changes mainly consist of adding "(moduleNameUppercase)_LINKAGE"
macro instances to the declarations of the classes, functions, and other
symbols to be exported/imported, and new header files that define these
macros. These c...
2013 Jan 12
0
[LLVMdev] Error for 'make'
Hello,
I want to write my own plug-in. So when i tried to execute the
PrintFumctionNames plug-in in llvm/tools/clang/examples/PrintFumctionNames
i'm getting an error at first step of 'make' only. The error is :
akash at ubuntu:~/llvm/tools/clang/examples/PrintFunctionNames$ make
../../../../Makefile.common:60: ../../../../Makefile.config: No such file
or directory
../../../../Makefile.common:68: /Makefile.rules: No such file or directory
make: *** No rule to make target `/Makefile.rules'. Stop.
So how to get out with it please help me.
Tnks..!!!
-----------...
2012 Jun 20
0
[LLVMdev] Build llvm/clang with cmake vs configure produces different set of artifacts
...libclangSerialization.a libLLVMAnalysis.a libLLVMInstCombine.a libLLVMMCParser.a libLLVMX86AsmParser.a LLVMHello.so
libclangCodeGen.a libclangStaticAnalyzerCheckers.a libLLVMArchive.a libLLVMInstrumentation.a libLLVMObject.a libLLVMX86AsmPrinter.a PrintFunctionNames.so
libclangDriver.a libclangStaticAnalyzerCore.a libLLVMAsmParser.a libLLVMInterpreter.a libLLVMRuntimeDyld.a libLLVMX86CodeGen.a profile_rt.so
libclangEdit.a libclangStaticAnalyzerFrontend.a libLLVMAsmPrinter.a libLLVMipa.a libLLVMScalarOpts.a...
2017 Mar 05
3
Error in Windows build from release_40 branch
Hi,
I'm trying to do a build and install on Windows 10 with Visual Studio
2015 Community Edition for the X86 and ARM targets, from the current
release_40 branch. While compilation completes without error, the
INSTALL target fails with the following error:
54> CMake Error at
projects/compiler-rt/lib/builtins/cmake_install.cmake:34 (file):
54> file INSTALL cannot find
54>
2019 Apr 30
6
Disk space and RAM requirements in docs
...ng/test/ARCMT/designated-init-in-header/Output
16K build/tools/clang/test/Analysis/unified-sources/Output
16K build/tools/clang/test/Analysis/html_diagnostics/relevant_lines/Output/notexecutedlines.c.tmp.output
16K build/tools/clang/test/Analysis/exploration_order
16K build/tools/clang/examples/PrintFunctionNames
16K build/tools/clang/examples/clang-interpreter
16K build/tools/clang/examples/AnnotateFunctions
16K build/tools/clang/examples/analyzer-plugin
16K build/tools/clang/bindings/python
16K build/man/man1
16K build/include/llvm/Support
16K build/examples/ParallelJIT
16K build/examples/Module...