Cryptol version 2 Syntax

Similar documents
Lexical Considerations

SMURF Language Reference Manual Serial MUsic Represented as Functions

Babu Madhav Institute of Information Technology, UTU 2015

UNIT- 3 Introduction to C++

c) Comments do not cause any machine language object code to be generated. d) Lengthy comments can cause poor execution-time performance.

Index COPYRIGHTED MATERIAL

Data types for mcrl2

Full file at C How to Program, 6/e Multiple Choice Test Bank

1 Lexical Considerations

Java enum, casts, and others (Select portions of Chapters 4 & 5)

Language Reference Manual

Haskell Introduction Lists Other Structures Data Structures. Haskell Introduction. Mark Snyder

Lexical Considerations

Contents. Jairo Pava COMS W4115 June 28, 2013 LEARN: Language Reference Manual

LCSL Reference Manual

PYTHON- AN INNOVATION

Java Notes. 10th ICSE. Saravanan Ganesh

CS260 Intro to Java & Android 03.Java Language Basics

BoredGames Language Reference Manual A Language for Board Games. Brandon Kessler (bpk2107) and Kristen Wise (kew2132)

Decaf Language Reference Manual

Contents. Figures. Tables. Examples. Foreword. Preface. 1 Basics of Java Programming 1. xix. xxi. xxiii. xxvii. xxix

Chapter 1 Summary. Chapter 2 Summary. end of a string, in which case the string can span multiple lines.

CA4003 Compiler Construction Assignment Language Definition

L-System Fractal Generator: Language Reference Manual

Object oriented programming. Instructor: Masoud Asghari Web page: Ch: 3

CS Bootcamp Boolean Logic Autumn 2015 A B A B T T T T F F F T F F F F T T T T F T F T T F F F

Unit-II Programming and Problem Solving (BE1/4 CSE-2)

Expr Language Reference

Programming in Python 3

Typescript on LLVM Language Reference Manual

Introduction to Visual Basic and Visual C++ Arithmetic Expression. Arithmetic Expression. Using Arithmetic Expression. Lesson 4.

Variables and Values

This book is licensed under a Creative Commons Attribution 3.0 License

\n is used in a string to indicate the newline character. An expression produces data. The simplest expression

MATVEC: MATRIX-VECTOR COMPUTATION LANGUAGE REFERENCE MANUAL. John C. Murphy jcm2105 Programming Languages and Translators Professor Stephen Edwards

egrapher Language Reference Manual

IECD Institute for Entrepreneurship and Career Development Bharathidasan University, Tiruchirappalli 23.

CONTENTS. PART 1 Structured Programming 1. 1 Getting started 3. 2 Basic programming elements 17

PART I. Part II Answer to all the questions 1. What is meant by a token? Name the token available in C++.

XC Specification. 1 Lexical Conventions. 1.1 Tokens. The specification given in this document describes version 1.0 of XC.

Appendix. Grammar. A.1 Introduction. A.2 Keywords. There is no worse danger for a teacher than to teach words instead of things.

There are four numeric types: 1. Integers, represented as a 32 bit (or longer) quantity. Digits sequences (possibly) signed are integer literals:

Computer Programming

C Programming Language (Chapter 2 of K&R) Variables and Constants

Reserved Words and Identifiers

CSc 10200! Introduction to Computing. Lecture 2-3 Edgardo Molina Fall 2013 City College of New York

A First Look at ML. Chapter Five Modern Programming Languages, 2nd ed. 1

Chapter 12 Variables and Operators

Objects and Types. COMS W1007 Introduction to Computer Science. Christopher Conway 29 May 2003

A Java program contains at least one class definition.

Index. object lifetimes, and ownership, use after change by an alias errors, use after drop errors, BTreeMap, 309

Binghamton University. CS-211 Fall Syntax. What the Compiler needs to understand your program

Introduction to Programming Using Java (98-388)

Learning Language. Reference Manual. George Liao (gkl2104) Joseanibal Colon Ramos (jc2373) Stephen Robinson (sar2120) Huabiao Xu(hx2104)

Data Types and Variables in C language

Table of Contents. Preface... xxi

EDIABAS BEST/2 LANGUAGE DESCRIPTION. VERSION 6b. Electronic Diagnostic Basic System EDIABAS - BEST/2 LANGUAGE DESCRIPTION

C Language Part 1 Digital Computer Concept and Practice Copyright 2012 by Jaejin Lee

Operators and Expressions in C & C++ Mahesh Jangid Assistant Professor Manipal University, Jaipur

Here n is a variable name. The value of that variable is 176.

Review of the C Programming Language for Principles of Operating Systems

Shell CSCE 314 TAMU. Haskell Functions

RSL Reference Manual

Quiz 1: Functions and Procedures

LEXICAL 2 CONVENTIONS

Tokens, Expressions and Control Structures

Variable and Data Type I

CSCI.6962/4962 Software Verification Fundamental Proof Methods in Computer Science (Arkoudas and Musser) Chapter p. 1/27

Expression and Operator


CHAD Language Reference Manual

