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.h252 /// isDematerializable - Returns true if this function was loaded from a
255 bool isDematerializable() const;
264 /// materialized lazily. If !isDematerializable(), this method is a noop.
H A DModule.h445 /// isDematerializable - Returns true if this GV was loaded from this Module's
447 bool isDematerializable(const GlobalValue *GV) const;
455 /// 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.cpp401 bool Module::isDematerializable(const GlobalValue *GV) const { function in class:Module
403 return Materializer->isDematerializable(GV);
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h208 virtual bool isDematerializable(const GlobalValue *GV) const;
H A DBitcodeReader.cpp2802 bool BitcodeReader::isDematerializable(const GlobalValue *GV) const { function in class:BitcodeReader
2812 if (!F || !isDematerializable(F))

Completed in 91 milliseconds