HomeSort by relevance Sort by last modified time
    Searched refs:IsNative (Results 1 - 25 of 37) sorted by null

1 2

  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_swizzle.h 48 int (*IsNative)(rc_opcode opcode, struct rc_src_register reg);
r300_fragprog_swizzle.c 93 * struct radeon_compiler *c; c->SwizzleCaps->IsNative().
197 .IsNative = r300_swizzle_is_native,
radeon_dataflow_swizzles.c 99 if (!c->SwizzleCaps->IsNative(inst->U.I.Opcode, inst->U.I.SrcReg[src]))
radeon_optimize.c 380 if (!c->SwizzleCaps->IsNative(inst->U.I.Opcode, newsrc) &&
381 c->SwizzleCaps->IsNative(inst->U.I.Opcode, inst->U.I.SrcReg[src]))
556 if (!c->SwizzleCaps->IsNative(inst->U.I.Opcode, src))
r500_fragprog.c 268 .IsNative = r500_swizzle_is_native,
  /art/runtime/
oat_quick_method_header.cc 50 DCHECK(method->IsNative());
69 DCHECK(!method->IsNative());
check_reference_map_visitor.h 36 if (m->IsCalleeSaveMethod() || m->IsNative()) {
40 if (m == nullptr || m->IsNative() || m->IsRuntimeMethod() || IsShadowFrame()) {
native_bridge_art_interface.cc 49 native_method_count += m.IsNative() ? 1u : 0u;
64 if (m.IsNative()) {
art_method.cc 316 CHECK(IsNative()) << PrettyMethod(this);
326 CHECK(IsNative() && !IsFastNative()) << PrettyMethod(this);
433 DCHECK(IsNative());
439 DCHECK(IsNative());
448 DCHECK(IsNative()) << PrettyMethod(this);
455 DCHECK(IsNative());
493 if (!src->IsNative()) {
instrumentation.cc 112 !method->IsNative() &&
132 if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) {
144 !method->IsNative()) {
695 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) {
760 CHECK(!method->IsNative());
783 CHECK(!method->IsNative());
    [all...]
stack.cc 47 } else if (m->IsNative()) {
72 if (current_frame->GetMethod()->IsNative()) {
180 } else if (m->IsNative()) {
619 if (method->IsNative() || method->IsRuntimeMethod() || method->IsProxyMethod()) {
755 DCHECK(method->IsNative());
    [all...]
art_method-inl.h 339 return IsNative() ? -2 : -1;
460 // that this check also ensures the IsNative call can be made, as IsNative expects a fully
466 if (!IsNative() && !IsRuntimeMethod()) {
498 if (IsNative<kReadBarrierOption>()) {
art_method.h 326 bool IsNative() {
536 DCHECK(IsNative());
quick_exception_handler.cc 100 if (!method->IsNative()) {
326 } else if (method->IsNative()) {
debugger.cc 145 if (method->IsNative()) {
171 if (method->IsNative()) {
583 !m.IsNative() &&
    [all...]
  /art/compiler/driver/
dex_compilation_unit.h 89 bool IsNative() const {
  /art/runtime/jit/
profiling_info.cc 31 DCHECK(!method->IsNative());
jit.cc 597 if (method->IsClassInitializer() || method->IsNative() || !method->IsCompilable()) {
profile_saver.cc 207 if (!method.IsNative()) {
  /art/runtime/interpreter/
interpreter.cc 274 DCHECK(!shadow_frame.GetMethod()->IsNative());
413 DCHECK(method->IsNative());
467 if (LIKELY(!method->IsNative())) {
646 if (LIKELY(!shadow_frame->GetMethod()->IsNative())) {
  /external/v8/src/
messages.h 60 bool IsNative();
    [all...]
messages.cc 293 bool CallSite::IsNative() {
  /art/imgdiag/
imgdiag.cc 737 os << " isNative? " << (art_method->IsNative() ? "yes" : "no") << ", ";
    [all...]
  /art/compiler/
image_writer.cc 612 if (m->IsNative()) {
    [all...]
  /external/v8/src/runtime/
runtime-internal.cc 355 CALLSITE_GET(IsNative, ReturnBoolean)

Completed in 295 milliseconds

1 2