Cthulhu  0.2.10
Cthulhu compiler collection
ssa_storage_t Struct Reference

ssa underlying storage type More...

#include <ssa.h>

Collaboration diagram for ssa_storage_t:

Data Fields

const ssa_type_ttype
 the internal storage type More...
 
size_t size
 the number of elements in the storage More...
 
tree_quals_t quals
 the qualifiers of the storage More...
 

Detailed Description

ssa underlying storage type

intermediate types

a storage of (type=int, size=4) would be equivalent to int x[4] in C a storage of (type=*int, size=4) would be equivalent to int *x[4] in C the underlying storage type should match the type of external accessors with a pointer type e.g. if the storage is int the accessor should be int *

Definition at line 78 of file ssa.h.

Field Documentation

◆ quals

tree_quals_t ssa_storage_t::quals

the qualifiers of the storage

Definition at line 86 of file ssa.h.

◆ size

size_t ssa_storage_t::size

the number of elements in the storage

Definition at line 83 of file ssa.h.

◆ type

const ssa_type_t* ssa_storage_t::type

the internal storage type

Definition at line 80 of file ssa.h.


The documentation for this struct was generated from the following file: