/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() 113 this->PushUint8(DW_CFA_nop); in Nop() 123 this->PushUint8(DW_CFA_offset | reg.num()); in Offset() 124 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 | 126 return Assign(*this, value); 135 return *this = static_cast<T>(other); 139 Assign(*this, static_cast<T>(other)); in BitStructField() 210 return BaseType::Assign(*this, value); 222 *this = Get() + 1u; 223 return *this; 231 *this = Get() - 1u; 232 return *this; 281 name& operator=(const name& other) { _ = other._; return *this; } /* NOLINT */ \
|
D | bit_string.h | 74 return !(*this == storage); 84 return !(*this == other); 90 DCHECK_LE(storage, MaximumValue().data_ - data_) << "Addition would overflow " << *this; 211 BitStringChar bc = (*this)[i]; in Length() 244 return !(*this == other); 249 return (*this) == BitString{}; in IsEmpty() 257 BitString copy = *this; in Truncate()
|
/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/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, 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 …]
|
/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/test/993-breakpoints/ |
D | expected.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/runtime/ |
D | thread-inl.h | 42 DCHECK_EQ(Thread::Current(), this); in AllowThreadSuspension() 52 DCHECK_EQ(Thread::Current(), this); in CheckSuspend() 68 DCHECK_EQ(self, this); in CheckEmptyCheckpointFromWeakRefAccess() 92 DCHECK_EQ(Thread::Current(), this); in CheckEmptyCheckpointFromMutex() 108 if (kIsDebugBuild && this != Thread::Current()) { in SetState() 111 LOG(FATAL) << "Thread \"" << name << "\"(" << this << " != Thread::Current()=" in SetState() 134 auto is_suspending_for_user_code = [this]() NO_THREAD_SAFETY_ANALYSIS { in IsThreadSuspensionAllowable() 166 auto is_suspending_for_user_code = [this]() NO_THREAD_SAFETY_ANALYSIS { in AssertThreadSuspensionIsAllowable() 220 PassActiveSuspendBarriers(this); in PassActiveSuspendBarriers() 231 DCHECK_EQ(this, Thread::Current()); in TransitionFromRunnableToSuspended() [all …]
|
D | art_method-inl.h | 52 GcRootSource gc_root_source(this); in GetDeclaringClassUnchecked() 61 CHECK(result != nullptr) << this; in GetDeclaringClass() 63 CHECK(result == nullptr) << this; in GetDeclaringClass() 93 Runtime::Current()->GetClassLinker()->LookupResolvedType(type_idx, this); in LookupResolvedClassFromTypeIndex() 99 ObjPtr<mirror::Class> type = Runtime::Current()->GetClassLinker()->ResolveType(type_idx, this); in ResolveClassFromTypeIndex() 136 if (this == runtime->GetCalleeSaveMethod(CalleeSaveType(i))) { in IsCalleeSaveMethod() 145 bool result = this == Runtime::Current()->GetResolutionMethod(); in IsResolutionMethod() 152 bool result = this == Runtime::Current()->GetImtUnimplementedMethod(); in IsImtUnimplementedMethod() 220 return Runtime::Current()->GetClassLinker()->ResolveString(method_id.name_idx_, this); in ResolveNameString() 237 return annotations::GetLineNumFromPC(GetDexFile(), this, dex_pc); in GetLineNumFromDexPC() [all …]
|
/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/base/ |
D | mutex.h | 185 ALWAYS_INLINE void AssertExclusiveHeld(const Thread* self) const ASSERT_CAPABILITY(this); 186 ALWAYS_INLINE void AssertHeld(const Thread* self) const ASSERT_CAPABILITY(this); 189 void AssertNotHeldExclusive(const Thread* self) ASSERT_CAPABILITY(!*this) { in AssertNotHeldExclusive() 191 CHECK(!IsExclusiveHeld(self)) << *this; in AssertNotHeldExclusive() 194 void AssertNotHeld(const Thread* self) ASSERT_CAPABILITY(!*this) { in AssertNotHeld() 211 const Mutex& operator!() const { return *this; } 310 ALWAYS_INLINE void AssertExclusiveHeld(const Thread* self) const ASSERT_CAPABILITY(this); 311 ALWAYS_INLINE void AssertWriterHeld(const Thread* self) const ASSERT_CAPABILITY(this); 314 void AssertNotExclusiveHeld(const Thread* self) ASSERT_CAPABILITY(!this) { in AssertNotExclusiveHeld() 316 CHECK(!IsExclusiveHeld(self)) << *this; in AssertNotExclusiveHeld() [all …]
|
D | mutex-inl.h | 119 } else if (this == Locks::mutator_lock_ && self->GetHeldMutex(kTopLockLevel) != nullptr) { in RegisterAsLocked() 151 self->SetHeldMutex(level, this); in RegisterAsLocked() 162 if (UNLIKELY(level == kThreadWaitLock) && self->GetHeldMutex(kThreadWaitWakeLock) == this) { in RegisterAsUnlocked() 169 CHECK(self->GetHeldMutex(level) == this) << "Unlocking on unacquired mutex: " << name_; in RegisterAsUnlocked() 233 if (level_ == kThreadWaitLock && self->GetHeldMutex(kThreadWaitLock) != this) { in IsExclusiveHeld() 234 CHECK_EQ(self->GetHeldMutex(kThreadWaitWakeLock), this); in IsExclusiveHeld() 236 CHECK_EQ(self->GetHeldMutex(level_), this); in IsExclusiveHeld() 249 CHECK(IsExclusiveHeld(self)) << *this; in AssertExclusiveHeld() 263 CHECK_EQ(self->GetHeldMutex(level_), this); in IsExclusiveHeld() 286 CHECK(IsExclusiveHeld(self)) << *this; in AssertExclusiveHeld()
|
/art/ |
D | .vpython | 7 # When vpython is invoked, it finds this file and builds a python VirtualEnv, 8 # containing all of the dependencies described in this file, fetching them from 10 # this never requires the end-user machine to have a working python extension 14 # All python scripts in the repo share this same spec, to avoid dependency 18 # in this repo by running them as you normally would run them, except 22 # Read more about `vpython` and how to modify this file here:
|
/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() 321 this->WriteFully(name.c_str(), name.length() + 1); in Write() 389 this->header_.sh_info = locals_end - syms_.begin(); // Required by the spec. in WriteCachedSection() [all …]
|
/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
|
/art/dt_fd_forward/ |
D | README.md | 10 When this transport begins listening or attaching it will send the 13 When this transport stops listening for connections it will send the 16 When this transport has successfully received fds from the proxy it sends the 19 When this transport has closed its copies of the fds it will send the proxy the 22 When this transport accepts or attaches to a connection it will read from the 31 This transport implements no optional capabilities, though this may change in
|
/art/test/435-new-instance/smali/ |
D | instance.smali | 5 # you may not use this file except in compliance with the License. 29 # intentionally return v4 ("this") 37 # intentionally return v4 ("this") 45 # intentionally return v4 ("this") 53 # intentionally return v4 ("this")
|
/art/test/800-smali/smali/ |
D | b_22331663_fail.smali | 14 # At this point, v4 is the merge of Undefined and ReferenceType. The verifier should 15 # reject any use of this, even a copy. Previously this was a conflict. Conflicts must
|