Home
last modified time | relevance | path

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

1234

/art/test/992-source-data/
Dexpected.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 …]
Dinfo.txt1 Tests that we can get the source file of a class from JVMTI.
DAndroid.bp3 name: "art-run-test-992-source-data",
/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.cc297 Location source = instruction_->IsLoadClass() ? out : locations->InAt(0); in EmitNativeCode() local
298 x86_codegen->Move32(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), source); in EmitNativeCode()
1330 void CodeGeneratorX86::Move32(Location destination, Location source) { in Move32() argument
1331 if (source.Equals(destination)) { in Move32()
1335 if (source.IsRegister()) { in Move32()
1336 __ movl(destination.AsRegister<Register>(), source.AsRegister<Register>()); in Move32()
1337 } else if (source.IsFpuRegister()) { in Move32()
1338 __ movd(destination.AsRegister<Register>(), source.AsFpuRegister<XmmRegister>()); in Move32()
1340 DCHECK(source.IsStackSlot()); in Move32()
1341 __ movl(destination.AsRegister<Register>(), Address(ESP, source.GetStackIndex())); in Move32()
[all …]
Dcode_generator_x86_64.cc279 Location source = instruction_->IsLoadClass() ? out : locations->InAt(0); in EmitNativeCode() local
280 x86_64_codegen->Move(Location::RegisterLocation(RAX), source); in EmitNativeCode()
1540 void CodeGeneratorX86_64::Move(Location destination, Location source) { in Move() argument
1541 if (source.Equals(destination)) { in Move()
1546 if (source.IsRegister()) { in Move()
1547 __ movq(dest, source.AsRegister<CpuRegister>()); in Move()
1548 } else if (source.IsFpuRegister()) { in Move()
1549 __ movd(dest, source.AsFpuRegister<XmmRegister>()); in Move()
1550 } else if (source.IsStackSlot()) { in Move()
1551 __ movl(dest, Address(CpuRegister(RSP), source.GetStackIndex())); in Move()
[all …]
/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.h347 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/runtime/verifier/
Dverifier_deps.cc355 ObjPtr<mirror::Class> source) const { in FindOneClassPathBoundaryForInterface()
359 ObjPtr<mirror::Class> current = source; in FindOneClassPathBoundaryForInterface()
382 int32_t iftable_count = source->GetIfTableCount(); in FindOneClassPathBoundaryForInterface()
383 ObjPtr<mirror::IfTable> iftable = source->GetIfTable(); in FindOneClassPathBoundaryForInterface()
410 ObjPtr<mirror::Class> source, in AddAssignability() argument
420 DCHECK(source != nullptr); in AddAssignability()
422 if (destination->IsPrimitive() || source->IsPrimitive()) { in AddAssignability()
429 if (source->IsObjectClass() && !is_assignable) { in AddAssignability()
435 if (destination == source || in AddAssignability()
443 if (destination->IsArrayClass() && source->IsArrayClass()) { in AddAssignability()
[all …]
/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/098-ddmc/
Dexpected.txt2 …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/983-source-transform-verify/
DAndroid.bp3 name: "art-run-test-983-source-transform-verify",
/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.h206 WRegister source,
209 void StoreToOffset(XRegister source, XRegister base, int32_t offset);
210 void StoreSToOffset(SRegister source, XRegister base, int32_t offset);
211 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/test/166-bad-interface-super/smali/
DBadSuper2.smali17 .source "BadSuper2.j"
DBadSuper1.smali17 .source "BadSuper1.j"

1234