- 5 Résultats
prix le plus bas: € 51,22, prix le plus élevé: € 111,22, prix moyen: € 90,99
1
An APL Compiler by Timothy A. Budd - Timothy A. Budd
Commander
sur BetterWorldBooks.com
€ 51,22
CommanderLien sponsorisé
Timothy A. Budd:

An APL Compiler by Timothy A. Budd - livre d'occasion

ISBN: 9780387966434

Presents the results of an investigation into the issues raised by the development of a compiler for APL, a very high level computer programming language. APL presents a number of novel p… Plus…

used in stock. Frais d'envoizzgl. Versandkosten., Livraison non-comprise
2
An APL Compiler
Commander
sur Springer.com
€ 106,99
Envoi: € 0,001
CommanderLien sponsorisé
An APL Compiler - nouveau livre

ISBN: 9780387966434

Presents the results of an investigation into the issues raised by the development of a compiler for APL, a very high level computer programming language. APL presents a number of novel p… Plus…

Nr. 978-0-387-96643-4. Frais d'envoiWorldwide free shipping, , DE. (EUR 0.00)
3
An APL Compiler - Timothy Budd
Commander
sur Hugendubel.de
€ 106,99
Envoi: € 0,001
CommanderLien sponsorisé
Timothy Budd:
An APL Compiler - Livres de poche

ISBN: 9780387966434

*An APL Compiler* / Taschenbuch für 106.99 € / Aus dem Bereich: Bücher, Ratgeber, Computer & Internet Medien > Bücher nein Buch (kartoniert) Hardcover;Naturwissenschaften, Medizin, Inform… Plus…

0387966439. Frais d'envoiShipping in 3 days, , Versandkostenfrei nach Hause oder Express-Lieferung in Ihre Buchhandlung., DE. (EUR 0.00)
4
An APL Compiler - Budd, Timothy
Commander
sur Achtung-Buecher.de
€ 111,22
Envoi: € 0,001
CommanderLien sponsorisé
Budd, Timothy:
An APL Compiler - nouveau livre

1987, ISBN: 0387966439

Kartoniert / Broschiert Functions; programming; programminglanguage, mit Schutzumschlag 11, [PU:Springer New York; Springer US, New York, N.Y.]

Frais d'envoiVersandkostenfrei innerhalb der BRD. (EUR 0.00) MARZIES.de Buch- und Medienhandel, 14621 Schönwalde-Glien
5
An APL Compiler - Budd, Timothy
Commander
sur Achtung-Buecher.de
€ 78,52
Envoi: € 0,001
CommanderLien sponsorisé
Budd, Timothy:
An APL Compiler - Livres de poche

1988, ISBN: 0387966439

23,5 x 15,5 x 1,0 cm, Taschenbuch 172 Seiten Taschenbuch nice ex library book, [KW:BUCH] 3, [PU:Springer New York,]

Frais d'envoiVersandkostenfrei innerhalb der BRD. (EUR 0.00) Mosakowski GbR Halim Koulali und Lubosz Mosakowski, 65428 Rüsselsheim am Main

1Comme certaines plateformes ne transmettent pas les conditions d'expédition et que celles-ci peuvent dépendre du pays de livraison, du prix d'achat, du poids et de la taille de l'article, d'une éventuelle adhésion de la plateforme, d'une livraison directe par la plateforme ou via un prestataire tiers (Marketplace), etc. il est possible que les frais de livraison indiqués par eurolivre ne correspondent pas à ceux de la plateforme qui propose l'article.

Données bibliographiques du meilleur livre correspondant

Détails sur le livre

Informations détaillées sur le livre - An APL Compiler


EAN (ISBN-13): 9780387966434
ISBN (ISBN-10): 0387966439
Livre de poche
Date de parution: 1988
Editeur: Springer New York

Livre dans la base de données depuis 2009-12-29T09:26:14+01:00 (Paris)
Page de détail modifiée en dernier sur 2023-11-21T00:10:56+01:00 (Paris)
ISBN/EAN: 0387966439

