As a newcomer to llvm, I have been able to guess the meanings of many acronyms. "RAUW" is not one of them. Could somebody help me out? -- Rodney Bates rodney.m.bates at acm.org
See: http://llvm.org/docs/Lexicon.html maybe? OTH Mehdi> On Jan 27, 2015, at 9:36 AM, Rodney M. Bates <rodney_bates at lcwb.coop> wrote: > > As a newcomer to llvm, I have been able to guess the meanings of many acronyms. > "RAUW" is not one of them. Could somebody help me out? > > > -- > Rodney Bates > rodney.m.bates at acm.org > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
Replace All Uses With —Owen> On Jan 27, 2015, at 9:36 AM, Rodney M. Bates <rodney_bates at lcwb.coop> wrote: > > As a newcomer to llvm, I have been able to guess the meanings of many acronyms. > "RAUW" is not one of them. Could somebody help me out? > > > -- > Rodney Bates > rodney.m.bates at acm.org > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
----- Original Message -----> From: "Rodney M. Bates" <rodney_bates at lcwb.coop> > To: llvmdev at cs.uiuc.edu > Sent: Tuesday, January 27, 2015 11:36:45 AM > Subject: [LLVMdev] What does "RAUW" stand for? > > As a newcomer to llvm, I have been able to guess the meanings of many > acronyms. > "RAUW" is not one of them. Could somebody help me out?replaceAllUsesWith -Hal> > > -- > Rodney Bates > rodney.m.bates at acm.org > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >-- Hal Finkel Assistant Computational Scientist Leadership Computing Facility Argonne National Laboratory
Hi Rodney, On 27 January 2015 at 09:36, Rodney M. Bates <rodney_bates at lcwb.coop> wrote:> As a newcomer to llvm, I have been able to guess the meanings of many > acronyms. "RAUW" is not one of them. Could somebody help me out?That's Value::replaceAllUsesWith, a key function when modifying LLVM IR. Tim.
http://llvm.org/docs/Lexicon.html#r "Replace All Uses With" -- Sean Silva On Tue, Jan 27, 2015 at 5:36 PM, Rodney M. Bates <rodney_bates at lcwb.coop> wrote:> As a newcomer to llvm, I have been able to guess the meanings of many > acronyms. > "RAUW" is not one of them. Could somebody help me out? > > > -- > Rodney Bates > rodney.m.bates at acm.org > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150127/450f3363/attachment.html>
RAUW is "replace all uses with." I've found the LLVM lexicon ( http://llvm.org/docs/Lexicon.html) to be super helpful. -Stephen On Jan 27, 2015 9:51 AM, "Rodney M. Bates" <rodney_bates at lcwb.coop> wrote:> As a newcomer to llvm, I have been able to guess the meanings of many > acronyms. > "RAUW" is not one of them. Could somebody help me out? > > > -- > Rodney Bates > rodney.m.bates at acm.org > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150127/2c6ff8a3/attachment.html>
> As a newcomer to llvm, I have been able to guess the meanings of many > acronyms. > "RAUW" is not one of them. Could somebody help me out?Replace All Uses With :)> > > -- > Rodney Bates > rodney.m.bates at acm.org > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >
On Tue, Jan 27, 2015 at 11:36:45AM -0600, Rodney M. Bates wrote:> As a newcomer to llvm, I have been able to guess the meanings of many acronyms. > "RAUW" is not one of them. Could somebody help me out?Replace All Uses With. Joerg