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

/freebsd-10-stable/contrib/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;
/freebsd-10-stable/contrib/llvm/lib/IR/
H A DGlobals.cpp33 bool GlobalValue::isDematerializable() const { function in class:GlobalValue
34 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);
/freebsd-10-stable/contrib/llvm/include/llvm/IR/
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.h454 /// isDematerializable - Returns true if this GV was loaded from this Module's
456 bool isDematerializable(const GlobalValue *GV) const;
464 /// materialized lazily. If !isDematerializable(), this method is a noop.
/freebsd-10-stable/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h251 virtual bool isDematerializable(const GlobalValue *GV) const;
H A DBitcodeReader.cpp3095 bool BitcodeReader::isDematerializable(const GlobalValue *GV) const { function in class:BitcodeReader
3105 if (!F || !isDematerializable(F))

Completed in 206 milliseconds