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
@@ -1316,17 +1339,17 @@ consists of a CONTROLLED-OPERATOR acting on a NAMED-OPERATOR."
1316
1339
1317
1340
* Application is a circuit application.
1318
1341
1319
-
* Application is an extern application.
1342
+
* Application is a stub application.
1320
1343
1321
1344
* Application is an invalid application.
1322
1345
1323
1346
Determining this requires the context of the surrounding program."))
1324
1347
1325
-
(defclassextern-application (application)
1348
+
(defclassstub-application (application)
1326
1349
()
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.
1350
+
(: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
1351
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."))
1352
+
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."))
1802
+
((gate-definitions
1803
+
:initarg:gate-definitions
1804
+
:accessor parsed-program-gate-definitions
1805
+
:typelist
1806
+
:documentation"The gate definitions introduced by DEFGATE.")
1807
+
(circuit-definitions
1808
+
:initarg:circuit-definitions
1809
+
:accessor parsed-program-circuit-definitions
1810
+
:typelist
1811
+
:documentation"The circuit definitions introduced by DEFCIRCUIT.")
1812
+
(memory-definitions
1813
+
:initarg:memory-definitions
1814
+
:accessor parsed-program-memory-definitions
1815
+
:typelist
1816
+
:documentation"The memory definitions introduced by DECLARE.")
1817
+
(executable-program
1818
+
:initarg:executable-code
1819
+
:accessor parsed-program-executable-code
1820
+
:type (vector instruction)
1821
+
:documentation"A vector of executable Quil instructions.")
1822
+
(extern-declarations
1823
+
:initarg:extern-declarations
1824
+
:accessor parsed-program-extern-declarations
1825
+
:typehash-table
1826
+
:documentation"A hash table mapping string to booleans.")
1827
+
(stub-operations
1828
+
:initarg:stub-operations
1829
+
:accessor parsed-program-stub-operations
1830
+
:typehash-table
1831
+
:documentation"A hash table mapping string names to booleans."))
1789
1832
(:default-initargs
1790
1833
:gate-definitions'()
1791
1834
:circuit-definitions'()
1792
1835
:memory-definitions'()
1793
1836
: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