Home
last modified time | relevance | path

Searched refs:source (Results 26 – 50 of 97) sorted by relevance

1234

/art/test/121-modifiers/smali/
DInf.smali19 .source "Inf.java"
DA$C.smali19 .source "Main.java"
DA.smali19 .source "Main.java"
DA$B.smali19 .source "Main.java"
/art/runtime/
Dreflective_value_visitor.h128 explicit ReflectiveHandleScopeSourceInfo(BaseReflectiveHandleScope* source) in ReflectiveHandleScopeSourceInfo() argument
129 : ReflectionSourceInfo(kSourceThreadHandleScope), source_(source) {} in ReflectiveHandleScopeSourceInfo()
/art/tools/class2greylist/test/
DAndroid.bp18 // Only compile source java files in this apk.
/art/compiler/optimizing/
Dcode_generator_arm_vixl.cc537 Location source = instruction_->IsLoadClass() ? out : locations->InAt(0); in EmitNativeCode() local
538 arm_codegen->Move32(LocationFrom(calling_convention.GetRegisterAt(0)), source); in EmitNativeCode()
2492 void CodeGeneratorARMVIXL::Move32(Location destination, Location source) { in Move32() argument
2493 if (source.Equals(destination)) { in Move32()
2497 if (source.IsRegister()) { in Move32()
2498 __ Mov(RegisterFrom(destination), RegisterFrom(source)); in Move32()
2499 } else if (source.IsFpuRegister()) { in Move32()
2500 __ Vmov(RegisterFrom(destination), SRegisterFrom(source)); in Move32()
2505 source.GetStackIndex()); in Move32()
2508 if (source.IsRegister()) { in Move32()
[all …]
Dcode_generator_arm64.h311 virtual void LoadSIMDRegFromStack(Location destination, Location source) = 0;
312 virtual void MoveSIMDRegToSIMDReg(Location destination, Location source) = 0;
313 virtual void MoveToSIMDStackSlot(Location destination, Location source) = 0;
455 void LoadSIMDRegFromStack(Location destination, Location source) override;
456 void MoveSIMDRegToSIMDReg(Location destination, Location source) override;
457 void MoveToSIMDStackSlot(Location destination, Location source) override;
488 void LoadSIMDRegFromStack(Location destination, Location source) override;
489 void MoveSIMDRegToSIMDReg(Location destination, Location source) override;
490 void MoveToSIMDStackSlot(Location destination, Location source) override;
Dcode_generator_arm64.cc334 Location source = instruction_->IsLoadClass() ? out : locations->InAt(0); in EmitNativeCode() local
336 source, in EmitNativeCode()
1464 Location source, in MoveLocation() argument
1466 if (source.Equals(destination)) { in MoveLocation()
1478 HConstant* src_cst = source.IsConstant() ? source.GetConstant() : nullptr; in MoveLocation()
1479 if (source.IsStackSlot() || in MoveLocation()
1496 if (source.IsStackSlot() || source.IsDoubleStackSlot()) { in MoveLocation()
1497 DCHECK(dst.Is64Bits() == source.IsDoubleStackSlot()); in MoveLocation()
1498 __ Ldr(dst, StackOperandFrom(source)); in MoveLocation()
1499 } else if (source.IsSIMDStackSlot()) { in MoveLocation()
[all …]
/art/runtime/interpreter/mterp/
DREADME.txt3 The assembly source code is produced from custom python-based templates.
56 If you change any of the source file fragments, you need to rebuild the
57 combined source files in the "out" directory. Make sure the files in
/art/test/463-checker-boolean-simplifier/smali/
DMain2.smali17 .source "Main2.java"
63 # The original java source of this method:
120 # The original java source of this method:
185 # The original java source of this method:
238 # The original java source of this method:
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md48 …nt at location: 0x00000000 in method LMain;->main([Ljava/lang/String;)V (source: Main.java:13) thr…
53 …nt at location: 0x00000000 in method LMain;->main([Ljava/lang/String;)V (source: Main.java:13) thr…
/art/test/085-old-style-inner-class/jasmin/
DMain$2.j15 .source Main.java
DMain$1.j15 .source Main.java
/art/test/121-modifiers/
Dinfo.txt5 To reproduce, compile the source files. Asm.java needs the ASM libraries (core and tree). Then
/art/compiler/utils/arm/
Dassembler_arm_vixl.cc356 void ArmVIXLAssembler::StoreSToOffset(vixl32::SRegister source, in StoreSToOffset() argument
359 ___ Vstr(source, MemOperand(base, offset)); in StoreSToOffset()
362 void ArmVIXLAssembler::StoreDToOffset(vixl32::DRegister source, in StoreDToOffset() argument
365 ___ Vstr(source, MemOperand(base, offset)); in StoreDToOffset()
/art/test/954-invoke-polymorphic-verifier/smali/
DBadThis.smali16 .source "BadThis.smali"
DMethodHandleToString.smali16 .source "MethodHandleToString.smali"
DNonReference.smali16 .source "NonReference.smali"
DMethodHandleNotInvoke.smali16 .source "MethodHandleNotInvoke.smali"
DVarHandleUnknownAccessor.smali16 .source "VarHandleUnknownAccessor.smali"
DTooFewArguments.smali16 .source "TooFewArguments.smali"
DTooManyArguments.smali16 .source "TooManyArguments.smali"
/art/openjdkjvmti/
Dti_class_definition.cc68 art::MemMap source; in InitializeMemory() local
69 source.swap(temp_mmap_); in InitializeMemory()
71 CHECK(dex_data_mmap_.ReplaceWith(&source, &error)) << "Failed to replace mmap for " in InitializeMemory()
/art/runtime/verifier/
Dverifier_deps.h116 ObjPtr<mirror::Class> source,
267 ObjPtr<mirror::Class> source) const
322 ObjPtr<mirror::Class> source,

1234