You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add EXTERN, CALL, and PRAGMA EXTERN; other minior changes
s/EXTERN/STUB - renaming EXTERN keyword to STUB
Add zero-qubit frame in a DEFRAME in tests
Remove sample-rate from DEFWAVEFORM
Added NON_VOLATILE pragma
Add EXTERN, numerical expression support, printing
Add: CALL instruction
Addressing CALL instructions
Add PRAMGA EXTERN for declaring extern function signatures
Checking extern type for externs in expressions
Add tests for extern and extern pragma processing
Fix: nits; Catch EXTERN PRAGMA parse error and rethrow warning
Remove: malformed extern pragmas no longer signal errors
Fix: indentation
Add: comment about why we check pragma signatures at parse time
Add: Comment about why we're parsing EXTERN pragmas diffrently
Fix: nits
Updates in light of #88
@@ -1316,17 +1343,17 @@ consists of a CONTROLLED-OPERATOR acting on a NAMED-OPERATOR."
1316
1343
1317
1344
* Application is a circuit application.
1318
1345
1319
-
* Application is an extern application.
1346
+
* Application is a stub application.
1320
1347
1321
1348
* Application is an invalid application.
1322
1349
1323
1350
Determining this requires the context of the surrounding program."))
1324
1351
1325
-
(defclassextern-application (application)
1352
+
(defclassstub-application (application)
1326
1353
()
1327
-
(:documentation"Represents the application of an extern operation. Externs allow the user to bypass the parsing and compilation stages for particular operations that are meant to receive specific definition at the backend compilation stage.
1354
+
(:documentation"Represents the application of a stub operation. Stubs allow the user to bypass the parsing and compilation stages for particular operations that are meant to receive specific definition at the backend compilation stage.
1328
1355
1329
-
Externs are similar to instances of UNRESOLVED-APPLICATION. They are semantically empty from the perspective of the quantum abstract virtual machine, and cannot be simulated or executed."))
1356
+
Stubs are similar to instances of UNRESOLVED-APPLICATION. They are semantically empty from the perspective of the quantum abstract virtual machine, and cannot be simulated or executed."))
:documentation"The gate definitions introduced by DEFGATE.")
1773
-
(circuit-definitions :initarg:circuit-definitions
1774
-
:accessor parsed-program-circuit-definitions
1775
-
:typelist
1776
-
:documentation"The circuit definitions introduced by DEFCIRCUIT.")
1777
-
(memory-definitions :initarg:memory-definitions
1778
-
:accessor parsed-program-memory-definitions
1779
-
:typelist
1780
-
:documentation"The memory definitions introduced by DECLARE.")
1781
-
(executable-program :initarg:executable-code
1782
-
:accessor parsed-program-executable-code
1783
-
:type (vector instruction)
1784
-
:documentation"A vector of executable Quil instructions.")
1785
-
(extern-operations :initarg:extern-operations
1786
-
:accessor parsed-program-extern-operations
1787
-
:typehash-table
1788
-
:documentation"A hash table mapping string NAMEs to generalized booleans, indicating that an operation so named is an extern."))
1806
+
((gate-definitions
1807
+
:initarg:gate-definitions
1808
+
:accessor parsed-program-gate-definitions
1809
+
:typelist
1810
+
:documentation"The gate definitions introduced by DEFGATE.")
1811
+
(circuit-definitions
1812
+
:initarg:circuit-definitions
1813
+
:accessor parsed-program-circuit-definitions
1814
+
:typelist
1815
+
:documentation"The circuit definitions introduced by DEFCIRCUIT.")
1816
+
(memory-definitions
1817
+
:initarg:memory-definitions
1818
+
:accessor parsed-program-memory-definitions
1819
+
:typelist
1820
+
:documentation"The memory definitions introduced by DECLARE.")
1821
+
(executable-program
1822
+
:initarg:executable-code
1823
+
:accessor parsed-program-executable-code
1824
+
:type (vector instruction)
1825
+
:documentation"A vector of executable Quil instructions.")
1826
+
(extern-declarations
1827
+
:initarg:extern-declarations
1828
+
:accessor parsed-program-extern-declarations
1829
+
:typehash-table
1830
+
:documentation"A hash table mapping string to booleans.")
1831
+
(stub-operations
1832
+
:initarg:stub-operations
1833
+
:accessor parsed-program-stub-operations
1834
+
:typehash-table
1835
+
:documentation"A hash table mapping string names to booleans."))
1789
1836
(:default-initargs
1790
1837
:gate-definitions'()
1791
1838
:circuit-definitions'()
1792
1839
:memory-definitions'()
1793
1840
:executable-code#()
1794
-
:extern-operations (make-hash-table:test#'equal))
1795
-
(:documentation"A representation of a parsed Quil program, in which instructions have been duly sorted into their various categories (e.g. definitions vs executable code), and internal references have been resolved."))
0 commit comments