OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
UniquePtr<LLVMInfo>
llvm_info_
;
member in class:art::llvm::LlvmCompilationUnit
llvm_compilation_unit.cc
103
llvm_info_
.reset(new LLVMInfo());
104
context_.reset(
llvm_info_
->GetLLVMContext());
105
module_ =
llvm_info_
->GetLLVMModule();
137
::llvm::LLVMContext* llvm_context = context_.release(); // Managed by
llvm_info_
242
fpm.add(CreateGBCExpanderPass(*
llvm_info_
->GetIntrinsicHelper(), *irb_.get(),
246
fpm2.add(CreateGBCExpanderPass(*
llvm_info_
->GetIntrinsicHelper(), *irb_.get(),
/art/compiler/driver/
compiler_driver.h
73
CompilerTls() :
llvm_info_
(NULL) {}
76
void* GetLLVMInfo() { return
llvm_info_
; }
78
void SetLLVMInfo(void* llvm_info) {
llvm_info_
= llvm_info; }
81
void*
llvm_info_
;
member in class:art::CompilerTls
/art/compiler/dex/portable/
mir_to_gbc.h
52
llvm_info_
(llvm_compilation_unit->GetQuickContext()),
175
LLVMInfo*
llvm_info_
;
member in class:art::MirConverter
mir_to_gbc.cc
105
if (
llvm_info_
== NULL) {
108
llvm_info_
= static_cast<LLVMInfo*>(tls->GetLLVMInfo());
109
if (
llvm_info_
== NULL) {
110
llvm_info_
= new LLVMInfo();
111
tls->SetLLVMInfo(
llvm_info_
);
114
context_ =
llvm_info_
->GetLLVMContext();
115
module_ =
llvm_info_
->GetLLVMModule();
116
intrinsic_helper_ =
llvm_info_
->GetIntrinsicHelper();
117
irb_ =
llvm_info_
->GetIRBuilder();
[
all
...]
Completed in 50 milliseconds