Searched refs:GlobalStatus (Results 1 - 6 of 6) sorted by relevance

/freebsd-11.0-release/contrib/llvm/include/llvm/Transforms/Utils/
H A DGlobalStatus.h1 //===- GlobalStatus.h - Compute status info for globals ---------*- C++ -*-===//
28 struct GlobalStatus { struct in namespace:llvm
73 /// Look at all uses of the global and fill in the GlobalStatus structure. If
76 static bool analyzeGlobal(const Value *V, GlobalStatus &GS);
78 GlobalStatus();
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp1 //===-- GlobalStatus.cpp - Compute status info for globals -----------------==//
15 #include "llvm/Transforms/Utils/GlobalStatus.h"
50 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS,
54 GS.StoredType = GlobalStatus::StoredOnce;
96 if (GS.StoredType != GlobalStatus::Stored) {
109 if (GS.StoredType < GlobalStatus::InitializerStored)
110 GS.StoredType = GlobalStatus::InitializerStored;
113 if (GS.StoredType < GlobalStatus::InitializerStored)
114 GS.StoredType = GlobalStatus::InitializerStored;
115 } else if (GS.StoredType < GlobalStatus
184 GlobalStatus::GlobalStatus() function in class:GlobalStatus
[all...]
/freebsd-11.0-release/lib/clang/libllvmtransformutils/
H A DMakefile21 GlobalStatus.cpp \
/freebsd-11.0-release/sys/contrib/dev/acpica/common/
H A Dadisasm.c570 ACPI_STATUS GlobalStatus = AE_OK; local
603 GlobalStatus = AE_TYPE;
640 if (ACPI_FAILURE (GlobalStatus))
642 return (GlobalStatus);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DAnalysis.cpp31 #include "llvm/Transforms/Utils/GlobalStatus.h"
642 GlobalStatus GS;
643 if (GlobalStatus::analyzeGlobal(GV, GS))
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp44 #include "llvm/Transforms/Utils/GlobalStatus.h"
87 bool processInternalGlobal(GlobalVariable *GV, const GlobalStatus &GS);
1713 GlobalStatus GS;
1715 if (GlobalStatus::analyzeGlobal(&GV, GS))
1870 const GlobalStatus &GS) {
1929 } else if (GS.StoredType <= GlobalStatus::InitializerStored) {
1950 } else if (GS.StoredType == GlobalStatus::StoredOnce && GS.StoredOnceValue) {

Completed in 123 milliseconds