Home
last modified time | relevance | path

Searched refs:isDematerializable (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/
DGVMaterializer.h42 virtual bool isDematerializable(const GlobalValue *GV) const = 0;
DGlobalValue.h247 bool isDematerializable() const;
DModule.h395 bool isDematerializable(const GlobalValue *GV) const;
/external/swiftshader/third_party/LLVM/lib/VMCore/
DGlobals.cpp32 bool GlobalValue::isDematerializable() const { in isDematerializable() function in GlobalValue
33 return getParent() && getParent()->isDematerializable(this); in isDematerializable()
DModule.cpp346 bool Module::isDematerializable(const GlobalValue *GV) const { in isDematerializable() function in Module
348 return Materializer->isDematerializable(GV); in isDematerializable()
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
DBitcodeReader.h194 virtual bool isDematerializable(const GlobalValue *GV) const;
DBitcodeReader.cpp2892 bool BitcodeReader::isDematerializable(const GlobalValue *GV) const { in isDematerializable() function in BitcodeReader
2902 if (!F || !isDematerializable(F)) in Dematerialize()