search for: d0a0

Displaying 8 results from an estimated 8 matches for "d0a0".

Did you mean: d00
2020 Mar 09
2
llvm-link has no --allow-multiple-definition
...nor can I find an equivalent from the --help output. >> >> is there a plan to add this (IMHO) important feature? Thank you! >> >> Regards, >> Marc >> >> -- >> Marc Heuse >> www.mh-sec.de >> >> PGP: AF3D 1D4C D810 F0BB 977D 3807 C7EE D0A0 6BE9 F573 >> _______________________________________________ >> LLVM Developers mailing list >> llvm-dev at lists.llvm.org >> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev -- Marc Heuse Mobil: +49 177 9611560 Fax: +49 30 37309726 www.mh-sec.de Marc Heuse - IT-S...
2020 Mar 10
3
llvm-link has no --allow-multiple-definition
...s there a plan to add this (IMHO) important feature? Thank you! >>>> >>>> Regards, >>>> Marc >>>> >>>> -- >>>> Marc Heuse >>>> www.mh-sec.de >>>> >>>> PGP: AF3D 1D4C D810 F0BB 977D 3807 C7EE D0A0 6BE9 F573 >>>> _______________________________________________ >>>> LLVM Developers mailing list >>>> llvm-dev at lists.llvm.org >>>> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev >> >> -- >> Marc Heuse >> Mobil: +49...
2020 Mar 08
2
llvm-link has no --allow-multiple-definition
...). My issue is that neither is --allow-multiple-definition an llvm-link command line option, nor can I find an equivalent from the --help output. is there a plan to add this (IMHO) important feature? Thank you! Regards, Marc -- Marc Heuse www.mh-sec.de PGP: AF3D 1D4C D810 F0BB 977D 3807 C7EE D0A0 6BE9 F573
2019 Jul 03
3
optimisation issue in an llvm IR pass
...evLoc); > Store->setMetadata(M.getMDKindID("nosanitize"), MDNode::get(C, None)); > // ^^^ same code after both variants > > > -- > Marc Heuse > www.mh-sec.de <http://www.mh-sec.de> > > PGP: AF3D 1D4C D810 F0BB 977D  3807 C7EE D0A0 6BE9 F573 > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org> > https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev > -- Marc Heuse Mobil: +49 177 9611560 Fax:...
2019 Jul 03
2
optimisation issue in an llvm IR pass
...C, None)); StoreInst *Store = IRB.CreateStore(ConstantInt::get(Int32Ty, cur_loc >> 1), AFLPrevLoc); Store->setMetadata(M.getMDKindID("nosanitize"), MDNode::get(C, None)); // ^^^ same code after both variants -- Marc Heuse www.mh-sec.de PGP: AF3D 1D4C D810 F0BB 977D 3807 C7EE D0A0 6BE9 F573
2019 Aug 08
2
in an IR pass: access the instruction pointer/BB address
...to call a function which then uses GET_CALLER_PC, but that costs speed and complicates my IR code... Is that possible? Even if its not portable on anything else than intel x64 that would be enough. Thanks a lot! Regards, Marc -- Marc Heuse www.mh-sec.de PGP: AF3D 1D4C D810 F0BB 977D 3807 C7EE D0A0 6BE9 F573
2020 Jan 15
4
Finding callees of a function
...if it is called from several other functions - or even better, the specific basic blocks where the calls are.) I am aware that this will not work for calls that are made outside of the analyzed module. Thanks! Regards, Marc -- Marc Heuse www.mh-sec.de PGP: AF3D 1D4C D810 F0BB 977D 3807 C7EE D0A0 6BE9 F573
2020 Aug 10
3
resolve the name of an ifunc resolver function
Hi, I just spent 4 hours trying to find a way to get the name of the resolver function of a ifunc definition ... :-( and with all that time I didnt event get far: for (GlobalIFunc &IF : M.ifuncs()) { StringRef ifunc_name = IF.getName(); Constant *r = IF.getResolver(); But how do I get to the (Function*) or function name of the resolver from there? I tried everything with the Constant