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

/freebsd-10.2-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-10.2-release/contrib/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp1 //===-- GlobalStatus.cpp - Compute status info for globals -----------------==//
15 #include "llvm/Transforms/Utils/GlobalStatus.h"
48 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS,
91 if (GS.StoredType != GlobalStatus::Stored) {
104 if (GS.StoredType < GlobalStatus::InitializerStored)
105 GS.StoredType = GlobalStatus::InitializerStored;
108 if (GS.StoredType < GlobalStatus::InitializerStored)
109 GS.StoredType = GlobalStatus::InitializerStored;
110 } else if (GS.StoredType < GlobalStatus::StoredOnce) {
111 GS.StoredType = GlobalStatus
179 GlobalStatus::GlobalStatus() function in class:GlobalStatus
[all...]
/freebsd-10.2-release/lib/clang/libllvmtransformutils/
H A DMakefile18 GlobalStatus.cpp \
/freebsd-10.2-release/sys/contrib/dev/acpica/common/
H A Dadisasm.c217 ACPI_STATUS GlobalStatus = AE_OK; local
260 GlobalStatus = AE_TYPE;
293 if (ACPI_FAILURE (GlobalStatus))
295 return (GlobalStatus);
/freebsd-10.2-release/contrib/llvm/lib/LTO/
H A DLTOModule.cpp41 #include "llvm/Transforms/Utils/GlobalStatus.h"
348 GlobalStatus GS;
349 if (GlobalStatus::analyzeGlobal(GV, GS))
/freebsd-10.2-release/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp42 #include "llvm/Transforms/Utils/GlobalStatus.h"
84 const GlobalStatus &GS);
1724 GlobalStatus GS;
1726 if (GlobalStatus::analyzeGlobal(GV, GS))
1744 const GlobalStatus &GS) {
1797 } else if (GS.StoredType <= GlobalStatus::InitializerStored) {
1820 } else if (GS.StoredType == GlobalStatus::StoredOnce) {
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp52 #include "llvm/Transforms/Utils/GlobalStatus.h"
237 GlobalStatus GS;
238 if (!GlobalStatus::analyzeGlobal(GV, GS) && !GS.IsCompared)

Completed in 114 milliseconds