Home
last modified time | relevance | path

Searched refs:GlobalStatus (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp64 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS, in analyzeGlobalAux()
68 GS.StoredType = GlobalStatus::StoredOnce; in analyzeGlobalAux()
114 if (GS.StoredType != GlobalStatus::Stored) { in analyzeGlobalAux()
127 if (GS.StoredType < GlobalStatus::InitializerStored) in analyzeGlobalAux()
128 GS.StoredType = GlobalStatus::InitializerStored; in analyzeGlobalAux()
131 if (GS.StoredType < GlobalStatus::InitializerStored) in analyzeGlobalAux()
132 GS.StoredType = GlobalStatus::InitializerStored; in analyzeGlobalAux()
133 } else if (GS.StoredType < GlobalStatus::StoredOnce) { in analyzeGlobalAux()
134 GS.StoredType = GlobalStatus::StoredOnce; in analyzeGlobalAux()
136 } else if (GS.StoredType == GlobalStatus::StoredOnce && in analyzeGlobalAux()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DGlobalStatus.h30 struct GlobalStatus { struct
82 GlobalStatus(); argument
87 static bool analyzeGlobal(const Value *V, GlobalStatus &GS);
/freebsd/sys/contrib/dev/acpica/common/
H A Dadisasm.c730 ACPI_STATUS GlobalStatus = AE_OK; in AdDoExternalFileList() local
763 GlobalStatus = AE_TYPE; in AdDoExternalFileList()
804 if (ACPI_FAILURE (GlobalStatus)) in AdDoExternalFileList()
806 return (GlobalStatus); in AdDoExternalFileList()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1451 processInternalGlobal(GlobalVariable *GV, const GlobalStatus &GS, in processInternalGlobal()
1515 if (GS.StoredType <= GlobalStatus::InitializerStored) { in processInternalGlobal()
1548 if (GS.StoredType == GlobalStatus::StoredOnce && StoredOnceValue) { in processInternalGlobal()
1631 GlobalStatus GS; in processGlobal()
1633 if (GlobalStatus::analyzeGlobal(&GV, GS)) in processGlobal()
/freebsd/lib/clang/libllvm/
H A DMakefile1930 SRCS_MIN+= Transforms/Utils/GlobalStatus.cpp