source: tests/zombies/gc_no_raii/src/gcpointers.h @ dafbde8

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since dafbde8 was fd54fef, checked in by Michael Brooks <mlbrooks@…>, 3 years ago

Converting the project to use the new syntax for otype, dtype and ttytpe.

Changed prelude (gen), libcfa and test suite to use it. Added a simple deprecation rule of the old syntax to the parser; we might wish to support both syntaxes "officially," like with an extra CLI switch, but this measure should serve as a simple reminder for our team to try the new syntax.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#pragma once
2
3#include <stdbool.h>
4#include <stdint.h>
5
6forall(T &)
7struct gcpointer;
8
9struct gcpointer_t
10{
11        intptr_t ptr;
12        struct gcpointer_t* next;
13};
14
15void ?{}(gcpointer_t* this);
16void ?{}(gcpointer_t* this, void* address);
17void ?{}(gcpointer_t* this, gcpointer_t other);
18void ^?{}(gcpointer_t* this);
19gcpointer_t ?=?(gcpointer_t* this, gcpointer_t rhs);
20
21//Logical operators
22bool gcpointer_equal(gcpointer_t* this, gcpointer_t* rhs);
23bool gcpointer_not_equal(gcpointer_t* this, gcpointer_t* rhs);
24bool gcpointer_null(const gcpointer_t* this);
25
26
27#ifndef NDEBUG
28        bool is_valid(const gcpointer_t* this);
29#endif
30
31forall(T &)
32struct gcpointer
33{
34        gcpointer_t internal;
35};
36
37//
38forall(T) void ?{}(gcpointer(T)* this);
39forall(T) void ?{}(gcpointer(T)* this, void* address);
40forall(T) void ?{}(gcpointer(T)* this, gcpointer(T) other);
41forall(T) void ^?{}(gcpointer(T)* this);
42forall(T) gcpointer(T) ?=?(gcpointer(T)* this, gcpointer(T) rhs);
43
44
45// forall(otype T) T *?(gcpointer(T) this);
46forall(T) T* get(gcpointer(T)* this);
47
48//Logical operators
49forall(T) int ?!=?(gcpointer(T) this, int zero);
50forall(T) int ?!=?(gcpointer(T) this, gcpointer(T) rhs);
51forall(T) int ?==?(gcpointer(T) this, gcpointer(T) rhs);
Note: See TracBrowser for help on using the repository browser.