0
votes
0answers
21 views

There is nothing innately slow about GolfScript. (…) Analysis could be done to remove most if not all stack use. Explain?

From http://www.golfscript.com/golfscript/syntax.html , Ruby is slow to start with so GolfScript is even slower. There is nothing innately slow about GolfScript. Except for the string evaluate ...
1
vote
1answer
30 views

Is this grammar for matched brackets LL(1)?

The grammar is this: S -> e (epsilon) S -> TS T -> (S) I think it is indeed LL(1), my justification is that for a grammar to be LL(1), for each nonterminal that has more than 1 production rule, ...
1
vote
2answers
62 views

Resolving the types of functions in external modules

Suppose we have an imaginary statically typed programming language - let's call it SL. Each SL file corresponds to a module - SL's logical grouping of related functions into namespaces. Calls to ...
1
vote
1answer
125 views

compiler design and eliminating left recursion

For example E -> E+T | T would be E -> T E' E' -> +T E' | null If I have the production B -> B == C | C would these be the correct productions? B -> C B' B' -> ==C B' | ...
5
votes
2answers
291 views

Writing a Memory Manager in a managed language?

The Jikes RVM, a metacircular java runtime, seems to have its Allocator/Collector written in Java (MMTK). How does it work, then, when your garbage collector requires a garbage collector to run? From ...
1
vote
2answers
105 views

The programming language interactions with operating systems

This is a Computer Science question about programming languages and operating systems. My question is, what are the basic interactions between a programming language and operating systems? I do have ...
1
vote
2answers
76 views

Hypothetical - Support for Non-ASCII characters in non-string text

Say, for example, that in Java version 9, someone wanted to add support for the ≤ and ≥ characters as operands, which would work exactly like the <= and >= operands, respectively. Would this be ...
0
votes
1answer
57 views

TypeScript Implementation Language

I have been poking around at the TypeScript compiler and found this curious statement in the language spec: TypeScript compiler is implemented in TypeScript Is this even possible? I must believe ...
0
votes
1answer
55 views

Getting started with Program Analysis [closed]

I'm looking for resources on getting started with program analysis. The only book I've found on the topic is the Nielson & Nielson book. Other than that, it seems like there's only "compiler" ...
2
votes
1answer
80 views

Pure name equivalence in type checking

I am reading Ravi Sethi's book about the programming language concepts, and there it says int *i1; int *i2; After these declarations, the types of i1 and i2 are not name type compatible. In ...
3
votes
3answers
101 views

Is there any way to create a high level language interpreter implmented in hardware?

Some random thoughts caught me and I just cannot get it out. I am thinking since morden processors are just interpreters for different kinds of assembly languages, is there anyway to create some ...
3
votes
3answers
128 views

Creating a Programming Language