Hardware description language (HDL)

Overview: Programming Concepts. Programming Concepts. Names, Values, And Variables

Overview: Programming Concepts. Programming Concepts. Chapter 18: Get With the Program: Fundamental Concepts Expressed in JavaScript

Chapter 17. Fundamental Concepts Expressed in JavaScript

Chapter 2. Lexical Elements & Operators

)454 : 4(% #(!2!#4%2 3%4!.$ "!3)# %,%-%.43 -!.-!#().%,!.'5!'% )454 Recommendation : INTERNATIONAL TELECOMMUNICATION UNION

YOLOP Language Reference Manual

The Arithmetic Operators. Unary Operators. Relational Operators. Examples of use of ++ and

The Arithmetic Operators

Haskell: Lists. CS F331 Programming Languages CSCE A331 Programming Language Concepts Lecture Slides Friday, February 24, Glenn G.

Differentiate Between Keywords and Identifiers

A Short Summary of Javali

Weiss Chapter 1 terminology (parenthesized numbers are page numbers)

Visual C# Instructor s Manual Table of Contents

Overloading, Type Classes, and Algebraic Datatypes

Engineering Computing I

Programming Lecture 3

Specification of Zinc and MiniZinc. Nicholas Nethercote Kim Marriott Reza Rafeh Mark Wallace María García de la Banda Version 0.8

C++ character set Letters:- A-Z, a-z Digits:- 0 to 9 Special Symbols:- space + - / ( ) [ ] =! = < >, $ # ; :? & White Spaces:- Blank Space, Horizontal

Introduction to Computers and C++ Programming p. 1 Computer Systems p. 2 Hardware p. 2 Software p. 7 High-Level Languages p. 8 Compilers p.

Angela Z: A Language that facilitate the Matrix wise operations Language Reference Manual

A variable is a name that represents a value. For

ADARSH VIDYA KENDRA NAGERCOIL COMPUTER SCIENCE. Grade: IX C++ PROGRAMMING. Department of Computer Science 1

CSCE 314 TAMU Fall CSCE 314: Programming Languages Dr. Flemming Andersen. Haskell Functions

SML A F unctional Functional Language Language Lecture 19

Chapter 2: Introduction to C++

In Delphi script, when values are assigned to variables, the colon-equal operator is used; :=

.Net Technologies. Components of.net Framework

CS113: Lecture 3. Topics: Variables. Data types. Arithmetic and Bitwise Operators. Order of Evaluation

Transcription:

Cryptol version 2 Syntax Contents Layout 2 Comments 2 Identifiers 2 Keywords and Built-in Operators 3 Numeric Literals 3 Bits 4 If Then Else with Multiway 4 Tuples and Records 5 Sequences 6 Functions 7 Local Declarations 7 Explicit Type Instantiation 7 Demoting Numeric Types to Values 7 Explicit Type Annotations 8 Type Signatures 8 Type Synonym Declarations 8 1

Layout Groups of declarations are organized based on indentation. Declarations with the same indentation belong to the same group. Lines of text that are indented more than the beginning of a declaration belong to that declaration, while lines of text that are indented less terminate a group of declarations. Groups of declarations appear at the top level of a Cryptol file, and inside where blocks in expressions. For example, consider the following declaration group f x = x + y + z where y = x * x z = x + y g y = y This group has two declaration, one for f and one for g. All the lines between f and g that are indented more then f belong to f. This example also illustrates how groups of declarations may be nested within each other. For example, the where expression in the definition of f starts another group of declarations, containing y and z. This group ends just before g, because g is indented less than y and z. Comments Cryptol supports block comments, which start with /* and end with */, and line comments, which start with // and terminate at the end of the line. Block comments may be nested arbitrarily. Examples: /* This is a block comment */ // This is a line comment /* This is a /* Nested */ block comment */ Identifiers Cryptol identifiers consist of one or more characters. The first character must be either an English letter or underscore (_). The following characters may be an English letter, a decimal digit, underscore (_), or a prime ('). Some identifiers have special meaning in the language, so they may not be used in programmer-defined names (see Keywords). Examples: 2

name name1 name' longer_name Name Name2 Name'' longername Keywords and Built-in Operators The following identifiers have special meanings in Cryptol, and may not be used for programmer defined names: Arith Inf extern inf module then Bit True fin lg2 newtype type Cmp else if max pragma where False export import min property width The following table contains Cryptol s operators and their associativity with lowest precedence operators first, and highest precedence last. Table 1: Operator precedences. Operator Associativity left ˆ left && left -> (types) right!= == not associative > < <= >= not associative # right >> << >>> <<< left + - left * / % left ˆˆ right!!! @ @@ left (unary) - ~ right Numeric Literals Numeric literals may be written in binary, octal, decimal, or hexadecimal notation. The base of a literal is determined by its prefix: 0b for binary, 0o for octal, no special prefix for decimal, and 0x for hexadecimal. Examples: 254 // Decimal literal 0254 // Decimal literal 3

0b11111110 0o376 0xFE 0xfe // Binary literal // Octal literal // Hexadecimal literal // Hexadecimal literal Numeric literals represent finite bit sequences (i.e., they have type [n]). Using binary, octal, and hexadecimal notation results in bit sequences of a fixed length, depending on the number of digits in the literal. Decimal literals are overloaded, and so the length of the sequence is inferred from context in which the literal is used. Examples: 0b1010 // : [4], 1 * number of digits 0o1234 // : [12], 3 * number of digits 0x1234 // : [16], 4 * number of digits 10 // : {n}. (fin n, n >= 4) => [n] // (need at least 4 bits) 0 // : {n}. (fin n) => [n] Bits The type Bit has two inhabitants: True and False. These values may be combined using various logical operators, or constructed as results of comparisons. Table 2: Bit operations. Operator Associativity Description left Logical or ˆ left Exclusive-or && left Logical and!= == none Not equals, equals > < <= >= none Comparisons ~ right Logical negation If Then Else with Multiway If then else has been extended to support multi-way conditionals. Examples: x = if y % 2 == 0 then 22 else 33 x = if y % 2 == 0 then 1 y % 3 == 0 then 2 4

y % 5 == 0 then 3 else 7 Tuples and Records Tuples and records are used for packaging multiples values together. Tuples are enclosed in parenthesis, while records are enclosed in braces. The components of both tuples and records are separated by commas. The components of tuples are expressions, while the components of records are a label and a value separated by an equal sign. Examples: (1,2,3) // A tuple with 3 component () // A tuple with no components { x = 1, y = 2 } // A record with two fields, `x` and `y` {} // A record with no fields The components of tuples are identified by position, while the components of records are identified by their label, and so the ordering of record components is not important. Examples: (1,2) == (1,2) // True (1,2) == (2,1) // False { x = 1, y = 2 } == { x = 1, y = 2 } // True { x = 1, y = 2 } == { y = 2, x = 1 } // True The components of a record or a tuple may be accessed in two ways: via pattern matching or by using explicit component selectors. Explicit component selectors are written as follows: (15, 20).0 == 15 (15, 20).1 == 20 { x = 15, y = 20 }.x == 15 Explicit record selectors may be used only if the program contains sufficient type information to determine the shape of the tuple or record. For example: type T = { sign : Bit, number : [15] } // Valid definition: // the type of the record is known. ispositive : T -> Bit ispositive x = x.sign // Invalid definition: 5

// insufficient type information. baddef x = x.f The components of a tuple or a record may also be accessed using pattern matching. Patterns for tuples and records mirror the syntax for constructing values: tuple patterns use parenthesis, while record patterns use braces. Examples: getfst (x,_) = x distance2 { x = xpos, y = ypos } = xpos ^^ 2 + ypos ^^ 2 f p = x + y where (x, y) = p Sequences A sequence is a fixed-length collection of elements of the same type. The type of a finite sequence of length n, with elements of type a is [n] a. Often, a finite sequence of bits, [n] Bit, is called a word. We may abbreviate the type [n] Bit as [n]. An infinite sequence with elements of type a has type [inf] a, and [inf] is an infinite stream of bits. [e1,e2,e3] // A sequence with three elements [t.. ] // Sequence enumerations [t1, t2.. ] // Step by t2 - t1 [t1.. t3 ] [t1, t2.. t3 ] [e1... ] // Infinite sequence starting at e1 [e1, e2... ] // Infinite sequence stepping by e2-e1 [ e p11 <- e11, p12 <- e12 // Sequence comprehensions p21 <- e21, p22 <- e22 ] Note: the bounds in finite unbounded (those with..) sequences are type expressions, while the bounds in bounded-finite and infinite sequences are value expressions. Operator Table 3: Sequence operations. Description # Sequence concatenation >> << Shift (right,left) >>> <<< Rotate (right,left) @! Access elements (front,back) @@!! Access sub-sequence (front,back) 6

Operator update updateend updates updatesend Description Update the value of a sequence at a location (front,back) Update multiple values of a sequence (front,back) There are also lifted point-wise operations. [p1, p2, p3, p4] // Sequence pattern p1 # p2 // Split sequence pattern Functions \p1 p2 -> e // Lambda expression f p1 p2 = e // Function definition Local Declarations e where ds Note that by default, any local declarations without type signatures are monomorphized. If you need a local declaration to be polymorphic, use an explicit type signature. Explicit Type Instantiation If f is a polymorphic value with type: f : { typaram } f = zero you can evaluate f, passing it a type parameter: f `{ typaram = 13 } Demoting Numeric Types to Values The value corresponding to a numeric type may be accessed using the following notation: `{t} 7

Here t should be a type expression with numeric kind. The resulting expression is a finite word, which is sufficiently large to accommodate the value of the type: `{t} : {w >= width t}. [w] Explicit Type Annotations Explicit type annotations may be added on expressions, patterns, and in argument definitions. e : t p : t f (x : t) =... Type Signatures f,g : {a,b} (fin a) => [a] b Type Synonym Declarations type T a b = [a] b 8