/art/test/992-source-data/ |
D | expected-stdout.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 | Android.bp | 3 // Build rules for ART run-test `992-source-data`. 16 name: "art-run-test-992-source-data", 21 ":art-run-test-992-source-data-expected-stdout", 22 ":art-run-test-992-source-data-expected-stderr", 28 name: "art-run-test-992-source-data-expected-stdout", 29 out: ["art-run-test-992-source-data-expected-stdout.txt"], 36 name: "art-run-test-992-source-data-expected-stderr", 37 out: ["art-run-test-992-source-data-expected-stderr.txt"],
|
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 …]
|
D | code_generator_x86.cc | 304 Location source = instruction_->IsLoadClass() ? out : locations->InAt(0); in EmitNativeCode() local 305 x86_codegen->Move32(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), source); in EmitNativeCode() 1353 void CodeGeneratorX86::Move32(Location destination, Location source) { in Move32() argument 1354 if (source.Equals(destination)) { in Move32() 1358 if (source.IsRegister()) { in Move32() 1359 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>()); in Move32() 1360 } else if (source.IsFpuRegister()) { in Move32() 1361 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>()); in Move32() 1362 } else if (source.IsConstant()) { in Move32() 1363 int32_t value = GetInt32ValueOf(source.GetConstant()); in Move32() [all …]
|
D | code_generator_x86_64.cc | 286 Location source = instruction_->IsLoadClass() ? out : locations->InAt(0); in EmitNativeCode() local 287 x86_64_codegen->Move(Location::RegisterLocation(RAX), source); in EmitNativeCode() 1613 void CodeGeneratorX86_64::Move(Location destination, Location source) { in Move() argument 1614 if (source.Equals(destination)) { in Move() 1619 if (source.IsRegister()) { in Move() 1620 __ movq(dest, source.AsRegister<CpuRegister>()); in Move() 1621 } else if (source.IsFpuRegister()) { in Move() 1622 __ movd(dest, source.AsFpuRegister<XmmRegister>()); in Move() 1623 } else if (source.IsStackSlot()) { in Move() 1624 __ movl(dest, Address(CpuRegister(RSP), source.GetStackIndex())); in Move() [all …]
|
/art/test/983-source-transform-verify/ |
D | Android.bp | 3 // Build rules for ART run-test `983-source-transform-verify`. 16 name: "art-run-test-983-source-transform-verify", 21 ":art-run-test-983-source-transform-verify-expected-stdout", 22 ":art-run-test-983-source-transform-verify-expected-stderr", 28 name: "art-run-test-983-source-transform-verify-expected-stdout", 29 out: ["art-run-test-983-source-transform-verify-expected-stdout.txt"], 36 name: "art-run-test-983-source-transform-verify-expected-stderr", 37 out: ["art-run-test-983-source-transform-verify-expected-stderr.txt"],
|
/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 | 314 DexCachePair<T> source = pairs[i].load(std::memory_order_relaxed); in VisitDexCachePairs() local 320 T* const before = source.object.template Read<kReadBarrierOption>(); in VisitDexCachePairs() 321 visitor.VisitRootIfNonNull(source.object.AddressWithoutBarrier()); in VisitDexCachePairs() 322 if (source.object.template Read<kReadBarrierOption>() != before) { in VisitDexCachePairs() 323 pairs[i].store(source, std::memory_order_relaxed); in VisitDexCachePairs() 366 StringDexCachePair source = src[i].load(std::memory_order_relaxed); in FixupStrings() local 367 String* ptr = source.object.Read<kReadBarrierOption>(); in FixupStrings() 369 source.object = GcRoot<String>(new_source); in FixupStrings() 370 dest[i].store(source, std::memory_order_relaxed); in FixupStrings() 378 TypeDexCachePair source = src[i].load(std::memory_order_relaxed); in FixupResolvedTypes() local [all …]
|
/art/runtime/verifier/ |
D | verifier_deps.cc | 195 ObjPtr<mirror::Class> source) { in AddAssignability() argument 203 DCHECK(source != nullptr); in AddAssignability() 205 if (destination->IsPrimitive() || source->IsPrimitive()) { in AddAssignability() 212 if (destination == source || destination->IsObjectClass()) { in AddAssignability() 217 if (destination->IsArrayClass() && source->IsArrayClass()) { in AddAssignability() 222 ObjPtr<mirror::Class> source_component = source->GetComponentType(); in AddAssignability() 243 dex::StringIndex source_id = GetClassDescriptorStringId(dex_file, source); in AddAssignability() 252 const RegType& source) { in AddAssignability() argument 262 if (source.IsUnresolvedReference() || source.HasClass()) { in AddAssignability() 266 dex::StringIndex source_id = GetIdFromString(dex_file, std::string(source.GetDescriptor())); in AddAssignability() [all …]
|
D | verifier_deps.h | 96 ObjPtr<mirror::Class> source) 106 const RegType& source) 214 ObjPtr<mirror::Class> source) 220 const RegType& source)
|
/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/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/ |
D | README.atest.md | 4 Federation](https://source.android.com/devices/tech/test_infra/tradefed) 6 [Atest](https://source.android.com/compatibility/tests/development/atest) 70 1. builds the Testing ART APEX from the Android source tree (including the ART 111 1. builds the Testing ART APEX from the Android source tree (including the ART 123 Mapping](https://source.android.com/compatibility/tests/development/test-mapping). 134 command from the Android source tree top-level directory: 141 groups](https://source.android.com/compatibility/tests/development/test-mapping#defining_test_group…
|
/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/compiler/utils/arm64/ |
D | jni_macro_assembler_arm64.h | 203 WRegister source, 206 void StoreToOffset(XRegister source, XRegister base, int32_t offset); 207 void StoreSToOffset(SRegister source, XRegister base, int32_t offset); 208 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/runtime/ |
D | vdex_file.cc | 474 MutableHandle<mirror::Class> source(hs.NewHandle<mirror::Class>(nullptr)); in ComputeClassStatus() local 500 source.Assign(FindClassAndClearException(class_linker, self, source_desc, class_loader)); in ComputeClassStatus() 502 if (destination == nullptr || source == nullptr) { in ComputeClassStatus() 507 DCHECK(destination->IsResolved() && source->IsResolved()); in ComputeClassStatus() 508 if (!destination->IsAssignableFrom(source.Get())) { in ComputeClassStatus()
|