Home
last modified time | relevance | path

Searched defs:CompilationUnit (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/
Dcompiler_ir.h162 struct CompilationUnit { struct
174 CompilerDriver* const compiler_driver;
175 ClassLinker* const class_linker; // Linker to resolve fields and methods.
176 const DexFile* dex_file; // DexFile containing the method being compiled.
177 jobject class_loader; // compiling method's class loader.
178 uint16_t class_def_idx; // compiling method's defining class definition index.
179 uint32_t method_idx; // compiling method's index into method_ids of DexFile.
180 uint32_t access_flags; // compiling method's access flags.
181 InvokeType invoke_type; // compiling method's invocation type.
182 const char* shorty; // compiling method's shorty.
[all …]
Dcompiler_ir.cc29 CompilationUnit::CompilationUnit(ArenaPool* pool, InstructionSet isa, CompilerDriver* driver, in CompilationUnit() function in art::CompilationUnit