Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] bytecode reader"
2008 Jun 23
0
[LLVMdev] bytecode reader
Hi,
I currently write a tool to parse the LLVM bytecode file (.bc file). So I
have some very basic questions:
- First, about the Abbreviation ID ( "0"=END_BLOCK, "1"=ENTER_SUBBLOCK...):
how to read these ID from the file stream ? I mean, I don't know, how many
bit length they are. It doesn't exist on the document.
- Second, how is the order to read the bytecode ?
For
2017 Apr 04
4
RFC: Adding a string table to the bitcode format
On Mon, Apr 3, 2017 at 8:13 PM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
> On Apr 3, 2017, at 7:08 PM, Peter Collingbourne <peter at pcc.me.uk> wrote:
>
> Hi,
>
> As part of PR27551 I want to add a string table to the bitcode format to
> allow global value and comdat names to be shared with the proposed symbol
> table (and, as side effects, allow comdat
2015 Aug 03
3
[LLVMdev] RFC: ThinLTO File Format
As discussed in the high-level ThinLTO RFC (
http://lists.cs.uiuc.edu/pipermail/llvmdev/2015-May/086211.html), we would
like to add support for native object wrapped bitcode and ThinLTO
information. Based on comments on the mailing list, I am adding support for
ThinLTO in both normal bitcode files, as well as native-object wrapped
bitcode.
The following RFC describes the planned file format of
2008 Jul 01
2
[LLVMdev] build on windows
Hi Jean-Daniel,
thank for ur fast answer, i have fixed this error, another function was
defined inside llvm source code.
So, my only problem now is, I cannot create the file "configure.lib"
(belongs to project "Configure"). I can build this project without error,
but it didn't generate the lib data ?!
Can you build this file ? if yes, I will be very happy if you send it to
2008 Jul 01
0
[LLVMdev] build on windows
AFAK, the Configuration project does not generate any output. It just
patch and generate some required header file.
Le 1 juil. 08 à 17:32, Le Anh Quang a écrit :
> Hi Jean-Daniel,
> thank for ur fast answer, i have fixed this error, another function
> was
> defined inside llvm source code.
> So, my only problem now is, I cannot create the file "configure.lib"
>
2017 Apr 04
5
RFC: Adding a string table to the bitcode format
Hi,
As part of PR27551 I want to add a string table to the bitcode format to
allow global value and comdat names to be shared with the proposed symbol
table (and, as side effects, allow comdat names to be shared with value
names, make bitcode files more compressible and make bitcode easier to
parse). The format of the string table would be a top-level block
containing a blob containing
2008 Jul 01
0
[LLVMdev] build on windows
Not this one, I have a different error here. One related to hasmap and
pair templates.
I will check this on my Windows machine later.
Le 1 juil. 08 à 16:44, Le Anh Quang a écrit :
> Hi Jean-Daniel,
> Thank
> I use VC++ 9 (express version). I have also an error in TableGen: The
> "strtoll" could not be found under win32. Have you fixed it ?
>
> Regards
> Quang
2008 Jul 01
3
[LLVMdev] build on windows
Hi Jean-Daniel,
Thank
I use VC++ 9 (express version). I have also an error in TableGen: The
"strtoll" could not be found under win32. Have you fixed it ?
Regards
Quang
-----Ursprüngliche Nachricht-----
Von: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] Im
Auftrag von Jean-Daniel Dupas
Gesendet: Montag, 30. Juni 2008 22:00
An: LLVM Developers Mailing List
2005 Aug 10
1
fileutil & tar utility RPMs on RHAS3.0
Hi,
Please advice how to download utility for 'tar', 'cp' supporting RHAS3.0
RPMs listed in note 237997.1 are used for RHAS2.1
* Patch 2883583: fileutils-4.1-4.2.i386.rpm
* Patch 2913284: tar-1.13.25-9.i386.rpm
Best regards,
Huy.
==
Nguyen Quang Huy
Sr. Technical Sales Consultant
Oracle Vietnam
53 Quang Trung St, Hanoi
Email: quang.huy.nguyen@oracle.com
Phone: +84 4 943 2595
2008 Jul 01
2
[LLVMdev] build on windows
Hi,
but on some other project, they require "configure.lib". What is this one ?
Thanks
-----Ursprüngliche Nachricht-----
Von: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] Im
Auftrag von Jean-Daniel Dupas
Gesendet: Dienstag, 1. Juli 2008 17:58
An: LLVM Developers Mailing List
Betreff: Re: [LLVMdev] build on windows
AFAK, the Configuration project does not
2008 Jun 30
1
[LLVMdev] build on windows
So far, I'm building largely clean too. I had to change which llvmAsmParser it was looking at since it needs to look at the generated file under the win32\AsmParser directory rather than ...\lib\AsmParser where no such file exists. After that, it compiles clean on debug. Working on release now and then I'll check that change in.
Quang, do you have flex and bison on your system and in
2008 Oct 10
1
[LLVMdev] global constant integer and pointer
Hi all,
I have tried to use llvm to translate some programs. Today I saw a weird
thing:
- My program has a global pointer @ptr1 = 0. And the constant integer '0' is
stored in value memory at index 64.
"@ptr = weak global i32 0; <i32*>"
- Somewhere in my program, there is a store instruction:
"store i32 %tmp31, i32* @ptr"
it writes %tmp32 into memory, where
2008 Jun 30
0
[LLVMdev] build on windows
Le 30 juin 08 à 21:28, Le Anh Quang a écrit :
> Hi,
> I have tried to compile LLVM with Visual C++. Some subprojects work
> now.
>
> Other subprojects require the file "configure.lib". So I tried to
> compile
> the project "Configure". It could be built successfully, but the file
> "configure.lib" is not generated. So, what is the problem
2017 Apr 04
4
RFC: Adding a string table to the bitcode format
On Mon, Apr 3, 2017 at 8:13 PM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
> On Apr 3, 2017, at 7:08 PM, Peter Collingbourne <peter at pcc.me.uk> wrote:
>
> Hi,
>
> As part of PR27551 I want to add a string table to the bitcode format to
> allow global value and comdat names to be shared with the proposed symbol
> table (and, as side effects, allow comdat
2017 Apr 04
2
RFC: Adding a string table to the bitcode format
On Tue, Apr 4, 2017 at 1:25 PM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
> On Apr 4, 2017, at 12:12 PM, Peter Collingbourne <peter at pcc.me.uk> wrote:
>
> On Mon, Apr 3, 2017 at 8:13 PM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
>>
>> On Apr 3, 2017, at 7:08 PM, Peter Collingbourne <peter at pcc.me.uk> wrote:
>>
>> Hi,
2005 May 23
1
RE: Ocfs-users Digest, Vol 25, Issue 6
When OCFS2 is available as Production?
==
Nguyen Quang Huy
Sr. Technical Sales Consultant
Oracle Vietnam
53 Quang Trung St, Hanoi
Email: quang.huy.nguyen@oracle.com
Phone: +84 4 943 2595
Fax: +84 4 943 2592
==
-----Original Message-----
From: ocfs-users-bounces@oss.oracle.com
[mailto:ocfs-users-bounces@oss.oracle.com]On Behalf Of
ocfs-users-request@oss.oracle.com
Sent: Tuesday, May 24, 2005
2005 May 29
1
Does OCFS2 certified on RHAS3 and 2.1?
Hi All,
Is there any one know if OCFS2 will be certified on RedHat AS3 or 2.1? On
http://oss.oracle.com I see OCFS2 Beta is available for RHAS 4 only.
Rgds,
Huy.
==
Nguyen Quang Huy
Sr. Technical Sales Consultant
Oracle Vietnam
53 Quang Trung St, Hanoi
Email: quang.huy.nguyen@oracle.com
Phone: +84 4 943 2595
Fax: +84 4 943 2592
==
-----Original Message-----
From:
2008 Jul 23
1
[LLVMdev] weird function
llvm-gcc is the C compiler, but you're trying to compile a C++ file.
"@_Znwj" looks like part of a C++ symbol.
Try llvm-g++ instead, that should help.
- Simon
2008/7/23 Le Anh Quang <anh_quang.le at mailbox.tu-dresden.de>:
> Hi,
> I have tried to compile a simple cpp file with llvm-gcc. I have attached
> the assemble file here.
> I see a weird thing there.
2008 Jun 30
4
[LLVMdev] build on windows
Hi,
I have tried to compile LLVM with Visual C++. Some subprojects work now.
Other subprojects require the file "configure.lib". So I tried to compile
the project "Configure". It could be built successfully, but the file
"configure.lib" is not generated. So, what is the problem here ? Can
somebody help me to fix that ?
Thanks and regards
Quang
2008 Jul 13
3
[LLVMdev] instruction description
Hi,
I need the description of LLVM instructions on bitcode file. I can't find it
on any document. Reading the code costs much time. Does a description like
this exist ? It should look like the JVM Instruction set on the link bellow:
http://java.sun.com/docs/books/jvms/second_edition/html/Instructions2.doc.ht
ml
Thanks for any advise.
Quang