Searched refs:fn (Results 1 - 4 of 4) sorted by relevance

/art/compiler/llvm/
H A Dintrinsic_helper.cc136 ::llvm::Function *fn = ::llvm::Function::Create(type, local
141 fn->setOnlyReadsMemory();
144 fn->setDoesNotAccessMemory();
147 fn->setDoesNotThrow();
149 intrinsic_funcs_[id] = fn;
151 DCHECK_NE(fn, static_cast< ::llvm::Function*>(NULL)) << "Intrinsic `"
155 for (::llvm::Function::arg_iterator arg_iter = fn->arg_begin(),
156 arg_end = fn->arg_end(); arg_iter != arg_end; arg_iter++) {
161 ::llvm::AttributeSet attribute_set = ::llvm::AttributeSet::get(fn->getContext(),
169 if (!intrinsic_funcs_map_.insert(std::make_pair(fn, i
[all...]
H A Druntime_support_builder.cc46 ::llvm::Function* fn = module_.getFunction(#NAME); \
47 DCHECK(fn != NULL) << "Function not found: " << #NAME; \
48 runtime_support_func_decls_[runtime_support::ID] = fn; \
/art/runtime/interpreter/
H A Dinterpreter.cc236 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
242 jresult = fn(soa.Env(), klass.get());
247 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
251 fn(soa.Env(), klass.get());
254 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
258 result->SetZ(fn(soa.Env(), klass.get()));
261 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
265 result->SetB(fn(soa.Env(), klass.get(), args[0]));
268 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
272 result->SetI(fn(so
275 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
288 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
295 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
304 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
311 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
318 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
329 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
340 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
349 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
365 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
376 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
383 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
397 const fnptr* fn = reinterpret_cast<const fnptr*>(method->GetNativeMethod()); local
[all...]
/art/runtime/
H A Djni_internal.cc586 void* fn = library->FindSymbol(jni_short_name); local
587 if (fn == NULL) {
588 fn = library->FindSymbol(jni_long_name);
590 if (fn != NULL) {
593 return fn;
619 #define CHECK_NON_NULL_ARGUMENT(fn, value) \
621 JniAbortF(#fn, #value " == null"); \
624 #define CHECK_NON_NULL_MEMCPY_ARGUMENT(fn, length, value) \
626 JniAbortF(#fn, #value " == null"); \
1562 #define GET_PRIMITIVE_FIELD(fn, instanc
[all...]

Completed in 1100 milliseconds