Home
last modified time | relevance | path

Searched refs:source (Results 1 – 25 of 247) sorted by relevance

12345678910

/art/test/992-source-data/
Dexpected-stdout.txt2 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 …]
DAndroid.bp3 // 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"],
Dinfo.txt1 Tests that we can get the source file of a class from JVMTI.
/art/libartbase/base/
Dcasts.h89 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 …]
Dmem_map_test.cc171 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 …]
Dmem_map.cc405 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/
Dregister_allocation_resolver.cc129 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 …]
Dregister_allocation_resolver.h69 Location source,
73 Location source,
75 void InsertMoveAfter(HInstruction* instruction, Location source, Location destination) const;
78 Location source,
82 Location source,
85 Location source,
Dparallel_move_resolver.cc108 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 …]
Dcode_generator_x86.cc304 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 …]
Dcode_generator_x86_64.cc286 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/
DAndroid.bp3 // 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/
Dhidden_api.h55 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()
Dflow_analysis.h52 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/
Dchainagents.cc56 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/
Ddex_cache-inl.h314 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/
Dverifier_deps.cc195 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 …]
Dverifier_deps.h96 ObjPtr<mirror::Class> source)
106 const RegType& source)
214 ObjPtr<mirror::Class> source)
220 const RegType& source)
/art/test/021-string2/src/junit/framework/
DComparisonCompactor.java39 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/
DComparisonCompactor.java39 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/
DREADME.atest.md4 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/
DSmaliTests2.smali32 # 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/
Djni_macro_assembler_arm64.h203 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);
Djni_macro_assembler_arm64.cc103 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/
Dvdex_file.cc474 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()

12345678910