Lines Matching full:module
43 #include "llvm/IR/Module.h"
70 void LLVMModuleAssembler::AssembleStubModule(StubModule *module) in AssembleStubModule() argument
82 module->SetStubEntry(i, stubEntry - codeBuff); in AssembleStubModule()
94 module->SetHostCodeSectionAddr(codeBuff); in AssembleStubModule()
96 module->SetStackMapAddr(reinterpret_cast<uintptr_t>(assembler_.GetStackMapsSection())); in AssembleStubModule()
97 module->SetStackMapSize(assembler_.GetStackMapsSize()); in AssembleStubModule()
219 …// pass manager creation:rs4gc pass is the only pass in modPass, other opt module-based pass are i… in BuildAndRunPasses()
229 // run module pass, function pass, module pass1 in BuildAndRunPasses()
246 LLVMAssembler::LLVMAssembler(LLVMModuleRef module) in LLVMAssembler() argument
247 : module_(module) in LLVMAssembler()
274 COMPILER_LOG(INFO) << "Current Module: " << info; in Run()