/art/libelffile/dwarf/ |
D | debug_frame_opcode_writer.h | 53 this->PushUint8(DW_CFA_advance_loc | delta); in AdvancePC() 55 this->PushUint8(DW_CFA_advance_loc1); in AdvancePC() 56 this->PushUint8(delta); in AdvancePC() 58 this->PushUint8(DW_CFA_advance_loc2); in AdvancePC() 59 this->PushUint16(delta); in AdvancePC() 61 this->PushUint8(DW_CFA_advance_loc4); in AdvancePC() 62 this->PushUint32(delta); in AdvancePC() 115 this->PushUint8(DW_CFA_nop); in Nop() 125 this->PushUint8(DW_CFA_offset | reg.num()); in Offset() 126 this->PushUleb128(factored_offset); in Offset() [all …]
|
D | debug_line_opcode_writer.h | 44 this->PushUint8(DW_LNS_copy); in AddRow() 53 this->PushUint8(DW_LNS_advance_pc); in AdvancePC() 54 this->PushUleb128(static_cast<int>(delta)); in AdvancePC() 65 this->PushUint8(DW_LNS_advance_line); in AdvanceLine() 66 this->PushSleb128(delta); in AdvanceLine() 73 this->PushUint8(DW_LNS_set_file); in SetFile() 74 this->PushUleb128(file); in SetFile() 80 this->PushUint8(DW_LNS_set_column); in SetColumn() 81 this->PushUleb128(column); in SetColumn() 86 this->PushUint8(DW_LNS_negate_stmt); in SetIsStmt() [all …]
|
D | debug_info_entry_writer.h | 57 this->UpdateUleb128(abbrev_code_offset_, debug_abbrev_->EndAbbrev(DW_CHILDREN_yes)); in StartTag() 62 abbrev_code_offset_ = this->data()->size(); in StartTag() 63 this->PushUleb128(debug_abbrev_->NextAbbrevCode()); in StartTag() 74 this->UpdateUleb128(abbrev_code_offset_, debug_abbrev_->EndAbbrev(DW_CHILDREN_no)); in EndTag() 80 this->PushUint8(0); in EndTag() 87 patch_locations_.push_back(this->data()->size()); in WriteAddr() 89 this->PushUint64(value); in WriteAddr() 91 this->PushUint32(value); in WriteAddr() 97 this->PushUleb128(num_bytes); in WriteBlock() 98 this->PushData(ptr, num_bytes); in WriteBlock() [all …]
|
D | debug_abbrev_writer.h | 47 this->PushUint8(0); // Add abbrev table terminator. in DebugAbbrevWriter() 73 this->Pop(); // Remove abbrev table terminator. in EndAbbrev() 74 this->PushUleb128(abbrev_code); in EndAbbrev() 75 this->PushData(abbrev.data(), abbrev.size()); in EndAbbrev() 76 this->PushUint8(0); // Attribute list end. in EndAbbrev() 77 this->PushUint8(0); // Attribute list end. in EndAbbrev() 78 this->PushUint8(0); // Add abbrev table terminator. in EndAbbrev()
|
/art/libartbase/base/ |
D | atomic.h | 51 return this->load(std::memory_order_relaxed); in PACKED() 62 this->store(desired_value, std::memory_order_relaxed); in PACKED() 68 return this->compare_exchange_strong(expected_value, desired_value, std::memory_order_seq_cst); in PACKED() 73 return this->compare_exchange_weak(expected_value, desired_value, std::memory_order_seq_cst); in PACKED() 79 return this->compare_exchange_strong(expected_value, desired_value, std::memory_order_relaxed); in PACKED() 86 return this->compare_exchange_strong(expected_value, desired_value, std::memory_order_release); in PACKED() 91 return this->compare_exchange_weak(expected_value, desired_value, std::memory_order_relaxed); in PACKED() 98 return this->compare_exchange_weak(expected_value, desired_value, std::memory_order_acquire); in PACKED() 105 return this->compare_exchange_weak(expected_value, desired_value, std::memory_order_release); in PACKED() 113 ? this->compare_exchange_strong(expected_value, desired_value, memory_order) in PACKED() [all …]
|
D | stride_iterator.h | 47 return !(*this == other); 52 return *this; 56 StrideIterator<T> temp = *this; 57 ++*this; 63 return *this; 67 StrideIterator<T> temp = *this; 68 --*this; 74 return *this; 78 StrideIterator<T> temp = *this; 85 return *this; [all …]
|
D | bit_utils_iterator.h | 48 uint32_t bit = *static_cast<Iter&>(*this); 50 return static_cast<Iter&>(*this); 54 Iter tmp(static_cast<Iter&>(*this)); 55 ++*this; 82 DCHECK_NE(this->bits_, 0u); 83 return CTZ(this->bits_); 93 DCHECK_NE(this->bits_, 0u); 95 return std::numeric_limits<T>::digits - 1u - CLZ(this->bits_);
|
D | bit_struct.h | 129 return Assign(*this, value); 138 return *this = static_cast<T>(other); 142 Assign(*this, static_cast<T>(other)); in BitStructField() 191 return BaseType::Assign(*this, value); 203 *this = Get() + 1u; 204 return *this; 212 *this = Get() - 1u; 213 return *this; 266 name& operator=(const name& other) { _ = other._; return *this; } /* NOLINT */ \
|
/art/openjdkjvmti/include/ |
D | jvmti.h | 1793 return functions->Allocate(this, size, mem_ptr); in Allocate() 1797 return functions->Deallocate(this, mem); in Deallocate() 1802 return functions->GetThreadState(this, thread, thread_state_ptr); in GetThreadState() 1806 return functions->GetCurrentThread(this, thread_ptr); in GetCurrentThread() 1811 return functions->GetAllThreads(this, threads_count_ptr, threads_ptr); in GetAllThreads() 1815 return functions->SuspendThread(this, thread); in SuspendThread() 1821 return functions->SuspendThreadList(this, request_count, request_list, results); in SuspendThreadList() 1825 return functions->ResumeThread(this, thread); in ResumeThread() 1831 return functions->ResumeThreadList(this, request_count, request_list, results); in ResumeThreadList() 1836 return functions->StopThread(this, thread, exception); in StopThread() [all …]
|
/art/test/993-breakpoints/ |
D | expected_cts.txt | 3 Native invoking: public static void art.Test993.breakpoint() args: [this: null] 4 Reflective invoking: public static void art.Test993.breakpoint() args: [this: null] 7 Native invoking: public static void art.Test993.breakpoint() args: [this: null] 9 Reflective invoking: public static void art.Test993.breakpoint() args: [this: null] 15 Native invoking: private static void art.Test993.privateBreakpoint() args: [this: null] 18 Native invoking: private static void art.Test993.privateBreakpoint() args: [this: null] 24 Native invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 25 Reflective invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 28 Native invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 30 Reflective invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] [all …]
|
D | expected-stdout.txt | 3 Native invoking: public static void art.Test993.breakpoint() args: [this: null] 4 Reflective invoking: public static void art.Test993.breakpoint() args: [this: null] 7 Native invoking: public static void art.Test993.breakpoint() args: [this: null] 9 Reflective invoking: public static void art.Test993.breakpoint() args: [this: null] 15 Native invoking: private static void art.Test993.privateBreakpoint() args: [this: null] 18 Native invoking: private static void art.Test993.privateBreakpoint() args: [this: null] 24 Native invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 25 Reflective invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 28 Native invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 30 Reflective invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] [all …]
|
/art/test/993-breakpoints-non-debuggable/ |
D | expected_cts.txt | 3 Native invoking: public static void art.Test993.breakpoint() args: [this: null] 4 Reflective invoking: public static void art.Test993.breakpoint() args: [this: null] 7 Native invoking: public static void art.Test993.breakpoint() args: [this: null] 9 Reflective invoking: public static void art.Test993.breakpoint() args: [this: null] 15 Native invoking: private static void art.Test993.privateBreakpoint() args: [this: null] 18 Native invoking: private static void art.Test993.privateBreakpoint() args: [this: null] 24 Native invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 25 Reflective invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 28 Native invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 30 Reflective invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] [all …]
|
D | expected-stdout.txt | 4 Native invoking: public static void art.Test993.breakpoint() args: [this: null] 5 Reflective invoking: public static void art.Test993.breakpoint() args: [this: null] 8 Native invoking: public static void art.Test993.breakpoint() args: [this: null] 10 Reflective invoking: public static void art.Test993.breakpoint() args: [this: null] 16 Native invoking: private static void art.Test993.privateBreakpoint() args: [this: null] 19 Native invoking: private static void art.Test993.privateBreakpoint() args: [this: null] 25 Native invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 26 Reflective invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 29 Native invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] 31 Reflective invoking: public static void art.Test993$Breakable.iBreakpoint() args: [this: null] [all …]
|
/art/runtime/mirror/ |
D | object-inl.h | 79 return Monitor::GetLockOwnerThreadId(this); in GetLockOwnerThreadId() 83 return Monitor::MonitorEnter(self, this, /*trylock=*/false); in MonitorEnter() 87 return Monitor::MonitorEnter(self, this, /*trylock=*/true); in MonitorTryEnter() 91 return Monitor::MonitorExit(self, this); in MonitorExit() 95 Monitor::Notify(self, this); in Notify() 99 Monitor::NotifyAll(self, this); in NotifyAll() 103 Monitor::Wait(self, this, ms, ns, true, ThreadState::kTimedWaiting); in Wait() 121 Object* obj = const_cast<Object*>(this); in AssertReadBarrierState() 136 DCHECK(GetClass<kVerifyNone>() != nullptr) << "this=" << this; in InstanceOf() 153 return ObjPtr<Class>::DownCast(this); in AsClass() [all …]
|
D | object-refvisitor-inl.h | 36 visitor(this, ClassOffset(), /* is_static= */ false); in VisitReferences() 107 DCHECK(klass != nullptr) << "obj=" << this; in VisitRefsForCompaction() 122 ObjPtr<Class> as_klass = ObjPtr<Class>::DownCast(this); in VisitRefsForCompaction() 128 ObjPtr<ObjectArray<Object>> obj_arr = ObjPtr<ObjectArray<Object>>::DownCast(this); in VisitRefsForCompaction() 137 visitor(this, mirror::Reference::ReferentOffset(), /* is_static= */ false); in VisitRefsForCompaction() 140 ObjPtr<DexCache> const dex_cache = ObjPtr<DexCache>::DownCast(this); in VisitRefsForCompaction() 146 ObjPtr<ClassLoader> const class_loader = ObjPtr<ClassLoader>::DownCast(this); in VisitRefsForCompaction() 156 size = kFetchObjSize ? static_cast<String*>(this)->SizeOf<kSizeOfFlags>() : 0; in VisitRefsForCompaction() 162 ? static_cast<Array*>(this)->SizeOf<kSizeOfFlags, kReadBarrierOption>() in VisitRefsForCompaction() 189 visitor(this, ClassOffset(), /* is_static= */ false); in VisitRefsForCompaction()
|
/art/runtime/gc/space/ |
D | space-inl.h | 33 return down_cast<ImageSpace*>(down_cast<MemMapSpace*>(this)); in AsImageSpace() 39 return down_cast<MallocSpace*>(down_cast<MemMapSpace*>(this)); in AsMallocSpace() 44 return down_cast<LargeObjectSpace*>(this); in AsLargeObjectSpace() 49 return down_cast<ContinuousSpace*>(this); in AsContinuousSpace() 54 return down_cast<DiscontinuousSpace*>(this); in AsDiscontinuousSpace()
|
/art/libdexfile/dex/ |
D | class_iterator.h | 55 return *this; 60 ClassIterator temp = *this; 61 ++*this; 75 return !(*this == rhs); 84 return rhs < *this; 88 return !(rhs < *this); 92 return !(*this < rhs);
|
D | dex_instruction_iterator.h | 133 return *this; 138 DexInstructionIterator temp = *this; 139 ++*this; 177 return *this; 182 return *this; 185 return *this; 190 SafeDexInstructionIterator temp = *this; 191 ++*this;
|
/art/runtime/ |
D | thread-inl.h | 77 DCHECK_EQ(Thread::Current(), this); in CheckSuspend() 101 DCHECK_EQ(self, this); in CheckEmptyCheckpointFromWeakRefAccess() 125 DCHECK_EQ(Thread::Current(), this); in CheckEmptyCheckpointFromMutex() 141 if (kIsDebugBuild && this != Thread::Current()) { in SetState() 144 LOG(FATAL) << "Thread \"" << name << "\"(" << this << " != Thread::Current()=" in SetState() 151 << new_state << " " << *this << " " << *Thread::Current(); in SetState() 175 auto is_suspending_for_user_code = [this]() NO_THREAD_SAFETY_ANALYSIS { in IsThreadSuspensionAllowable() 207 auto is_suspending_for_user_code = [this]() NO_THREAD_SAFETY_ANALYSIS { in AssertThreadSuspensionIsAllowable() 260 PassActiveSuspendBarriers(this); in PassActiveSuspendBarriers() 277 DCHECK_EQ(this, Thread::Current()); in TransitionFromRunnableToSuspended() [all …]
|
D | offsets.h | 42 return *this; 48 return !(*this == o); 54 return !(*this > o); 57 return o < *this; 60 return !(*this < o);
|
/art/runtime/base/ |
D | mutex.h | 200 ALWAYS_INLINE void AssertExclusiveHeld(const Thread* self) const ASSERT_CAPABILITY(this); 201 ALWAYS_INLINE void AssertHeld(const Thread* self) const ASSERT_CAPABILITY(this); 204 void AssertNotHeldExclusive(const Thread* self) ASSERT_CAPABILITY(!*this) { in AssertNotHeldExclusive() 206 CHECK(!IsExclusiveHeld(self)) << *this; in AssertNotHeldExclusive() 209 void AssertNotHeld(const Thread* self) ASSERT_CAPABILITY(!*this) { in AssertNotHeld() 240 const Mutex& operator!() const { return *this; } 355 ALWAYS_INLINE void AssertExclusiveHeld(const Thread* self) const ASSERT_CAPABILITY(this); 356 ALWAYS_INLINE void AssertWriterHeld(const Thread* self) const ASSERT_CAPABILITY(this); 359 void AssertNotExclusiveHeld(const Thread* self) ASSERT_CAPABILITY(!this) { in AssertNotExclusiveHeld() 361 CHECK(!IsExclusiveHeld(self)) << *this; in AssertNotExclusiveHeld() [all …]
|
/art/test/1996-final-override-virtual-structural/ |
D | expected-stdout.txt | 2 super: Hi this: Hi 4 super: Hi this: SALUTATIONS 6 super: Hi and then this: SALUTATIONS
|
/art/libelffile/elf/ |
D | elf_builder.h | 138 owner_->current_section_ = this; in Start() 143 CHECK(owner_->current_section_ == this); in End() 153 CHECK(owner_->current_section_ == this); in GetPosition() 169 CHECK(owner_->current_section_ == this); in WriteFully() 207 sections.push_back(this); in AddSection() 250 this->WriteFully(cache_.data(), cache_.size()); in Write() 256 this->Start(); in WriteCachedSection() 258 this->End(); in WriteCachedSection() 326 this->WriteFully(name.data(), name.length()); in Write() 328 this->WriteFully(&null_terminator, sizeof(null_terminator)); in Write() [all …]
|
/art/libarttools/tools/ |
D | cmdline_builder.h | 63 return *this; in Add() 111 return *this; in AddIfNonEmpty() 121 return *this; in AddRuntimeIfNonEmpty() 129 return *this; in AddIf() 137 return *this; in AddRuntimeIf() 146 return *this; in Concat()
|
/art/test/939-hello-transformation-bcp/ |
D | info.txt | 3 Note this function is reliant on the definition of java.util.OptionalLong not 4 changing. If this classes definition changes we will need to update this class
|