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

/external/llvm/include/llvm/
H A DGVMaterializer.h40 /// isDematerializable - True if GV has been materialized and can be
42 virtual bool isDematerializable(const GlobalValue *GV) const = 0;
H A DGlobalValue.h243 /// isDematerializable - Returns true if this function was loaded from a
246 bool isDematerializable() const;
255 /// materialized lazily. If !isDematerializable(), this method is a noop.
H A DModule.h449 /// isDematerializable - Returns true if this GV was loaded from this Module's
451 bool isDematerializable(const GlobalValue *GV) const;
459 /// materialized lazily. If !isDematerializable(), this method is a noop.
/external/llvm/lib/VMCore/
H A DGlobals.cpp32 bool GlobalValue::isDematerializable() const { function in class:GlobalValue
33 return getParent() && getParent()->isDematerializable(this);
H A DModule.cpp402 bool Module::isDematerializable(const GlobalValue *GV) const { function in class:Module
404 return Materializer->isDematerializable(GV);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h208 virtual bool isDematerializable(const GlobalValue *GV) const;
H A DBitcodeReader.cpp2761 bool BitcodeReader::isDematerializable(const GlobalValue *GV) const { function in class:BitcodeReader
2771 if (!F || !isDematerializable(F))

Completed in 323 milliseconds