HomeSort by relevance Sort by last modified time
    Searched defs:GlobalStatus (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 1 //===-- 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::StoredOnce
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
GlobalStatus.h 1 //===- GlobalStatus.h - Compute status info for globals ---------*- C++ -*-===//
28 struct GlobalStatus {
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();

Completed in 46 milliseconds