search for: new_op

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

Did you mean: new_dp
2019 Jan 06
2
LLVM IR linking separate function definitions in header files in single IR
...alloc in the source code? > > >> how can i identify such instructions in IR...by call void @_ZN?? >> My IR is attached here.. >> > > Calls to @_Znwm are allocating memory. They are not implemented in a > header: > https://code.woboq.org/gcc/libstdc++-v3/libsupc++/new_op.cc.html#50 (see > the call to malloc there). > > In general, calls to malloc can likely be caught at runtime: run in a > debugger and break into malloc. > > best, > > -- > Mehdi > > > > >> >> Please help. >> >> On Fri, Jan 4, 2019 at 4:...
2019 Jan 01
4
LLVM IR linking separate function definitions in header files in single IR
Hello, I have different codes with separate files with functions implemented. I want to view all function definitions/ instructions in single IR. I am able to do this by llvm-link for codes which have definition implemented in .c files... But there are some codes which have definitions instructions in header files. These functions are called from .c file. I want to have a single IR with all the
2016 May 23
0
A "Cross-Platform Runtime Library API" in LLVM IR
This is the point, High-level OO languages don't use malloc(), they use something else. My idea was a C API with implementations of functions: For example Assuming I need to implement a function which allocates a new object. The API provides a really basic allocator function I can use to implement the complete function the high-level language needs. void *__newobject(int class_size) { void
2016 May 23
3
A "Cross-Platform Runtime Library API" in LLVM IR
On 23 May 2016, at 10:13, Lorenzo Laneve <lore97drk at icloud.com> wrote: > > I know but maybe malloc() is a bit higher level than a hypothetical __alloc(), which may be lower-level and then faster. How? > And malloc() is contained in the libc as Matthias said and so maybe a program using malloc() even for a non-C language linking against the crt is needed. On many *NIX
2019 Apr 04
1
Proof of concept for GPU forwarding for Linux guest on Linux host.
Hi, This is a proof of concept of GPU forwarding for Linux guest on Linux host. I'd like to get comments and suggestions from community before I put more time on it. To summarize what it is: 1. It's a solution to bring GPU acceleration for Linux vm guest on Linux host. It could works with different GPU although the current proof of concept only works with Intel GPU. 2. The basic idea