zero address code - definição. O que é zero address code. Significado, conceito
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

O que (quem) é zero address code - definição

REPRESENTATION OF INTERMEDIATE CODE USED BY COMPILERS
Three address code

physical address         
REPRESENTATION OF MEMORY ADDRESS
Real address; Binary address; Binary addressing; Binary code addressing
<memory management> The address presented to a computer's main memory in a virtual memory system, in contrast to the virtual address which is the address generated by the CPU. A memory management unit translates virtual addresses into physical addresses. (1995-03-31)
Zero (art)         
  • Günther Uecker, photo by Lothar Wolleh
  • Otto Piene, photo by Lothar Wolleh
  • Günther Uecker, Gropiusbau, Berlin
  • ZERO, Guggenheim, New York
GROUP OF ARTISTS
ZERO foundation
Zero (usually styled as ZERO) was an artist group founded in the late 1950s in Düsseldorf by Heinz Mack and Otto Piene. Piene described it as "a zone of silence and of pure possibilities for a new beginning".
addresses         
  • 50px
  • James Fitton]] (1958)
COLLECTION OF INFORMATION THAT DESCRIBES THE LOCATION OF A BUILDING, APARTMENT, OR OTHER STRUCTURE
Address (geographical); Adress; Street address; Address (geography); Postal address; Mailing address format by country; Addresses; Mail address; Mailing address; Post adress; Addresse; Postal Addresse; Postal addresse; Post address; Postal addresses in the United Kingdom; Postal address (United States); United Kingdom postal addresses; Addresses in the UK; Address conventions by country; Addresses in Palau; Addess; Address (geography; Address format; Home address; Postal addresses in the netherlands; US address
archaic courteous or amorous approaches.

Wikipédia

Three-address code

In computer science, three-address code (often abbreviated to TAC or 3AC) is an intermediate code used by optimizing compilers to aid in the implementation of code-improving transformations. Each TAC instruction has at most three operands and is typically a combination of assignment and a binary operator. For example, t1 := t2 + t3. The name derives from the use of three operands in these statements even though instructions with fewer operands may occur.

Since three-address code is used as an intermediate language within compilers, the operands will most likely not be concrete memory addresses or processor registers, but rather symbolic addresses that will be translated into actual addresses during register allocation. It is also not uncommon that operand names are numbered sequentially since three-address code is typically generated by the compiler.

A refinement of three-address code is A-normal form (ANF).