Displaying 20 results from an estimated 8000 matches similar to: "[LLVMdev] Formal spec for LLVM IR (Was: LLVM Language Reference Strictness)"
2011 Oct 20
2
[LLVMdev] LLVM Language Reference Strictness
> For the level of specificity you're looking for, just the source code itself. The LLVM IR language documentation is not, and isn't intended to be, a true language standard document in the same way that the C or C++ standards are. For any given case, check the docs first, and if your question isn't answered there, check the source code of the target(s) you're interested in.
2011 Oct 20
0
[LLVMdev] LLVM Language Reference Strictness
On 10/20/2011 07:42 AM, Duncan Sands wrote:
>> For the level of specificity you're looking for, just the source code itself. The LLVM IR language documentation is not, and isn't intended to be, a true language standard document in the same way that the C or C++ standards are. For any given case, check the docs first, and if your question isn't answered there, check the source
2011 Oct 21
3
[LLVMdev] LLVM Language Reference Strictness
Reed,
On Oct 20, 2011, at 9:47 AM, Reed Kotler wrote:
> I would like to see the many adhoc parsers in LLVM get replaced by ones
> generated from grammars.
FYI, this is very unlikely to happen. The parsers in LLVM were historically generated from grammars (bison, as I recall), and those implementations were removed in favor of hand-written implementations both because the latter were
2011 Oct 21
0
[LLVMdev] LLVM Language Reference Strictness
On 10/21/2011 09:28 AM, Owen Anderson wrote:
> Reed,
>
> On Oct 20, 2011, at 9:47 AM, Reed Kotler wrote:
>> I would like to see the many adhoc parsers in LLVM get replaced by ones
>> generated from grammars.
>
> FYI, this is very unlikely to happen. The parsers in LLVM /were/
> historically generated from grammars (bison, as I recall), and those
>
2020 Jan 01
3
standard naming for components of R data structures
I need to write some documentation:
I'm looking for a standard, consistent way of referring to the components
and attributes of R data structures. Googling and Stackoverflow yield a
variety of github sites that do not seem to be particularly authoritative.
I was hoping to find a BNF/ABNF grammar for R.
I've looked at the output of bison -v ./R-3.6.2/src/main/gram.y but it does
not
2006 Jan 09
1
AR: Quoting in Join Model Test
Greetings made men of rails!
I am presently writing a new database adapter for rails to bring the
OpenBase community on board. In working through the rather extensive
AR tests (which I very much appreciate), I have come across a
question I can''t seem to answer on my own.
In the test_has_many_with_piggyback(AssociationsJoinModel) the result
is expected as a quoted integer
2020 Jan 06
1
standard naming for components of R data structures
@steve
Seek for online document named "writing R extensions" chapter 2. It tells
how to describe a list structure using item markup for R documentation
files, if indeed this matches your search, thing I am not sure. Something
that looks like...
value{
The \\code{list} owns following names
\\item{alpha}{double vector}
\\item{beta}{integer vector}
\\item{delta}{raw vector}
}
Best
Le
2013 Jul 27
4
[LLVMdev] Require Grammar for converting C to IR
Respected Sir/Madam,
As I was developing some part of compiler for a project. I require grammar
(BNF or EBNF) for converting the C code in the IR as it is not been
mentioned any where over your official website.
Awaiting for your help.
Regards,
Vijay Daultani.
M.Tech student
IIT Delhi
2011 Mar 28
3
Interested in GSOC projects
Respected sir/ma'am,
I, Saurabh Kumar, am a second year UG student in ?Department of Comp.
Science at IIT
Delhi, India and want to apply for GSOC.
I am interested and would love to work on the following projects:
?-? QueryParser Reimplementation
?- ?Improve Spelling Correction
I have worked on many programming projects and it makes me an eligible
candidate for SOC.
I have a experience of
2011 Mar 28
3
Interested in GSOC projects
Respected sir/ma'am,
I, Saurabh Kumar, am a second year UG student in ?Department of Comp.
Science at IIT
Delhi, India and want to apply for GSOC.
I am interested and would love to work on the following projects:
?-? QueryParser Reimplementation
?- ?Improve Spelling Correction
I have worked on many programming projects and it makes me an eligible
candidate for SOC.
I have a experience of
2011 Jan 24
3
[LLVMdev] LLVM grammar for ANTLR
Has anyone written a grammar for LLVM for ANTLR. I mean an ANTLR
grammar that parses LLVM instructions. Is an LLVM grammar available
for any other parsing tool?
Surinder
2017 Jun 19
3
VC C++ demangler
A long time ago, when I devised the grammar and structure of the Microsoft C++ name mangling scheme (decorated names), the document describing the object model and the name decoration scheme were made publically available. Perhaps this is still available publically, or perhaps Microsoft might be willing to share an up to date definition of the name-decoration grammar, especially in light of the
2011 Mar 21
1
GSOC 2011 - QueryParser Reimplementation
hello everyone,
I am Maheshwar, a prefinal year Computer Science undergraduate student at
BITS-Pilani, India. When i was going through the GSOC ideas , i felt
interested in Quesry parser project. Till now i have implemented a couple of
LL(1) parsers as a part of my assignment in Compiler construction course,
so i would love to join and contribute to this project. So can any one tell
me how to go
2013 Jul 29
0
[LLVMdev] Require Grammar for converting C to IR
Vijay Daultani wrote:
> Respected Sir/Madam,
>
> As I was developing some part of compiler for a project. I require grammar
> (BNF or EBNF) for converting the C code in the IR as it is not been
> mentioned any where over your official website.
I don't know what you mean by "converting the C code in the IR".
Regardless, LLVM does not have BNF or EBNF forms (or any
2013 Jul 29
1
[LLVMdev] Require Grammar for converting C to IR
I am curious how do you guys do it anyways?
On Mon, Jul 29, 2013 at 3:27 AM, Nick Lewycky <nicholas at mxc.ca> wrote:
> Vijay Daultani wrote:
>
>> Respected Sir/Madam,
>>
>> As I was developing some part of compiler for a project. I require grammar
>> (BNF or EBNF) for converting the C code in the IR as it is not been
>> mentioned any where over your
2008 Apr 06
1
markdown PEG (parsing expression grammar)
There's been a lot of discussion on this list about creating a formal
grammar for markdown. I had a go at writing a [parsing expression
grammar] for markdown. I used Haskell and John Meacham's Frisby PEG
parsing library, but it should not be too hard to port the grammar
to PEG libraries in other languages.
[parsing expression grammar]:
2006 Jul 29
4
Formal Grammar — some thoughts
I recently subscribed and saw in the archive that Eric Astor was
asking for a formal grammar (unlikely the first time for such request.)
Currently there are a few problems in making such a thing so I was
curious if Mr. Gruber has made any thoughts about moving toward one?
This would also allow a more ?clean? parser which would get rid of
some of the current problems (bad nesting[^1],
2006 May 04
1
[LLVMdev] Idea for the Summer of Code
Hi all,
I have an idea for a proposal for the summer of code which I think is pretty
cool, but I wanted to run it past you all to see what you thought of it
first.
Basically, the proposal is to use LLVM as a test bed for a more theoretical
idea I have. I want to develop a grammar-level way of formally specifying
how to translate between two languages. Borrowing from XSLT (a way of
transforming
2013 Jul 29
0
[LLVMdev] Require Grammar for converting C to IR
On Sat, Jul 27, 2013 at 9:02 AM, Vijay Daultani <vijay.daultani at gmail.com>wrote:
> Respected Sir/Madam,
>
> As I was developing some part of compiler for a project. I require grammar
> (BNF or EBNF) for converting the C code in the IR as it is not been
> mentioned any where over your official website.
>
> Awaiting for your help.
>
>
Hi Vijay,
If you are asking
2005 Nov 08
6
[ANNOUNCE] iproute2 2.6.14-051107
Update to iproute2 is available. Most of the changes were to repair the
things that broke with the introduction of the batch mode to the ip command.
http://developer.osdl.org/dev/iproute2/download/iproute2-2.6.14-051107.tar.gz
For info on CVS ans other info see:
http://linux-net.osdl.org/index.php/Iproute2
Masahide NAKAMURA
* Updating for 2.6.14
- Show UPD{SA,POLICY} message