search for: l615

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

Did you mean: 615
2020 Feb 14
3
RFC Storing BB order in llvm::Instruction for faster local dominance
...O(1) when no insertion is occuring. My personal belief is that most transforms are 80% analysis, 20% transformation, so most of the benefits can be delivered with simple heuristics. MLIR already uses this technique: https://github.com/llvm/llvm-project/blob/master/mlir/include/mlir/IR/Operation.h#L615 With the renewed interest in the patch, I believe there is broad consensus that we should do this, but I wanted to re-open this RFC that I started back in 2018 to give anyone a chance to say "no". http://lists.llvm.org/pipermail/llvm-dev/2018-September/126249.html Thanks, Reid ---------...
2015 Jul 21
2
[LLVMdev] Problem with InsertPointGuard ABI?
...s as off but NDEBUG flag is not set. > > Um, okay, but why would you set CMAKE_CXX_FLAGS_RELEASE=""? That doesn't > make any sense... > I agree, it make no sense. But homebrew actually does that: https://github.com/Homebrew/homebrew/blob/master/Library/Homebrew/formula.rb#L615 There are many possible solutions for this case: 1. Force NDEBUG flag 2. Report a cmake error. 3. Get rid of LLVM_ENABLE_ASSERTIONS flag and relay on NDEBUG flag only. > > > > > > Can I do anything more about it? Contributions related to > > > LLVM_ENABLE_ABI_...
2016 Jun 22
2
What is the purpose of the upsmon setting in upsd.users?
Hi list, (I think) I understand that in upsmon.conf, the MONITOR line ends with "master" or "slave". Basically if it's master it will wait for slaves to shut down and if it's slave it will signal the master to switch off the UPS after shutdown. To be able to monitor a network UPS as a slave, there must be a user in upsd.users on the master system. This user needs to
2016 Jun 23
2
What is the purpose of the upsmon setting in upsd.users?
...ve it will signal the master to switch off the UPS >> after shutdown. if it is a slave, it *allows* the master to switch off the UPS. I am not familiar with the exact sequence of events if there is no master upsmon process. https://github.com/networkupstools/nut/blob/master/clients/upsmon.c#L615 >> >> To be able to monitor a network UPS as a slave, there must be a user in >> upsd.users on the master system. This user needs to have a setting named >> "upsmon" set. >> >> And this is where I'm confused - this setting has a parameter that mu...
2015 Jul 21
2
[LLVMdev] Problem with InsertPointGuard ABI?
On Tue, Jul 21, 2015 at 5:55 PM Justin Bogner <mail at justinbogner.com> wrote: > Paweł Bylica <chfast at gmail.com> writes: > > I can confirm that the issue has been caused by NDEBUG flag. > > > > On Mon, Jul 13, 2015 at 6:29 PM Reid Kleckner <rnk at google.com> wrote: > > > > The layout of AssertingVH has depended on NDEBUG since 2009,