search for: l268

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

Did you mean: 268
2020 Jun 30
2
How to prevent llvm's default optimization
Yes - this has been in InstCombine for a long time: https://github.com/llvm/llvm-project/blob/master/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp#L268 We could say that the canonicalization should be reversed, but that probably uncovers more missing optimizations. The code size concern is legitimate. For example on x86, gcc asm is 2 bytes smaller on this example: https://godbolt.org/z/GK9FEL To improve this, we could add a generic transform to...
2020 Jul 01
2
How to prevent llvm's default optimization
...Sam > >> On 30 Jun 2020, at 2:08 pm, Sanjay Patel via llvm-dev <llvm-dev at lists.llvm.org> wrote: >> >> Yes - this has been in InstCombine for a long time: >> https://github.com/llvm/llvm-project/blob/master/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp#L268 >> >> We could say that the canonicalization should be reversed, but that probably uncovers more missing optimizations. >> >> The code size concern is legitimate. For example on x86, gcc asm is 2 bytes smaller on this example: >> https://godbolt.org/z/GK9FEL >>...
2015 Oct 15
3
what can cause a "CPU table is not sorted" assertion
...Div, FeatureMul]>; No issues compiling the code. But when I run the following command I get and assertion: llc -mcpu=mytarget hello_world.compiled.ll -debug-only=misched -mtriple=mytarget-unknown-linux-gnu This <https://github.com/openrisc/llvm-or1k/blob/master/lib/MC/SubtargetFeature.cpp#L268>is the offending line. I'd really appreciate if someone could point out the problem. Thanks, -- Rail Shafigulin -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20151015/841b9589/attachment.html>
2019 Sep 16
0
Migrating Samba NT4 Domain to Samba AD
...09/2019 15:04, L.P.H. van Belle via samba wrote: >> Well it was worth checking.. We just dont know what you already >> checked.. now I setup the Ubuntu Server 18.04.3 LTS + http://apt.van-belle.nl/ + https://github.com/thctlo/samba4/blob/master/full-howto-Ubuntu18.04-samba-AD_DC.txt#L268 + i changed krb (default is ... MIT!) to heimdal apt install heimdal-clients So now I have some success.... 1. I add the second AD controler "themes" as stated in https://wiki.samba.org/index.php/Joining_a_Samba_DC_to_an_Existing_Active_Directory#Joining_the_Active_Directory_as_a_D...
2016 Aug 02
0
Creating shared object with BASE in EXPORTS on Windows
It looks like `BASE` is a keyword in the .def file specification. https://github.com/bminor/binutils-gdb/blob/master/ld/deffilep.y#L241-L268 For several keywords, I could replicate the syntax error from ld.exe when the keyword was listed in EXPORTS in the .def file. As far as I can tell, the dllname-win.def file is a must in this case making sure none of the keywords get exported there. Also: https://access.redhat.com/documentation...
2019 Sep 16
5
Migrating Samba NT4 Domain to Samba AD
On 16/09/2019 15:04, L.P.H. van Belle via samba wrote: > Well it was worth checking.. We just dont know what you already checked.. > > Then all i can say now is, or a different OS, or try Vincent's his packages. > I see that is should support AD-DC, but I really dont know. I only do debian/ubuntu. > At least it looks like it. > > (from :
2020 Jun 30
2
How to prevent llvm's default optimization
Hi, James, Thanks for your reply. I do not think it is always true, that "mul then add" is faster than "add then mul". For example, A small immediate can be directly encoded in the instruction, but it becomes a larger one after a multiplication, which has to be loaded from the constant pool (extra memory access). So I wonder, is it possile to prevent it, via changes
2017 Feb 17
3
Linking Linux kernel with LLD
>>That boot_params.hdr.code32_start field is probably either invalid (bad reloc or something else causing the bootloader to >>calculate the wrong address) or valid but the thing it thinks it is pointing to wasn't loaded (missing PT_LOAD etc.). >boot_params.hdr.code32_start field is valid :) It is 0x100000, like expected > >Then I suspect that that segment isn't being
2019 Sep 16
3
Migrating Samba NT4 Domain to Samba AD
...via samba wrote: >>> Well it was worth checking.. We just dont know what you already >>> checked.. > > now I setup the Ubuntu Server 18.04.3 LTS + > > http://apt.van-belle.nl/ + > https://github.com/thctlo/samba4/blob/master/full-howto-Ubuntu18.04-samba-AD_DC.txt#L268 > > + i changed krb (default is ... MIT!) to heimdal > > apt install heimdal-clients > > > > So now I have some success.... > > 1. I add the second AD controler "themes" as stated in > > https://wiki.samba.org/index.php/Joining_a_Samba_DC_to_an_Existing...