I was wondering how professional programmers create their own programming languages. Do they only create a compiler which reads a text file and makes an executable out of it (considering there are no ...
1
vote
1answer
91 views

Is there a programming language that is designed for compiling into (large) neural networks?

I thought about this a while ago, that maybe there should be (or is already) a programming language that actually compiles into a big neural network, that ideally, would scale very well for parallel ...
1
vote
1answer
33 views

Optimization with and without exceptions after compilation - would the results be the same?

Given a program , that uses exceptions for its functionality : if we'd run the program with optimization at one time , and after that we'd run it without optimization - would the outputs of the both ...
0
votes
1answer
43 views

LL1 grammar in compiling

I have a question about LL1 grammar. If we have grammar like this: <S>::=<A> <A>::=<A> car cat | epsilon What is the First <A> can be? Is it just epsilon? And if its ...
4
votes
3answers
117 views

Parsing a C family language out of order

C is parsed strictly in order, i.e. everything has to be declared before it is used; in particular, types must be declared before variables of those types. This makes sense because the grammar would ...
0
votes
1answer
47 views

Javascript library to parse other languages [closed]

Does anyone know where I can find a javascript library which could parse the syntax of other programming languages like php, c# e.t.c. What I'm looking or in detail is some sort of browser text ...
1
vote
1answer
169 views

Creating a Compiler: Learn OCaml or Stick With Java/C/C++

I have to create a new language and a compiler for that language for a class I'm taking this semester - this means the deadline is in about 3.5 months. I have read that OCaml is one of the better ...
2
votes
1answer
198 views

Programming Language Idea: Avoiding vtable lookups [closed]

I have been toying with an idea for a programming language for a while now: It would essentially be C++ and Java-like in syntax, meant for systems programming (or really any programming that requires ...
2
votes
1answer
124 views

How to start building a programming language in C? [closed]

I really would love to go through the experience of building a compiler, lexer, and so on using C, however I havn't found a single resource on creating one. I've read the book about creating your own ...
5
votes
1answer
95 views

Languages that optimise using logic programming

Are there any languages that perform compile-time optimisation using arbitrary logic programming? I'm looking for an example of a language that will enable you to do something like: Define an ...
0
votes
2answers
54 views

How i can intercept the compiler passes

I would like to make a compiler for a new architecture. I am not sure how big task it is. As far i know Flex/Bison kind tools is free to do several steps of compilation. My target is to intercept in ...
1
vote
1answer
63 views

can a compiler of a language L be implemented in the same language L ?

I know many languages that compilers are implemented in the same language: - The C# Roslyn Compiler is implemented in C# - The F# Compiler is implemented in F# Now, I think that is possible for ...
1
vote
1answer
107 views

Non-left-recursive PEG grammar for an “expression”

It's either a simple identifier (like cow) something surrounded by brackets ((...)) something that looks like a method call (...(...)) or something that looks like a member access (thing.member): def ...
1
vote
2answers
134 views

Picking a parser generator for building an interpreter for a custom language using C#? [closed]

This is the first time I go into actually trying to implement a Domain Specific Language. I know the basics of language grammars and Abstract Syntax Trees, however I didn't get my hands dirty in ...
-2
votes
1answer
73 views

How does one write a language? [closed]

How does one write a language? I really can't imagine how this would be done. Do you have to write some binary code? I think I'm far from capable of writing a real programming language -- I'm a hobby ...
0
votes
1answer
50 views

What happens if a compiler claims is standard compliant but it's not? [closed]

What happens if a compiler for language "X" that has a international standard markets itself and claims it's standard compliant but it's not.Are there any regulations or punishments to prevent this? ...
1
vote
4answers
192 views

Dynamically compiled language vs statically compiled language [closed]

The first line of this article by Brian Goetz made me to post this question in SO . Here 's the line again: Writing and interpreting performance benchmarks for dynamically compiled languages, ...
1
vote
2answers
110 views

Efficient ways to reuse a Java compiler's backend for a new JVM language

I'm writing a language targeted at the JVM, and I'm currently putting the compiler together. It becomes apparent to me that, logically, my new language has many of the same needs as Java when it comes ...
3
votes
2answers
195 views

How is a referencing environment generally implemented for closures?

Let's say I have a statically/lexically scoped language with deep binding and I create a closure. The closure will consist of the statements I want executed plus the so called referencing environment, ...
1
vote
1answer
98 views

How do source transformers work?

I have been thinking about source transformers like HipHop and Haxe. From their respective websites, I see that these tools converts a source language to target language and then uses the compilers of ...
0
votes
2answers
190 views

Does all the C compiler strictly follows operator precedence order

I am writing c program, which will be compiled in most of the C compilers in world (compilers of windows, linux, solaris, mac, aix, hpux, vxworks(arm, ppc, mips...), windriver linux and etc.) Will it ...
-3
votes
2answers
248 views

Interpreter design in python [closed]

I am new to pytohn, and I want to make a small interpretor/compiler with it. just a hobby project initially. I would like to know how good is it in comparison to c/c++ to accomplish such a job? it has ...
7
votes
2answers
368 views

CoffeScript'esque language for Objective-C?

Seeing what has been done for Java with Xtend and Mirah I can't help but think someone must be playing around with something similar for Objective-C or even C and C++ for that matter. After some ...
1
vote
3answers
103 views

Why are newer languages able to show better and more precise error messages? [closed]

Why and how are languages such as Python or Java able to show precise and easy to understand error messages, while the true and tested long-standing C/C++ compilers show cryptic, and often unrelated, ...
1
vote
2answers
177 views

Implementing bound function parameters in a compiler

I have an idea for a functional programming language design that makes heavy use of bound function parameters. I'm trying to express bound function parameters in x86 assembly as part of the compiler ...
3
votes
3answers
350 views

How can you optimize jump instruction slowed by cpu branch miss?

Background It is known that random branching costs significant overhead. And there was a post in SO answering such question. Similar performance impact can be seen with jump instructions in many CPU ...
1
vote
2answers
196 views

A text book on how to design a language

I'm working on a scripting language and would like to write a compiler / interpreter for my language. I've desited to do the compiler in standart ML My question now is, is there a "pattern" for ...
2
votes
2answers
81 views

What language is this definition written in?

As I read the definiton of a language called "cord", I see the following syntax definitions: CordScript ::= { UsingClause } { Configuration | Machine } . UsingClause ::= using QualIdent ; . ...
2
votes
2answers
190 views

How compiler handle default value in Symbol Table

Some programming language allow parameters have default value in function call or attributes in struct has default. Like python or javascript, when we omit some parameters in function call, the ...
2
votes
6answers
412 views

Reserved keywords in programming language [closed]

I am wondering if all programming language reserve keys words? SaysIf,While are reserved key words. We should not use it as ordinary variable or function name say if I have If = 3 is illegal. So ...
1
vote
2answers
67 views

Cyclic hierarchy in inheritance

I am currently writing a compiler for java. The JLS says "The class hierarchy must be acyclic." but what about the case where: B extends A C extends A D extends B ...
0
votes
1answer
87 views

Cycle detection in inheritance

I am currently writing a java compiler, one of the things that i have to enforce is acyclic inheritance. I was wondering what is the best way to check this requirement is. Thanks!
0
votes
1answer
124 views

What is the meaning of compile time abstraction?

I came across the sentence, "Compile time abstraction of runtime behaviour", what is compile time abstraction here? My guesses would be, like in a language, trying to optimize/do things that can be ...
1
vote
1answer
152 views

Name resolution for Java

I am currently writing a compiler for a big subset of java and i can't seem to find anything useful for name resolution techniques. Can you please point me towards some resources
4
votes
2answers
265 views

Multiple parameter closure argument type not inferred

I have a piece of code that I can't get to behave in the way I'd like. I have a class defined in the following way (stripped down for this): class Behaviour[T](private val rule: Time => T) { def ...
1
vote
2answers
456 views

Is it possible to make a high level compiled language?

I'm a relatively beginner programmer, who has done some Visual Basic, Python, and recently started looking into Java or C++ for a faster language. The main reason for these languages being faster ...
6
votes
3answers
540 views

Why does JIT'ed code consume so much more memory than either compiled or interpreted code?

Compiled code such as C consumes little memory. Interpreted code such as Python consumes more memory, which is understandable. With JIT, a program is (selectively) compiled into machine code at run ...
2
votes
5answers
141 views

What is a good way of working with variables in 8 bit blocks?

I'm playing around with a toy language design of mine and I have a few problems. I would like it to have variables specified in bit length. So, for example, one declares the variables like so: byte ...
5
votes
3answers
190 views

How to interact with the compiler in Scala code itself?

I wonder how many ways exist to interact with the Scala compiler outside of the normal “invoke it on the command line to compile my sources”. Is there is some way to parse code, build an abstract ...

1 2 3 4