search for: cseweb

Displaying 9 results from an estimated 9 matches for "cseweb".

2014 Aug 12
2
[LLVMdev] All the passes (even the LLVMHello.so) fail at doFinalization()
.../LLVMHello.so > >> >> >> > -hello -time-passes > >> >> >> > Aborted (core dumped) > >> >> >> > > >> >> >> > -- > >> >> >> > Tianyin XU, > >> >> >> > http://cseweb.ucsd.edu/~tixu/ > >> >> >> > > >> >> >> > _______________________________________________ > >> >> >> > LLVM Developers mailing list > >> >> >> > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu &gt...
2014 Aug 12
2
[LLVMdev] All the passes (even the LLVMHello.so) fail at doFinalization()
...> >> >> > ../../../Debug+Asserts/lib/LLVMHello.so > >> >> > -hello -time-passes > >> >> > Aborted (core dumped) > >> >> > > >> >> > -- > >> >> > Tianyin XU, > >> >> > http://cseweb.ucsd.edu/~tixu/ > >> >> > > >> >> > _______________________________________________ > >> >> > LLVM Developers mailing list > >> >> > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > >> >> > http://list...
2014 Aug 12
2
[LLVMdev] All the passes (even the LLVMHello.so) fail at doFinalization()
...>> > Stack dump: > >> > 0. Program arguments: opt -load > ../../../Debug+Asserts/lib/LLVMHello.so > >> > -hello -time-passes > >> > Aborted (core dumped) > >> > > >> > -- > >> > Tianyin XU, > >> > http://cseweb.ucsd.edu/~tixu/ > >> > > >> > _______________________________________________ > >> > LLVM Developers mailing list > >> > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > >> > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > &...
2014 Aug 12
2
[LLVMdev] All the passes (even the LLVMHello.so) fail at doFinalization()
...__libc_start_main + 237 > > 14 opt 0x00000000008ea589 > > Stack dump: > > 0. Program arguments: opt -load ../../../Debug+Asserts/lib/LLVMHello.so > > -hello -time-passes > > Aborted (core dumped) > > > > -- > > Tianyin XU, > > http://cseweb.ucsd.edu/~tixu/ > > > > _______________________________________________ > > LLVM Developers mailing list > > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > > > -- Tianyin XU, http://cseweb.ucs...
2014 Aug 12
2
[LLVMdev] All the passes (even the LLVMHello.so) fail at doFinalization()
...12 opt 0x00000000008f88cd main + 5778 13 libc.so.6 0x00007feedfc8d76d __libc_start_main + 237 14 opt 0x00000000008ea589 Stack dump: 0. Program arguments: opt -load ../../../Debug+Asserts/lib/LLVMHello.so -hello -time-passes Aborted (core dumped) -- Tianyin XU, http://cseweb.ucsd.edu/~tixu/ -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140812/5dd04b58/attachment.html>
2016 May 25
1
Live interval analysis on LLVM IR (not on Machine instructions)
Hello. Thank you very much for the research paper. I will try to make use of the algorithms it presents. I just want to add that I found a 3rd party project doing dataflow analysis for LLVM IR at https://github.com/rohitjha/cse231-proj2. As written at http://cseweb.ucsd.edu/~r1jha/#five , the project's description is: "Dataflow Analysis Framework for LLVM This is an extensible dataflow analysis framework for analyzing and optimizing LLVM IR code. The framework runs forward optimistic iterative dataflow analyses such as Constant Propagation, Av...
2015 Jun 16
2
OpenSSH and CBC
Hi Gerhard, This is not exactly true. CTR modes have the length field encrypted. etm MAC modes and AES-GCM have the length field in cleartext. CBC is dangerous because the length field is encrypted with CBC. aes128-ctr + hmac-sha256 doesn't have any known vulnerability and encrypts the packet length, but uses the bad practice of e&m. chacha20-poly1305 encrypts both payload and packet
2016 May 21
0
Live interval analysis on LLVM IR (not on Machine instructions)
You can use: http://www.rw.cdl.uni-saarland.de/~grund/papers/cgo08-liveness.pdf -----Original Message----- From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of Alex Susu via llvm-dev Sent: Saturday, May 21, 2016 9:39 PM To: llvm-dev <llvm-dev at lists.llvm.org> Subject: [llvm-dev] Live interval analysis on LLVM IR (not on Machine instructions) Hello. Could you
2016 May 21
2
Live interval analysis on LLVM IR (not on Machine instructions)
Hello. Could you please tell me how can I implement best a live interval analysis on LLVM IR (not on Machine instructions, which is already available in http://llvm.org/docs/doxygen/html/LiveIntervalAnalysis_8cpp_source.html)? I need to analyze the standard LLVM IR (list of Instruction *) and decide for each SSA variable what is it's live(ness) interval. My problem is that I