ai-content-maker/.venv/Lib/site-packages/llvmlite/ir/context.py

21 lines
518 B
Python
Raw Permalink Normal View History

2024-05-03 04:18:51 +03:00
from llvmlite.ir import _utils
from llvmlite.ir import types
class Context(object):
def __init__(self):
self.scope = _utils.NameScope()
self.identified_types = {}
def get_identified_type(self, name):
if name not in self.identified_types:
self.scope.register(name)
ty = types.IdentifiedStructType(self, name)
self.identified_types[name] = ty
else:
ty = self.identified_types[name]
return ty
global_context = Context()