bytecode compiler - Definition. Was ist bytecode compiler
Diclib.com
Online-Wörterbuch

Was (wer) ist bytecode compiler - definition

PROGRAM THAT GENERATES PARSERS OR COMPILERS FROM SOURCE FILES
Parser generator; Parser generators; Compiler compiler; Compiler Compiler; Compiler generator; Semantic action routine; Compiler development tools; Metacompiler; Parser compiler

compiler-compiler         
A utility to generate the source code of a parser, interpreter or compiler from an annotated language description (usually in BNF). Most so called compiler-compilers are really just parser generators. Examples are Bison, Eli, FSL, META 5, MUG2, Parsley, Pre-cc, Yacc. (1995-01-23)
compiler compiler         
compiler         
  • Compiler design
  • grammar for C]], respectively.
COMPUTER PROGRAM THAT TRANSFORMS SOURCE CODE INTO OBJECT CODE
Compilers; Compile; Language compiler; Compile (computing); Compiler (computing); Compiled sofware; Compiling; Compiler design; Compiler (programming); Compiled; Parallel compiler; Compiler theory; Parallel compilers; Recompile; Parallel complier; Compilation (programming); Semantic analysis (computer science); Compiler (computer); Code compilation; Compiling tools; Compiler construction; Programming language compiler; Compiled software; Write compiler; Compiler designer; Compiler writer; Compiler writing; Compiler frontend; Compiler backend; Compilation (computing); Code compiling; Line reconstruction; Compiler front-end; Compiler back-end; Code compiler; CFE (compiler); Front end (compiler); Compiler front end; Compiler back end; Compiler middle end; Three-stage compilation; Recompiled; Back end (Compiler); Program compilation
(compilers)
1.
A compiler is someone who compiles books, reports, or lists of information.
N-COUNT: oft N of n
2.
A compiler is a computer program which converts language that people can use into a code that the computer can understand. (COMPUTING)
N-COUNT

Wikipedia

Compiler-compiler

In computer science, a compiler-compiler or compiler generator is a programming tool that creates a parser, interpreter, or compiler from some form of formal description of a programming language and machine.

The most common type of compiler-compiler is more precisely called a parser generator. It only handles syntactic analysis.

The input of a parser generator is a grammar file, typically written in Backus–Naur form (BNF) or extended Backus–Naur form (EBNF) that defines the syntax of a target programming language.

The output is the source code of a parser for the programming language. The output of the (compiled) parser source code is a parser. It may be either standalone or embedded. This parser takes as an input the source code of the target programming language source and performs some action or outputs an abstract syntax tree (AST).

Parser generators do not handle the semantics of the AST, or the generation of machine code for the target machine.

A metacompiler is a software development tool used mainly in the construction of compilers, translators, and interpreters for other programming languages. The input to a metacompiler is a computer program written in a specialized programming metalanguage designed mainly for the purpose of constructing compilers. The language of the compiler produced is called the object language. The minimal input producing a compiler is a metaprogram specifying the object language grammar and semantic transformations into an object program.