search for: shruti

Displaying 10 results from an estimated 10 matches for "shruti".

2014 May 19
2
[LLVMdev] Associate IR instruction with corresponding assembly
.... My guess is that the debug-ir pass wasn't updated when we changed some version of the debug metadata and so isn't producing good metadata. I'm not sure when I'll get to updating it though and it looks like Daniel's address is bouncing. -eric On Mon, May 19, 2014 at 8:22 AM, shruti padmanabha <shrupad at umich.edu> wrote: > No. They're both from the 3.4 version of llvm. > Thanks, > Shruti > > > On Mon, May 19, 2014 at 11:01 AM, Eric Christopher <echristo at gmail.com> > wrote: >> >> On Sun, May 18, 2014 at 10:28 PM, Tobias Gros...
2014 May 19
2
[LLVMdev] Associate IR instruction with corresponding assembly
Hi, Compiling for both x86 and ARM with llc aborts after this pass. I have a simple helloworld.c program. I am attaching the .ll file created by: *clang -O3 -g -emit-llvm hello.c -c -o hello.bc* *llvm-dis hello.bc* Thanks again for the response! Shruti On Mon, May 19, 2014 at 1:28 AM, Tobias Grosser <tobias at grosser.es> wrote: > On 19/05/2014 00:54, shruti padmanabha wrote: > >> Hi, >> >> Thanks for the pointer. I am unfortunately running into llc problems with >> this pass. >> I did >> *opt -...
2014 May 18
3
[LLVMdev] Associate IR instruction with corresponding assembly
...1614: void llvm::DwarfDebug::beginFunction(const llvm::MachineFunction*): Assertion `TheCU && "Unable to find compile unit!"' failed. I'm assuming this is because llc found some errors in the metadata that debug-ir prints out. How do I find and correct this? Thanks again, Shruti On Sat, May 17, 2014 at 5:57 PM, Tobias Grosser <tobias at grosser.es> wrote: > On 17/05/2014 23:05, shruti padmanabha wrote: > >> Hi, >> >> Is there a way to associate LLVM IR instructions with the instructions >> they >> finally generate in the assem...
2010 Mar 29
4
Data sets with usage in documentation object 'data' but not in the code
Hi, My name is shruti,When I was trying to check the package I got this error "Data sets with usage in documentation object 'data' but not in the code" Can any one help me with this.I'm attaching the file for your reference http://n4.nabble.com/file/n1695616/dataset.jpg Thank you -- View this m...
2014 May 19
2
[LLVMdev] Associate IR instruction with corresponding assembly
On Sun, May 18, 2014 at 10:28 PM, Tobias Grosser <tobias at grosser.es> wrote: > On 19/05/2014 00:54, shruti padmanabha wrote: >> >> Hi, >> >> Thanks for the pointer. I am unfortunately running into llc problems with >> this pass. >> I did >> *opt -debug-ir hello.bc -o hello.deb.bc* >> >> *llc -march=arm -debug -O0 hello.deb.bc -o hello.deb.s* &gt...
2014 May 17
2
[LLVMdev] Associate IR instruction with corresponding assembly
...#39;s corresponding to certain IR level instructions for ARM. One way to do this is to tag an IR instruction with a special flag and pass that flag onto the Machine IR created by LLC and then onto Machine Code. It would be helpful if I could get some pointers on how to do this. Thanks in advance, Shruti Padmanabha University of Michigan, Ann Arbor -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140517/642e61d1/attachment.html>
2010 Mar 27
1
Running example in pkg-Ex.R failed
Hi ,My name is shruti,I'm new to R when i was checking my package i got a error message saying Running Example in pkg-Ex.R failed.can any one help me with this.I'm inserting command prompt reference for your reference. Thank you, http://n4.nabble.com/file/n1693503/running_ex.jpg -- View this message in context...
2013 Apr 30
0
Extrafont package: Fonts are not successfully installed
...base. Skipping. C:\WINDOWS\Fonts\palai.ttf : PalatinoLinotype-Italic already registered in fonts database. Skipping. C:\WINDOWS\Fonts\phony.ttf : phony already registered in fonts database. Skipping. C:\WINDOWS\Fonts\raavi.ttf : Raavi already registered in fonts database. Skipping. C:\WINDOWS\Fonts\shruti.ttf : Shruti already registered in fonts database. Skipping. C:\WINDOWS\Fonts\Simbrl.ttf : SimBraille already registered in fonts database. Skipping. C:\WINDOWS\Fonts\simhei.ttf : SimHei already registered in fonts database. Skipping. C:\WINDOWS\Fonts\sylfaen.ttf : Sylfaen already registered in fon...
2013 May 23
0
[LLVMdev] Variable names of arguments to call functions
...etrieve the metadata for the arguments of the call at func instruction. Here is a sample LLVM IR excerpt: %a = alloca [4 x i32], align 2 %arrayidx = getelementptr inbounds i32* %a, i64 2, !dbg !42 %0 = load i32* %arrayidx, align 2, !dbg !42 call void @func(i32 %0), !dbg !42 Thank you!! Regards, shruti -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130522/0294a588/attachment.html>
2017 Oct 26
2
LLVM v6.0 Internalize and GlobalDCE PASS can not work together?
Hi Hal, Thanks for your hint! $ /opt/llvm-svn/bin/opt -S -internalize -internalize-public-api-list=main -globaldce hello3.ll -o hello3.dce.ll    it works :) But I argue that `main` Function should be inserted into ExternalNames by default: Index: lib/Transforms/IPO/Internalize.cpp =================================================================== --- lib/Transforms/IPO/Internalize.cpp