• Home
  • Raw
  • Download

Lines Matching refs:Module

37 template class llvm::SymbolTableListTraits<Function, Module>;
38 template class llvm::SymbolTableListTraits<GlobalVariable, Module>;
39 template class llvm::SymbolTableListTraits<GlobalAlias, Module>;
45 Module::Module(StringRef MID, LLVMContext& C) in Module() function in Module
52 Module::~Module() { in ~Module()
64 Module::Endianness Module::getEndianness() const { in getEndianness()
66 Module::Endianness ret = AnyEndianness; in getEndianness()
85 Module::PointerSize Module::getPointerSize() const { in getPointerSize()
87 Module::PointerSize ret = AnyPointerSize; in getPointerSize()
111 GlobalValue *Module::getNamedValue(StringRef Name) const { in getNamedValue()
117 unsigned Module::getMDKindID(StringRef Name) const { in getMDKindID()
124 void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const { in getMDKindNames()
138 Constant *Module::getOrInsertFunction(StringRef Name, in getOrInsertFunction()
171 Constant *Module::getOrInsertTargetIntrinsic(StringRef Name, in getOrInsertTargetIntrinsic()
188 Constant *Module::getOrInsertFunction(StringRef Name, in getOrInsertFunction()
198 Constant *Module::getOrInsertFunction(StringRef Name, in getOrInsertFunction()
217 Constant *Module::getOrInsertFunction(StringRef Name, in getOrInsertFunction()
238 Function *Module::getFunction(StringRef Name) const { in getFunction()
253 GlobalVariable *Module::getGlobalVariable(StringRef Name, in getGlobalVariable()
268 Constant *Module::getOrInsertGlobal(StringRef Name, Type *Ty) { in getOrInsertGlobal()
295 GlobalAlias *Module::getNamedAlias(StringRef Name) const { in getNamedAlias()
302 NamedMDNode *Module::getNamedMetadata(const Twine &Name) const { in getNamedMetadata()
311 NamedMDNode *Module::getOrInsertNamedMetadata(StringRef Name) { in getOrInsertNamedMetadata()
324 void Module::eraseNamedMetadata(NamedMDNode *NMD) { in eraseNamedMetadata()
330 void Module::
348 NamedMDNode *Module::getModuleFlagsMetadata() const { in getModuleFlagsMetadata()
355 NamedMDNode *Module::getOrInsertModuleFlagsMetadata() { in getOrInsertModuleFlagsMetadata()
362 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag()
370 void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, in addModuleFlag()
375 void Module::addModuleFlag(MDNode *Node) { in addModuleFlag()
387 void Module::setMaterializer(GVMaterializer *GVM) { in setMaterializer()
394 bool Module::isMaterializable(const GlobalValue *GV) const { in isMaterializable()
400 bool Module::isDematerializable(const GlobalValue *GV) const { in isDematerializable()
406 bool Module::Materialize(GlobalValue *GV, std::string *ErrInfo) { in Materialize()
412 void Module::Dematerialize(GlobalValue *GV) { in Dematerialize()
417 bool Module::MaterializeAll(std::string *ErrInfo) { in MaterializeAll()
423 bool Module::MaterializeAllPermanently(std::string *ErrInfo) { in MaterializeAllPermanently()
442 void Module::dropAllReferences() { in dropAllReferences()
443 for(Module::iterator I = begin(), E = end(); I != E; ++I) in dropAllReferences()
446 for(Module::global_iterator I = global_begin(), E = global_end(); I != E; ++I) in dropAllReferences()
449 for(Module::alias_iterator I = alias_begin(), E = alias_end(); I != E; ++I) in dropAllReferences()