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

  /external/chromium_org/sandbox/linux/services/
yama.h 21 enum GlobalStatus {
  /external/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 1 //===-- GlobalStatus.cpp - Compute status info for globals -----------------==//
15 #include "llvm/Transforms/Utils/GlobalStatus.h"
47 static bool analyzeGlobalAux(const Value *V, GlobalStatus &GS,
89 if (GS.StoredType != GlobalStatus::Stored) {
102 if (GS.StoredType < GlobalStatus::InitializerStored)
103 GS.StoredType = GlobalStatus::InitializerStored;
106 if (GS.StoredType < GlobalStatus::InitializerStored)
107 GS.StoredType = GlobalStatus::InitializerStored;
108 } else if (GS.StoredType < GlobalStatus::StoredOnce) {
109 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 230 milliseconds