/art/test/992-source-data/ |
D | expected.txt | 2 class art.Test992 does not have a known source file extension because java.lang.RuntimeException: J… 4 class art.Test992$Target1 does not have a known source file extension because java.lang.RuntimeExce… 6 class art.Target2 does not have a known source file extension because java.lang.RuntimeException: J… 7 int does not have a known source file because java.lang.RuntimeException: JVMTI_ERROR_ABSENT_INFORM… 8 int does not have a known source file extension because java.lang.RuntimeException: JVMTI_ERROR_ABS… 10 class java.lang.Integer does not have a known source file extension because java.lang.RuntimeExcept… 12 class java.lang.Object does not have a known source file extension because java.lang.RuntimeExcepti… 14 interface java.lang.Runnable does not have a known source file extension because java.lang.RuntimeE… 15 class [Ljava.lang.Object; does not have a known source file because java.lang.RuntimeException: JVM… 16 class [Ljava.lang.Object; does not have a known source file extension because java.lang.RuntimeExce… [all …]
|
D | info.txt | 1 Tests that we can get the source file of a class from JVMTI.
|
/art/libartbase/base/ |
D | casts.h | 89 inline Dest bit_cast(const Source& source) { in bit_cast() argument 94 memcpy(&dest, &source, sizeof(dest)); in bit_cast() 101 constexpr Dest dchecked_integral_cast(Source source) { in dchecked_integral_cast() argument 106 source >= static_cast<Source>(std::numeric_limits<Dest>::min())) && in dchecked_integral_cast() 110 source <= static_cast<Source>(std::numeric_limits<Dest>::max()))) in dchecked_integral_cast() 111 << "dchecked_integral_cast failed for " << source in dchecked_integral_cast() 112 << " (would be " << static_cast<Dest>(source) << ")"; in dchecked_integral_cast() 114 return static_cast<Dest>(source); in dchecked_integral_cast() 148 inline Dest reinterpret_cast64(Source source) { in reinterpret_cast64() argument 154 DCHECK_EQ(static_cast<Source>(static_cast<uintptr_t>(source)), source); in reinterpret_cast64() [all …]
|
D | mem_map_test.cc | 171 MemMap source = MemMap::MapAnonymous("MapAnonymous-atomic-replace-source", in TEST_F() local 176 ASSERT_TRUE(source.IsValid()); in TEST_F() 177 void* source_addr = source.Begin(); in TEST_F() 183 memcpy(source.Begin(), data.data(), data.size()); in TEST_F() 185 ASSERT_TRUE(dest.ReplaceWith(&source, &error_msg)) << error_msg; in TEST_F() 189 ASSERT_FALSE(source.IsValid()); in TEST_F() 208 MemMap source = MemMap::MapAnonymous("MapAnonymous-atomic-replace-source", in TEST_F() local 213 ASSERT_TRUE(source.IsValid()); in TEST_F() 214 uint8_t* source_addr = source.Begin(); in TEST_F() 220 memcpy(source.Begin(), data.data(), data.size()); in TEST_F() [all …]
|
D | mem_map.cc | 405 bool MemMap::ReplaceWith(MemMap* source, /*out*/std::string* error) { in ReplaceWith() argument 407 UNUSED(source); in ReplaceWith() 411 CHECK(source != nullptr); in ReplaceWith() 412 CHECK(source->IsValid()); in ReplaceWith() 418 if (source->reuse_ || reuse_) { in ReplaceWith() 423 if (source->redzone_size_ != 0 || redzone_size_ != 0) { in ReplaceWith() 428 if (PointerDiff(BaseBegin(), Begin()) != PointerDiff(source->BaseBegin(), source->Begin())) { in ReplaceWith() 435 if (source->BaseBegin() > BaseBegin() && in ReplaceWith() 436 reinterpret_cast<uint8_t*>(BaseBegin()) + source->BaseSize() > in ReplaceWith() 437 reinterpret_cast<uint8_t*>(source->BaseBegin())) { in ReplaceWith() [all …]
|
/art/compiler/optimizing/ |
D | register_allocation_resolver.cc | 129 Location source = current->ToLocation(); in Resolve() local 134 locations->SetInAt(0, source); in Resolve() 136 DCHECK(locations->InAt(0).Equals(source)); in Resolve() 139 locations->UpdateOut(source); in Resolve() 141 DCHECK(source.Equals(location)); in Resolve() 192 Location source = input->GetLiveInterval()->GetLocationAt( in Resolve() local 195 InsertParallelMoveAtExitOf(predecessor, phi, source, destination); in Resolve() 241 Location source = current->ToLocation(); in UpdateSafepointLiveRegisters() local 247 switch (source.GetKind()) { in UpdateSafepointLiveRegisters() 250 locations->AddLiveRegister(source); in UpdateSafepointLiveRegisters() [all …]
|
D | register_allocation_resolver.h | 69 Location source, 73 Location source, 75 void InsertMoveAfter(HInstruction* instruction, Location source, Location destination) const; 78 Location source, 82 Location source, 85 Location source,
|
D | parallel_move_resolver.cc | 108 Location source = move->GetSource(); in UpdateSourceOf() local 109 if (LowOf(updated_location).Equals(source)) { in UpdateSourceOf() 111 } else if (HighOf(updated_location).Equals(source)) { in UpdateSourceOf() 114 DCHECK(updated_location.Equals(source)) << updated_location << " " << source; in UpdateSourceOf() 220 Location source = move->GetSource(); in PerformMove() local 224 if (other_move->Blocks(source)) { in PerformMove() 225 UpdateSourceOf(other_move, source, swap_destination); in PerformMove() 227 UpdateSourceOf(other_move, swap_destination, source); in PerformMove() 330 Location source = move->GetSource(); in EmitNativeCode() local 341 UpdateMoveSource(source, destination); in EmitNativeCode() [all …]
|
/art/tools/veridex/ |
D | hidden_api.h | 55 void AddSignatureSource(const std::string &signature, SignatureSource source) { in AddSignatureSource() argument 59 source_[type] = source; in AddSignatureSource() 60 } else if (it->second != source) { in AddSignatureSource() 62 if (source == SignatureSource::BOOT) { in AddSignatureSource() 64 it->second = source; in AddSignatureSource()
|
D | flow_analysis.h | 52 RegisterValue(RegisterSource source, DexFileReference reference, const VeriClass* type) in RegisterValue() argument 53 : source_(source), value_(0), reference_(reference), type_(type) {} in RegisterValue() 55 RegisterValue(RegisterSource source, in RegisterValue() argument 59 : source_(source), value_(value), reference_(reference), type_(type) {} in RegisterValue()
|
/art/tools/jvmti-agents/chain-agents/ |
D | chainagents.cc | 56 static std::pair<std::string, std::string> Split(std::string source, char delim) { in Split() argument 57 std::string first(source.substr(0, source.find(delim))); in Split() 58 if (source.find(delim) == std::string::npos) { in Split() 61 return std::pair(first, source.substr(source.find(delim) + 1)); in Split()
|
/art/runtime/mirror/ |
D | dex_cache-inl.h | 347 DexCachePair<T> source = pairs[i].load(std::memory_order_relaxed); in VisitDexCachePairs() local 353 T* const before = source.object.template Read<kReadBarrierOption>(); in VisitDexCachePairs() 354 visitor.VisitRootIfNonNull(source.object.AddressWithoutBarrier()); in VisitDexCachePairs() 355 if (source.object.template Read<kReadBarrierOption>() != before) { in VisitDexCachePairs() 356 pairs[i].store(source, std::memory_order_relaxed); in VisitDexCachePairs() 399 StringDexCachePair source = src[i].load(std::memory_order_relaxed); in FixupStrings() local 400 String* ptr = source.object.Read<kReadBarrierOption>(); in FixupStrings() 402 source.object = GcRoot<String>(new_source); in FixupStrings() 403 dest[i].store(source, std::memory_order_relaxed); in FixupStrings() 411 TypeDexCachePair source = src[i].load(std::memory_order_relaxed); in FixupResolvedTypes() local [all …]
|
/art/test/082-inline-execute/src/junit/framework/ |
D | ComparisonCompactor.java | 39 private String compactString(String source) { in compactString() argument 40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END; in compactString()
|
/art/test/021-string2/src/junit/framework/ |
D | ComparisonCompactor.java | 39 private String compactString(String source) { in compactString() argument 40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END; in compactString()
|
/art/runtime/verifier/ |
D | verifier_deps.cc | 358 ObjPtr<mirror::Class> source) const { in FindOneClassPathBoundaryForInterface() 362 ObjPtr<mirror::Class> current = source; in FindOneClassPathBoundaryForInterface() 385 int32_t iftable_count = source->GetIfTableCount(); in FindOneClassPathBoundaryForInterface() 386 ObjPtr<mirror::IfTable> iftable = source->GetIfTable(); in FindOneClassPathBoundaryForInterface() 413 ObjPtr<mirror::Class> source, in AddAssignability() argument 423 DCHECK(source != nullptr); in AddAssignability() 425 if (destination->IsPrimitive() || source->IsPrimitive()) { in AddAssignability() 432 if (source->IsObjectClass() && !is_assignable) { in AddAssignability() 438 if (destination == source || in AddAssignability() 446 if (destination->IsArrayClass() && source->IsArrayClass()) { in AddAssignability() [all …]
|
/art/test/098-ddmc/ |
D | expected.txt | 2 …mber of class name strings: 0 number of method name strings: 0 number of source file name strings:… 14 …mber of class name strings: 0 number of method name strings: 0 number of source file name strings:… 23 …mber of class name strings: 0 number of method name strings: 0 number of source file name strings:…
|
/art/test/458-checker-instruct-simplification/smali/ |
D | SmaliTests2.smali | 32 # Original java source: 64 # Original java source: 103 # Original java source: 125 # Original java source: 182 # Original java source: 221 # Original java source 242 # Original java source 271 # Original java source
|
/art/test/530-checker-lse/smali/ |
D | Main.smali | 17 .source "Main.java" 36 # Original java source: 87 # Original java source: 140 # Original java source: 181 # Original java source: 256 # Original java source:
|
/art/compiler/utils/arm64/ |
D | jni_macro_assembler_arm64.h | 210 WRegister source, 213 void StoreToOffset(XRegister source, XRegister base, int32_t offset); 214 void StoreSToOffset(SRegister source, XRegister base, int32_t offset); 215 void StoreDToOffset(DRegister source, XRegister base, int32_t offset);
|
D | jni_macro_assembler_arm64.cc | 103 WRegister source, in StoreWToOffset() argument 108 ___ Strb(reg_w(source), MEM_OP(reg_x(base), offset)); in StoreWToOffset() 111 ___ Strh(reg_w(source), MEM_OP(reg_x(base), offset)); in StoreWToOffset() 114 ___ Str(reg_w(source), MEM_OP(reg_x(base), offset)); in StoreWToOffset() 121 void Arm64JNIMacroAssembler::StoreToOffset(XRegister source, XRegister base, int32_t offset) { in StoreToOffset() argument 122 CHECK_NE(source, SP); in StoreToOffset() 123 ___ Str(reg_x(source), MEM_OP(reg_x(base), offset)); in StoreToOffset() 126 void Arm64JNIMacroAssembler::StoreSToOffset(SRegister source, XRegister base, int32_t offset) { in StoreSToOffset() argument 127 ___ Str(reg_s(source), MEM_OP(reg_x(base), offset)); in StoreSToOffset() 130 void Arm64JNIMacroAssembler::StoreDToOffset(DRegister source, XRegister base, int32_t offset) { in StoreDToOffset() argument [all …]
|
/art/test/166-bad-interface-super/smali/ |
D | BadSuper1.smali | 17 .source "BadSuper1.j"
|
D | BadSuper2.smali | 17 .source "BadSuper2.j"
|
/art/test/121-modifiers/smali/ |
D | Inf.smali | 19 .source "Inf.java"
|
/art/runtime/ |
D | reflective_value_visitor.h | 128 explicit ReflectiveHandleScopeSourceInfo(BaseReflectiveHandleScope* source) in ReflectiveHandleScopeSourceInfo() argument 129 : ReflectionSourceInfo(kSourceThreadHandleScope), source_(source) {} in ReflectiveHandleScopeSourceInfo()
|
/art/tools/class2greylist/test/ |
D | Android.bp | 18 // Only compile source java files in this apk.
|