HomeSort by relevance Sort by last modified time
    Searched refs:llvm_info_ (Results 1 - 5 of 5) sorted by null

  /art/compiler/llvm/
llvm_compilation_unit.h 79 return llvm_info_.get();
114 std::unique_ptr<LLVMInfo> llvm_info_; member in class:art::llvm::LlvmCompilationUnit
llvm_compilation_unit.cc 102 llvm_info_.reset(new LLVMInfo());
103 context_.reset(llvm_info_->GetLLVMContext());
104 module_ = llvm_info_->GetLLVMModule();
134 ::llvm::LLVMContext* llvm_context = context_.release(); // Managed by llvm_info_
240 fpm.add(CreateGBCExpanderPass(*llvm_info_->GetIntrinsicHelper(), *irb_.get(),
244 fpm2.add(CreateGBCExpanderPass(*llvm_info_->GetIntrinsicHelper(), *irb_.get(),
  /art/compiler/dex/portable/
mir_to_gbc.h 59 llvm_info_(llvm_compilation_unit->GetQuickContext()),
182 LLVMInfo* llvm_info_; member in class:art::MirConverter
mir_to_gbc.cc 122 if (llvm_info_ == NULL) {
125 llvm_info_ = static_cast<LLVMInfo*>(tls->GetLLVMInfo());
126 if (llvm_info_ == NULL) {
127 llvm_info_ = new LLVMInfo();
128 tls->SetLLVMInfo(llvm_info_);
131 context_ = llvm_info_->GetLLVMContext();
132 module_ = llvm_info_->GetLLVMModule();
133 intrinsic_helper_ = llvm_info_->GetIntrinsicHelper();
134 irb_ = llvm_info_->GetIRBuilder();
    [all...]
  /art/compiler/driver/
compiler_driver.h 84 CompilerTls() : llvm_info_(nullptr) {}
87 void* GetLLVMInfo() { return llvm_info_; }
89 void SetLLVMInfo(void* llvm_info) { llvm_info_ = llvm_info; }
92 void* llvm_info_; member in class:art::CompilerTls
    [all...]

Completed in 456 milliseconds