HomeSort by relevance Sort by last modified time
    Searched refs:IsNative (Results 1 - 25 of 49) 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 435 if (c->SwizzleCaps->IsNative(inst->U.I.Opcode, *reg)) {
radeon_optimize.c 397 if (!c->SwizzleCaps->IsNative(inst->U.I.Opcode, newsrc) &&
398 c->SwizzleCaps->IsNative(inst->U.I.Opcode, inst->U.I.SrcReg[src]))
573 if (!c->SwizzleCaps->IsNative(inst->U.I.Opcode, src))
r500_fragprog.c 268 .IsNative = r500_swizzle_is_native,
  /art/runtime/interpreter/
shadow_frame.cc 27 } else if (m->IsNative()) {
interpreter.cc 246 DCHECK(!shadow_frame.GetMethod()->IsNative());
395 DCHECK(method->IsNative());
450 if (LIKELY(!method->IsNative())) {
631 if (LIKELY(!shadow_frame->GetMethod()->IsNative())) {
  /art/runtime/
managed_stack.cc 34 if (current_frame->GetMethod()->IsNative()) {
oat_quick_method_header.cc 51 DCHECK(method->IsNative());
70 DCHECK(!method->IsNative());
check_reference_map_visitor.h 37 if (m->IsCalleeSaveMethod() || m->IsNative()) {
41 if (m == nullptr || m->IsNative() || m->IsRuntimeMethod() || IsShadowFrame()) {
native_bridge_art_interface.cc 51 native_method_count += m.IsNative() ? 1u : 0u;
66 if (m.IsNative()) {
art_method.cc 359 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete())
394 CHECK(IsNative()) << PrettyMethod();
409 CHECK(IsNative() && !IsFastNative()) << PrettyMethod();
484 DCHECK(method->IsObsolete() && method->IsNative());
518 DCHECK(method->IsNative()) << "We should only be finding the OatMethod of obsolete methods in "
667 DCHECK(IsNative());
675 DCHECK(IsNative());
684 DCHECK(IsNative()) << PrettyMethod();
691 DCHECK(IsNative());
712 if (IsNative() || !IsInvokable() || IsProxyMethod())
    [all...]
art_method.h 258 bool IsNative() {
463 DCHECK(!IsNative<kWithoutReadBarrier>());
501 DCHECK(!IsNative());
507 DCHECK(IsNative());
516 DCHECK(IsNative());
stack.cc 141 } else if (m->IsNative()) {
596 if (method->IsNative() || method->IsRuntimeMethod() || method->IsProxyMethod()) {
738 DCHECK(method->IsNative());
    [all...]
instrumentation.cc 138 !method->IsNative() &&
158 if ((forced_interpret_only_ || IsDeoptimized(method)) && !method->IsNative()) {
171 !method->IsNative()) {
735 if ((interpreter_stubs_installed_ || IsDeoptimized(method)) && !method->IsNative()) {
    [all...]
cha.cc 97 method->IsNative() ||
419 DCHECK(!method->IsNative()) << "Abstract method cannot be native";
art_method-inl.h 303 return IsNative() ? -2 : -1;
494 if (IsNative<kReadBarrierOption>()) {
quick_exception_handler.cc 102 if (!method->IsNative()) {
341 } else if (method->IsNative()) {
debugger.cc 146 if (method->IsNative()) {
175 if (method->IsNative()) {
    [all...]
method_handles.cc 385 DCHECK(method->IsNative() || method->IsProxyMethod());
448 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
    [all...]
  /art/runtime/openjdkjvmti/
ti_method.cc 103 if (art_method->IsNative()) {
136 if (art_method->IsNative()) {
170 if (art_method->IsNative()) {
283 if (art_method->IsNative()) {
358 if (art_method->IsNative()) {
409 return method->IsNative();
  /art/compiler/driver/
dex_compilation_unit.h 89 bool IsNative() const {
  /art/runtime/jit/
profiling_info.cc 44 DCHECK(!method->IsNative());
  /external/v8/src/
messages.h 68 virtual bool IsNative() = 0;
106 bool IsNative() override;
148 bool IsNative() override { return false; }
    [all...]
  /external/v8/src/builtins/
builtins-callsite.cc 160 CHECK_CALLSITE(recv, "isNative");
163 return isolate->heap()->ToBoolean(it.Frame()->IsNative());

Completed in 726 milliseconds

1 2