Displaying 4 results from an estimated 4 matches for "searial".
Did you mean:
arial
2010 Mar 01
2
pxelinux multiple serial port setting
Hello
We have computers which redirect COM2(ttyS1) to SOL(Searial console Over Lan).
We have been using pxelinux to boot them with the following pxelinux.cfg/default setting.
pxelinux.cfg/default
serial 1 19200
console 1
prompt 0
timeout 100
default menu.c32
label Linux Diskless
menu label ^Linux Diskless
kernel menu.c32
append pxelinux.cfg/...
2020 Jul 20
2
Getting LLVM Instructions
...the right question to ask is, since this is the first time I'm working
with llvm.
Thanks!
On Mon, 20 Jul, 2020, 10:37 pm David Blaikie, <dblaikie at gmail.com> wrote:
> if you're trying to serialize LLVM IR and read it back again later -
> yeah, probably best to use th binary searialization rather than the
> textual. If I were doing this I'd try building something using clang
> with -emit-llvm (that'll produce LLVM IR bitcode in the .o file) and
> debug that to see which APIs are used to do that.
>
> On Mon, Jul 20, 2020 at 3:19 AM Yugesh Kothari via llvm...
2020 Jul 20
2
Getting LLVM Instructions
Hi,
I am working on a project where I need to get a list of llvm Functions that
were called during an execution (for futher analysis).
To do this I have maintained a vector<llvm:: Function*> which I print out
to a .ll file at the end. However this takes a lot of time since the number
of call Instructions is HUGE.
I feel that the bottleneck is the conversion from llvm:: Function to
2020 Jul 20
2
Getting LLVM Instructions
...with llvm.
> >
> > Thanks!
> >
> > On Mon, 20 Jul, 2020, 10:37 pm David Blaikie, <dblaikie at gmail.com>
> wrote:
> >>
> >> if you're trying to serialize LLVM IR and read it back again later -
> >> yeah, probably best to use th binary searialization rather than the
> >> textual. If I were doing this I'd try building something using clang
> >> with -emit-llvm (that'll produce LLVM IR bitcode in the .o file) and
> >> debug that to see which APIs are used to do that.
> >>
> >> On Mon, Ju...