1
vote
2answers
105 views

Avoiding C++ polymorphism

I recently created my own scripting language. My code structures are heavily based on polymorphism. (I'm not really sure about how is this called. I've got a virtual function and then I derive the ...
0
votes
1answer
43 views

How to get mmap'ed memory to sync to the file?

I'm building a memory manager for my postscript interpreter and I want it to be able to suspend sessions to disk and resume a saved session. I designed it using an anonymous mmap and everything ...
4
votes
3answers
234 views

Garbage collection issue in an interpreter implemented in C

I'm working on a hobby compiler/interpreter for a toy procedural language and I've implemented most of the features I set out to explore except for a good garbage collection algorithm (similar to this ...
4
votes
2answers
153 views

ECMAScript-262 implementation in C?

Possible duplicate: Tiny javascript implementation? I have searched around for a C implementation of Javascript, but I couldn't find one. I need this for an ultra-portable application that will ...
1
vote
3answers
369 views

Global pointer in C

I am new to C and I am currently implementing a Scheme interpreter in C. I am close to the end but a problem is bothering me which I have not been able to tackle yet. I want a "globalEnvironment" ...
0
votes
0answers
181 views

Loading and running a small script on a microcontroller with limited functionality?

I am doing a project with a fairly powerful 32-bit microcontroller, the STM32F4 (with 192K RAM and 1024K Flash). I am using C. The system I wish to create consists of this controller (I'll call it the ...
2
votes
2answers
157 views

Writing a print method in C

I am new to C and working on making an interpreter for Scheme. I am trying to get a suitable printList method to traverse through the structure. The program takes in an input like: (a (b c)) ...
1
vote
1answer
175 views

Designing interpreters in C [closed]

What is the typical structure of implementing an interpreter in C? What are some examples which may be referenced? I am already familiar with flex/yacc for the parser. Background: I am learning ...
-1
votes
1answer
57 views

Error when executing an interpreter file

I tried to execute a program through the interpreter file. I used the fork() and execl() function in C. Here is my code: if ((pid = fork()) < 0) printf("fork error"); else if (pid ...
3
votes
1answer
235 views

Performance improvement strategies for VM / interpreter?

I have written a simple VM in C, using a simple switch of instructions, without any instruction decoding whatsoever, but performance is terrible. For simple aritmetic operations the VM is about 4000 ...
2
votes
1answer
103 views

Instruction's representation in a virtual machine

I'm implementing a VM in C (it's my first one) and in order to be platform-independent, I set that each instruction occupies 4 bytes in the binary input (ie the bytecode file). My question is: what ...
0
votes
0answers
93 views

Testcases for a C interpreter

I would like to test a little ANSI C interpreter. My tool interprets my C program. It doesn't produce machine code; and I can't access the heap/stack after execution! I was thinking of validating ...
2
votes
2answers
557 views

Command Parser in C

I am working on an embedded system project. It is on ARM M3-Cortex platform. The equipment I am working with, is a measurement controller. It can be connected to a PC and takes some commands. I try to ...
0
votes
2answers
72 views

Turning strings into code?

So let's say I have a string containing some code in C, predictably read from a file that has other things in it besides normal C code. How would I turn this string into code usable by the program? Do ...
1
vote
3answers
442 views

C/C++ Python interpreter

What I'm trying to do is write an app in C/C++ which will allow users to enter a Python script, which the app will then interpret & run. The aforementioned script will have a separate API that ...
0
votes
1answer
250 views

How to embed CINT into a C++ app on Windows?

I would like to know how to embed CINT into a C++ code on Windows 7 or NT. On windows7, I need to write a C++ program that reads a C++ program from an input file, runs it and counts how many lines of ...
3
votes
1answer
493 views

Printing a variable in an embedded Python interpreter

I have written a small C program that embeds Python. I'm setting it up correctly using Py_Initialize() and Py_Finalize(), and am able to run scripts either using PyRun_SimpleString or ...
-5
votes
1answer
386 views

Brainfuck Interpreter [closed]

Will somebody please describe this brainfuck interpreter for me?? #include <stdlib.h> char m[9999], *n[99], *r = m, *p = m + 5000, **s = n, d, c; main() { for (read(0, ...
4
votes
4answers
371 views

Interpreters written in standard C or C++

Are there any extensible interpreted programming languages written in standard, platform-independent C or C++? I would like to be able to simply put all the sources in one directory, compile the ...
1
vote
1answer
106 views

Function-Pointer in Interpreter

I am building a C-Interpreter (in C++) which builds an AST. I want to give the user the opportunity to communicate with real DLLs. For example: I call a function from a DLL. This function expects an ...
1
vote
0answers
165 views

C / C++ without compiling, can it be done? Read on [closed]

My general idea is as follows: Create a set of pre-compiled basic routines for standard types, operators and so forth. Create custom types and routines dynamically from the precompiled library sort ...
1
vote
1answer
150 views

How to handle a stackoverflow?

I'm trying to fix up the error handling in my postscript interpreter, and I'm having difficulty coming up with ways for the handler to execute when one of the stacks is full. The postscript-level ...
6
votes
6answers
727 views

Scripting language interpreter source code to learn from

I want to read, and learn from, the source code of a scripting language's interpreter/compiler. What scripting language interpreter/compiler has the simplest, cleanest, and easiest to read source ...
0
votes
1answer
211 views

run picoC non-recursively as an interated function

I've been playing around with a few C interpreters and have found picoC to look like it meets all my needs. to kick off a script you call void PicocCallMain(int argc, char **argv); which recursively ...
1
vote
4answers
934 views

How to implement LOOP in a FORTH-like language interpreter written in C

I'm writing a simple stack-based language in C and was wondering how I should go about implementing a loop structure of some kind, and/or lookahead symbols. Since the code is a bit long for this page ...
11
votes
3answers
2k views

How would I go about writing an interpreter in C?

I'd love some references, or tips, possibly an e-book or two. I'm not looking to write a compiler, just looking for a tutorial I could follow along and modify as I go. Thank you for being ...
20
votes
7answers
1k views

Optimisation for a brainfuck interpreter

As an exercise to help me learn about interpreters and optimisation, neither of which I know anything about, I have written a brainfuck interpreter in C. It appears to work flawlessly thus far, though ...
11
votes
3answers
434 views

Custom interpreter for mathematical expressions

I have to evaluate a large number of expressions containing variables and I am thinking about writing a small custom interpreter to keep compilation fast and small. However I have no experience with ...
23
votes
5answers
3k views

C interpreter written in javascript

Is there any C interpreter written in javascript or java ? I don't need a full interpreter but I need to be able to do a step by step execution of the program and being able to see the values of ...
0
votes
1answer
510 views

How do i make my BASIC interpreter in C know whats been inputed

I am trying to create a basic interpreter in c. I started with an interpreter for math calculation (just like a calculator exept here i can give the variable X the value 2 for example). My problem is ...
5
votes
3answers
887 views

C Interpreter (Not Compiler)? [duplicate]

Possible Duplicate: Is there an interpreter for C? Is there a "C implementation" which acts the same as the "C abstract machine" when executing a C program? That is, a simple interpreter ...
2
votes
2answers
181 views

Need some guidance with interpreter creation

I am a high school student and I am trying to create an interpreter. My thoughts are to parse the code, transform it into opcodes (very similar to bytecode, msil etc) and for now to create an ...
9
votes
4answers
657 views

Anyone know of a simple C interpreter written in C#?

About 13 years ago I needed a way to script an application I was writing in Borland C++. I found a C interpreter and embedded that in my application. This has been working fine and I have quite a ...
0
votes
3answers
278 views

How does the Abstract Interpreter work?

I am trying to build an abstract interpreter for C. Probably not for the whole grammar but for just a subset of it. I have previously asked on what language to use. Before I proceed any further, I ...
4
votes
3answers
743 views

How to build C interpreter using C++ or some other PL

I am looking at creating an interpreter for the C language. I have got hold of this link but I would like to know if there is any better way to do it. Right now, I am looking at implementing it using ...
1
vote
2answers
1k views

Creating a language interpreter [closed]

Can anybody give me tutorial on Creating a language interpreter? i want to change for example syntax of for,..
3
votes
2answers
185 views

Mapping variable argument LISP function to C function - C

I am developing a custom LISP interpreter. It won't support defining functions like in LISP, instead all functions are mapped to C functions. When it sees an expression like, (substr 'input '1 '1) ...
9
votes
5answers
281 views

What libraries would be useful for implementing a small language interpreter in C?

For my own learning experience, I want to try writing an interpreter for a simple programming language in C – the main thing I think I need is a hash table library, but a general purpose collection of ...
0
votes
1answer
178 views

Quick question about Lua stand-alone interpreter

I saw this function in the lua.c file called dotty(). I have a feeling that it takes line-by-line input, is this correct?
0
votes
1answer
400 views

What are the basics to creating a Lua interpreter? [closed]

EDIT 2: I have all the Lua source code. I need to know how to get the output of any given Lua program. Sam
2
votes
3answers
287 views

Lua Interpreter Question

How do I get the output from the following: lua_pushstring(L,"print(i)"); lua_call(L,0,0);
0
votes
2answers
247 views

How to manage the memory of data structures and heap of a virtual machine in plain C

In my interpreter I need to manage its runtime objects, along with its internal data structures. I would want to create an interpreter in which there is no difference between the interpreter data ...
2
votes
3answers
3k views

Microcontroller Serial Command Interpreter in C/C++; Ways to do it;

I'd like to interpret a command string, recieved by a microcontroller (PIC16f877A if that makes any difference) via serial. The strings have a pretty simple and straight-foward formatting: ...
5
votes
0answers
404 views

Ch and CInt C interpreters [duplicate]

Possible Duplicate: Have you used any of the C++ interpreters (not compilers)? probable duplicate: ...
2
votes
3answers
205 views

Is there an interpreter for a stack-oriented programming language available under LGPL / GPL license?

I am looking for an interpreter for a stack-oriented programming language released under GPL or LGPL license, written in C or Objective-C.
2
votes
4answers
653 views

C/C++ Dynamic loading of functions with unknown prototype

I'm in the process of writing a kind of runtime system/interpreter, and one of things that I need to be able to do is call c/c++ functions located in external libraries. On linux I'm using the ...
10
votes
9answers
628 views

Is the primary implementation of *any* popular programming language interpreter written in C++?

At the moment I am considering whether or not to rewrite a programming language interpreter that I maintain in C++. The interpreter is currently implemented in C. But I was wondering, is the primary ...
4
votes
7answers
189 views

Better practice to strcpy() or point to another data structure?

Because it's always easier to see code... My parser fills this object: typedef struct pair { char* elementName; char* elementValue; } pair; My interpreter wants to read that object and fill this ...
3
votes
2answers
172 views

Interpreter typing in C

I'm developing an interpreter and I have some questions to it. I recently saw a small C interpreter that used a very simple struct like the below for all its objects/values in the language: struct ...
6
votes
4answers
2k views

How to efficently build an interpreter (lexer+parser) in C?

I'm trying to make a meta-language for writing markup code (such as xml and html) wich can be directly embedded into C/C++ code. Here is a simple sample written in this language, I call it WDI (Web ...

1 2