ISBN - Autres types d'écriture:
0-387-96643-9, 978-0-387-96643-4
Autres types d'écriture et termes associés:
Auteur du livre: budd
Titre du livre: apl compiler


Données de l'éditeur

Auteur: Timothy Budd
Titre: An APL Compiler
Editeur: Springer; Springer US
156 Pages
Date de parution: 1987-12-08
New York; NY; US
Poids: 0,271 kg
Langue: Anglais
106,99 € (DE)
109,99 € (AT)
118,00 CHF (CH)
POD
XI, 156 p.

BC; Programming Languages, Compilers, Interpreters; Hardcover, Softcover / Informatik, EDV/Programmiersprachen; Compiler und Übersetzer; Verstehen; APL; compiler; functions; programming; programming language; Compilers and Interpreters; EA

1. Why A Compiler ?.- 1.1. APL Terminology.- 1.2. The Disadvantages of a Compiler.- 1.3. The Compiler Passes.- 1.3.1. The Parsing Pass.- 1.3.2. The Inferencing Pass.- 1.3.3. The Access Determination Pass.- 1.3.4. The Resource Allocation Pass.- 1.3.5. The Code Generation Pass.- 1.4. Compiling for a Vector Machine.- 2. The Inferencing Pass.- 2.1. A Hierarchy of Attributes.- 2.2. Expression Flow Analysis.- 2.3. Intraprocedural Dataflow Analysis.- 2.4. Interprocedural Dataflow Analysis.- 2.5. An Example - The Spiral of Primes.- 2.5.1. Statement Analysis.- 2.5.2. Intraprocedural Analysis.- 2.5.3. Interprocedural Analysis.- 2.5.4. The Importance of Declarations.- 2.5.5. The Size of the Generated Programs.- 3. Code Generation Overview.- 3.1. Demand Driven Evaluation.- 3.2. Boxes.- 3.3. When Not to use Space Efficient Evaluation.- 3.4. A Note on Notation.- 4. Simple Space Efficient Functions.- 4.1. Assignment.- 4.1.1. Nested Assignment.- 4.1.2. Assignment to Quad.- 4.2. Leaves.- 4.2.1. Constants.- 4.2.2. Identifiers.- 4.3. Primitive Scalar functions.- 4.4. Ravel, Reshape and Iota.- 4.5. Outer Product.- 4.6. Subscripting.- 4.7. Mod and Div.- 5. Further Space Efficient Functions.- 5.1. Expansion Vectors.- 5.2. Reduction.- 5.3. Scan.- 5.4. Compression and Expansion.- 5.5. Catenation.- 5.6. Dyadic Rotation.- 5.7. Inner Product and Decode.- 6. Structural Functions.- 6.1. Computing the Stepper.- 6.1.1. Monadic Transpose.- 6.1.2. Take.- 6.1.3. Drop.- 6.1.4. Reversal.- 6.1.5. Dyadic Transpose.- 6.2. The Accessor.- 6.3. Sequential Access.- 6.4. A Nonobvious Optimization.- 7. Space Inefficient Functions.- 7.1. Semi Space Efficient Functions.- 7.2. Collectors.- 7.3. Branching.- 8. Compiling for a Vector Machine.- 8.1. Machine Model.- 8.2. Columns and Request Forms.- 8.3. Code Generation.- 8.3.1. Reduction.- 8.3.2. Scan.- 8.3.3. Compression and Expansion.- 8.3.4. Catenation.- 8.3.5. Dyadic Rotation.- 8.3.6. Structural Functions.- 8.3.7. Outer Product and Subscript.- 9. Epilogue.- Appendix 1. The Language of the APL Compiler.- Appendix 2. A Simple Example.- A Critique.- Appendix 3. A Longer Example.- References.

Autres livres qui pourraient ressembler au livre recherché:

Dernier livre similaire:
9783540966432 An APL Compiler. (Budd, Timothy)


< pour archiver...