Searched defs:GlobalStatus (Results 1 - 2 of 2) sorted by relevance

/external/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();
/external/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,
92 if (GS.StoredType != GlobalStatus::Stored) {
105 if (GS.StoredType < GlobalStatus::InitializerStored)
106 GS.StoredType = GlobalStatus::InitializerStored;
109 if (GS.StoredType < GlobalStatus::InitializerStored)
110 GS.StoredType = GlobalStatus::InitializerStored;
111 } else if (GS.StoredType < GlobalStatus::StoredOnce) {
112 GS.StoredType = GlobalStatus
180 GlobalStatus::GlobalStatus() function in class:GlobalStatus
[all...]

Completed in 81 milliseconds