answersLogoWhite

0


Best Answer

BEST ANSWER : A translator which generates code for a virtual stack machine.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is p code compiler and it's working?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a p-code compiler?

BEST ANSWER : A translator which generates code for a virtual stack machine.


Which compiler compiles the IL code to native code?

Just-In-Time compiler


What does a compiler allow us to do?

A compiler converts programming code into computer code that a computer can read.


Are programs that translate the source code to object code?

False. A compiler converts source code into object code.


What is bliss compiler?

A bliss compiler compiles Bliss source into Bliss object code which is a step in executing macdine code written by the Bliss compiler.


What is role of compiler?

It coverts your source code into machine code so the computer can execute it.


What is the difference between java compiler and C compiler?

Greetings Technologist. The Java compiler compiles Java code, whereas the C compiler compiles C Code HTH Richard Wolf Software Architect


What is use of compiler in c?

The compiler translates source code into machine code. As opposed to java, this is a machine specific operation.


What is compiler in computer programming?

A compiler is a program that translates high-level source code into low-level machine code.


What does the Java compiler translate Java source code to?

The Java compiler translates Java source code to Java byte code.


What does building the compiler exactly means how does this differs from installing the compiler in perspective of GCC?

Installing a compiler, not just the gcc compiler, is a process where you copy the various executable files to the installation directory, where you copy the various header files to the include directory, where you copy the various library files to the lib directory, in short, where you install the compiler program and configure it so that it can do its work, namely to compile programs. This is no different than installing any other program, such as the game Myst. Building a compiler, on the other hand, is the process where you use a compiler, or other tools, to compile a set of programs that represents the compiler. If this sounds circular, consider this... The game Myst is a program. You install it in order to play it. When you run it, you load and run the executable code that represents Myst. It also has source code, though you probably can not get a copy of that source code. You build Myst by compiling the source code into object code, and then linking an executable from that object code. Building a compiler is no different. It is a program. It has source code. You build it by compiling the source code into object code, and then linking an executable from that object code. When you do this to a compiler, however, you need to distinguish between the compiler that you are building and the compiler that you are using to build the compiler. Sometimes, the compiler is used to compile a new version of itself, in a different directory. Sometimes, a different compiler is used, such as using a simplified version of C to compile a C++ compiler.


What is the work of compiler in dot net?

It translates the .NET-compatible code (i.e. VB, C#) to MSIL code, then, on demand, the JIT compiler compiles it to machine code.