• Home
  • Raw
  • Download

Lines Matching full:load

190 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which  in Method()
192 : access_flags_(method->access_flags_.load(std::memory_order_acquire)), in Method()
205 … method->pointer_.native_pointer_.load(std::memory_order_relaxed), std::memory_order_relaxed); in Method()
369 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetCompiledEntryPoint()
371 return compiled_entry_point_.load(std::memory_order_acquire); in GetCompiledEntryPoint()
376 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetCompiledEntryPoint()
378 return compiled_entry_point_.load(std::memory_order_acquire); in GetCompiledEntryPoint()
404 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetCompilationStatus()
407 …(access_flags_.load(std::memory_order_acquire) & COMPILATION_STATUS_MASK) >> COMPILATION_STATUS_SH… in GetCompilationStatus()
417 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in SetCompilationStatus()
419 auto result = (access_flags_.load(std::memory_order_acquire) & ~COMPILATION_STATUS_MASK) | in SetCompilationStatus()
428 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in AtomicSetCompilationStatus()
430 uint32_t old_value = access_flags_.load(std::memory_order_acquire); in AtomicSetCompilationStatus()
475 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetAccessFlags()
477 return access_flags_.load(std::memory_order_acquire); in GetAccessFlags()
489 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsStatic()
491 return (access_flags_.load(std::memory_order_acquire) & ACC_STATIC) != 0; in IsStatic()
496 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsNative()
498 return (access_flags_.load(std::memory_order_acquire) & ACC_NATIVE) != 0; in IsNative()
503 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsPublic()
505 return (access_flags_.load(std::memory_order_acquire) & ACC_PUBLIC) != 0; in IsPublic()
510 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsPrivate()
512 return (access_flags_.load(std::memory_order_acquire) & ACC_PRIVATE) != 0; in IsPrivate()
517 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsProtected()
519 return (access_flags_.load(std::memory_order_acquire) & ACC_PROTECTED) != 0; in IsProtected()
524 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsIntrinsic()
526 return (access_flags_.load(std::memory_order_acquire) & ACC_INTRINSIC) != 0; in IsIntrinsic()
531 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsSynthetic()
533 return (access_flags_.load(std::memory_order_acquire) & ACC_SYNTHETIC) != 0; in IsSynthetic()
538 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsAbstract()
540 return (access_flags_.load(std::memory_order_acquire) & ACC_ABSTRACT) != 0; in IsAbstract()
545 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsFinal()
547 return (access_flags_.load(std::memory_order_acquire) & ACC_FINAL) != 0; in IsFinal()
552 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsSynchronized()
554 return (access_flags_.load(std::memory_order_acquire) & ACC_SYNCHRONIZED) != 0; in IsSynchronized()
559 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in HasSingleImplementation()
561 return (access_flags_.load(std::memory_order_acquire) & ACC_SINGLE_IMPL) != 0; in HasSingleImplementation()
567 …ic with acq_rel order reason: data race with access_flags_ with dependecies on reads after the load in SetHasSingleImplementation()
571 …ic with acq_rel order reason: data race with access_flags_ with dependecies on reads after the load in SetHasSingleImplementation()
585 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in SetIntrinsic()
587 ASSERT((access_flags_.load(std::memory_order_acquire) & INTRINSIC_MASK) == 0); in SetIntrinsic()
589 …ith acq_rel order reason: data race with access_flags_ with dependecies on reads after the load and in SetIntrinsic()
597 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in GetIntrinsic()
599 …return static_cast<intrinsics::Intrinsic>((access_flags_.load(std::memory_order_acquire) & INTRINS… in GetIntrinsic()
626 return pointer_.native_pointer_.load(std::memory_order_relaxed); in GetNativePointer()
642 …ith acq_rel order reason: data race with access_flags_ with dependecies on reads after the load and in SetIsDefaultInterfaceMethod()
649 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsDefaultInterfaceMethod()
651 return (access_flags_.load(std::memory_order_acquire) & ACC_DEFAULT_INTERFACE_METHOD) != 0; in IsDefaultInterfaceMethod()
656 …h acquire order reason: data race with access_flags_ with dependecies on reads after the load which in IsConstructor()
658 return (access_flags_.load(std::memory_order_acquire) & ACC_CONSTRUCTOR) != 0; in IsConstructor()
749 … with acquire order reason: data race with profiling_data_ with dependecies on reads after the load in GetProfilingData()
751 return pointer_.profiling_data_.load(std::memory_order_acquire); in GetProfilingData()
756 … with acquire order reason: data race with profiling_data_ with dependecies on reads after the load in GetProfilingDataWithoutCheck()
758 return pointer_.profiling_data_.load(std::memory_order_acquire); in GetProfilingDataWithoutCheck()
766 … with acquire order reason: data race with profiling_data_ with dependecies on reads after the load in GetProfilingData()
768 return pointer_.profiling_data_.load(std::memory_order_acquire); in GetProfilingData()
781 … with acquire order reason: data race with profiling_data_ with dependecies on reads after the load in IsProfilingWithoutLock()
783 return pointer_.profiling_data_.load(std::memory_order_acquire) != nullptr; in IsProfilingWithoutLock()