Displaying 1 result from an estimated 1 matches for "glvector".
Did you mean:
llvector
2013 Jun 13
0
[LLVMdev] LLVM instrumentation
Hello everyone,
I want to use LLVM to perform instrumentation on existing bitcode file. I
want to declare a global variable using cpp standard library, say
vector<int> glVector(3);
So I need to get the LLVM Type* of the global variable and then the initial
value Constant* of the global variable. However, the type of vector is not
the primitive type but defined in the vector.h of C++ standard library. Is
there a easy way to perform the instrumentation as if the original...