search for: tracelib

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

Did you mean: cracklib
2005 Jan 28
2
[LLVMdev] Compiling errors for tracelib.c
...there something wrong with my llvm-gcc compiler?: ------------------------ GNU C version 3.4-llvm 20030924 (experimental) (mingw32) compiled by GNU C version 3.4.1 (mingw special). GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096 c:/projects/src/llvm-4/llvm/runtime/libtrace/tracelib.c:54: error: syntax error before "PRIMES" c:/projects/src/llvm-4/llvm/runtime/libtrace/tracelib.c:54: warning: type defaults to `int' in declaration of `PRIMES' c:/projects/src/llvm-4/llvm/runtime/libtrace/tracelib.c:56: warning: data definition has no type or storage class c:/...
2005 Jan 28
0
[LLVMdev] Compiling errors for tracelib.c
On Fri, 28 Jan 2005, Henrik Bach wrote: > Is there something wrong with my llvm-gcc compiler?: > c:/projects/src/llvm-4/llvm/runtime/libtrace/tracelib.c:54: warning: type > defaults to `int' in declaration of `PRIMES' > c:/projects/src/llvm-4/llvm/runtime/libtrace/tracelib.c:56: warning: data > definition has no type or storage class It looks like that file had non-portable code in it. Can you try updating and see if it work...
2003 Sep 25
0
FW: [LLVMdev] basic block tracing
...the values computed in that BB that are live at the end of the BB (so we don't print out temporaries computed and used within the BB), and we also print out values that are loaded or stored from/to memory. You need to link the generated code with /localhome/vadve/llvm/runtime/libtrace/Bytecode/tracelib.bc or /localhome/vadve/llvm/runtime/libtrace/Debug/libtrace.o. Try: % cd test/Programs/SingleSource/Shootout/ % gmake -n TRACE=yes Output/sieve.diff-llc as an example to see how to run the tracing pass and link the generated code. --Vikram http://www.cs.uiuc.edu/~vadve -----Original Message--...
2005 Apr 07
0
[LLVMdev] arguments to standard library functions
...amList, "", bi ); } } } } } return true; } ------------------------------------------------------------------------------------------------------------------------------------------- and I have added the following function to tracelib.c int logExternalCalls(char *fname, unsigned i){ printf("function: %s \t No of args: %d\n", fname, i); return 0; } --------------------------------------------------------------------------------- The pass compiles fine but when i try to run it on a simple hello.c program i get t...
2005 Mar 21
3
[LLVMdev] arguments to standard library functions
HI , I understand that the standard C library functions are executed using the native library of the host machine. ( for example when we execute a bytecode to extract the profile info ) Is it possible to extract for each standard library function that is executed , the arguments that the function is called with. For example if printf ("%d", some_int ) when called during runtime