Searched refs:loc (Results 76 - 92 of 92) sorted by relevance

1234

/art/tools/dexfuzz/src/dexfuzz/program/
H A DCodeTranslator.java78 int loc = 0;
95 insnLocationMap.put(loc, mInsn);
101 mInsn.location = loc;
104 loc += mInsn.insn.getSize();
151 int loc = 0;
155 if ((loc % 2) != 0) {
156 loc++;
159 if (mInsn.location != loc) {
161 mInsn, loc));
164 loc
[all...]
H A DMutatableCode.java119 int loc = 0;
121 mInsn.location = loc;
122 loc += mInsn.insn.getSize();
/art/compiler/optimizing/
H A Dload_store_analysis.h287 HeapLocation* loc = heap_locations_[i]; local
288 if (loc->GetReferenceInfo() == ref_info &&
289 loc->GetOffset() == offset &&
290 loc->GetIndex() == index &&
291 loc->GetVectorLength() == vector_length &&
292 loc->GetDeclaringClassDefIndex() == declaring_class_def_index) {
H A Dcode_generator_x86.h222 void GenerateShlLong(const Location& loc, Register shifter);
223 void GenerateShrLong(const Location& loc, Register shifter);
224 void GenerateUShrLong(const Location& loc, Register shifter);
225 void GenerateShlLong(const Location& loc, int shift);
226 void GenerateShrLong(const Location& loc, int shift);
227 void GenerateUShrLong(const Location& loc, int shift);
H A Dregister_allocation_resolver.cc305 Location loc; local
307 case 1: loc = Location::StackSlot(interval->GetParent()->GetSpillSlot()); break;
308 case 2: loc = Location::DoubleStackSlot(interval->GetParent()->GetSpillSlot()); break;
309 case 4: loc = Location::SIMDStackSlot(interval->GetParent()->GetSpillSlot()); break;
312 InsertMoveAfter(interval->GetDefinedBy(), interval->ToLocation(), loc);
H A Dcode_generator_x86.cc3968 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, int shift) { argument
3969 Register low = loc.AsRegisterPairLow<Register>();
3970 Register high = loc.AsRegisterPairHigh<Register>();
3978 loc.ToLow(),
3979 loc.ToHigh(),
3982 loc.ToLow(),
3996 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) { argument
3998 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter);
3999 __ shll(loc
4007 GenerateShrLong(const Location& loc, int shift) argument
4028 GenerateShrLong(const Location& loc, Register shifter) argument
4039 GenerateUShrLong(const Location& loc, int shift) argument
4063 GenerateUShrLong(const Location& loc, Register shifter) argument
5148 Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks() local
[all...]
H A Dparallel_move_test.cc127 void FreeScratchLocation(Location loc ATTRIBUTE_UNUSED) OVERRIDE {}
H A Dcode_generator_arm64.h388 void FreeScratchLocation(Location loc) OVERRIDE;
H A Dcode_generator_arm64.cc1472 void ParallelMoveResolverARM64::FreeScratchLocation(Location loc) { argument
1473 if (loc.IsRegister()) {
1474 vixl_temps_.Release(XRegisterFrom(loc));
1476 DCHECK(loc.IsFpuRegister());
1477 vixl_temps_.Release(codegen_->GetGraph()->HasSIMD() ? QRegisterFrom(loc) : DRegisterFrom(loc));
1479 RemoveScratchLocation(loc);
H A Dcode_generator_arm_vixl.cc5977 Location loc,
5988 __ Strb(cond, RegisterFrom(loc), mem_address);
5992 __ Strh(cond, RegisterFrom(loc), mem_address);
5996 __ Str(cond, RegisterFrom(loc), mem_address);
5976 StoreToShiftedRegOffset(DataType::Type type, Location loc, vixl32::Register base, vixl32::Register reg_index, vixl32::Condition cond) argument
H A Dcode_generator_mips64.cc6030 Location loc = Location::RegisterLocation(calling_convention.GetRegisterAt(0));
6031 CodeGenerator::CreateLoadClassRuntimeCallLocationSummary(cls, loc, loc);
H A Dnodes.h7248 bool Blocks(Location loc) const {
7249 return !IsEliminated() && source_.OverlapsWith(loc);
H A Dcode_generator_x86_64.cc4602 Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks() local
4605 locations->SetInAt(0, loc);
H A Dcode_generator_mips.cc7940 Location loc = Location::RegisterLocation(calling_convention.GetRegisterAt(0)); local
7941 CodeGenerator::CreateLoadClassRuntimeCallLocationSummary(cls, loc, loc);
/art/runtime/jdwp/
H A Djdwp_event.cc209 Dbg::WatchLocation(&pMod->locationOnly.loc, &req);
267 JdwpLocation& loc = mod.locationOnly.loc; local
270 Dbg::GetObjectRegistry()->Get<art::mirror::Class*>(loc.class_id, &error));
325 Dbg::UnwatchLocation(&pMod->locationOnly.loc, &req);
526 if (!Dbg::MatchLocation(pMod->locationOnly.loc, *basket.pLoc)) {
H A Djdwp_handler.cc1289 mod.locationOnly.loc = location;
/art/test/993-breakpoints/src/art/
H A DTest993.java122 public static void notifyBreakpointReached(Thread thr, Executable e, long loc) { argument
125 line = Integer.valueOf(Breakpoint.locationToLine(e, loc)).toString();

Completed in 2528 milliseconds

1234