Home
last modified time | relevance | path

Searched refs:location (Results 101 – 125 of 201) sorted by relevance

123456789

/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc32 jlocation location; member
62 err = jvmti->SetBreakpoint(m, target.location); in VMInitCB()
267 jlocation location) { in BreakpointCB() argument
275 << location << " in method " << method_info << " thread: " << info.GetName(); in BreakpointCB()
316 target->location = std::stol(SubstrOf(option, loc_start + 1, std::string::npos)); in ParseSingleBreakpoint()
DREADME.md48 …dalvikvm32 W 10-25 10:39:09 18063 18063 breakpointlogger.cc:277] Breakpoint at location: 0x0000000…
53 …java W 10-25 10:39:09 18063 18063 breakpointlogger.cc:277] Breakpoint at location: 0x00000000 in m…
/art/libelffile/stream/
Dvector_output_stream.h30 VectorOutputStream(const std::string& location, std::vector<uint8_t>* vector);
/art/libnativeloader/
Dlibrary_namespaces.h71 Result<std::string> FindApexNamespaceName(const std::string& location);
/art/test/1929-exception-catch-exception/src/art/
DTest1929.java61 Thread thr, Executable method, long location, Throwable exception) { in ExceptionCatchEvent() argument
63 Breakpoint.locationToLine(method, location) + " caught " + in ExceptionCatchEvent()
71 HANDLER.exceptionOccurred(method, location, exception); in ExceptionCatchEvent()
/art/test/510-checker-try-catch/smali/
DRuntime.smali184 # expected to load them from stack map and copy to the catch phi's location.
214 # Runtime is expected to find their location in the stack map and copy the value
215 # to the location of the catch phi.
252 # Runtime is expected to find their location in the stack map and copy the value
253 # to the location of the catch phi. The sum of the low and high 32 bits treated
303 # is expected to find their location in the stack map and copy the value to the
304 # location of the catch phi. The value is converted to int and returned.
345 # Runtime is expected to find their location in the stack map and copy the value
346 # to the location of the catch phi. The value is converted to int and returned.
388 # definition. Runtime is expected to find their location in the stack map and
[all …]
/art/test/1924-frame-pop-toggle/src/art/
DTest1924.java33 public static void handleFramePop(Executable m, boolean exception, long location) { in handleFramePop() argument
35 m + " pop. Line=" + Breakpoint.locationToLine(m, location) + " exception:" + exception); in handleFramePop()
/art/runtime/
Doat_file_assistant.h227 static bool DexLocationToOdexFilename(const std::string& location,
238 static bool DexLocationToOatFilename(const std::string& location,
Dstack.cc224 std::optional<DexRegisterLocation> location) const { in GetVReg()
240 if (location.has_value() && kind != kReferenceVReg) { in GetVReg()
244 result = GetVRegFromOptimizedCode(location.value(), kind, val); in GetVReg()
339 bool StackVisitor::GetVRegFromOptimizedCode(DexRegisterLocation location, in GetVRegFromOptimizedCode() argument
342 switch (location.GetKind()) { in GetVRegFromOptimizedCode()
347 *val = *reinterpret_cast<const uint32_t*>(sp + location.GetStackOffsetInBytes()); in GetVRegFromOptimizedCode()
354 return GetRegisterIfAccessible(location.GetMachineRegister(), kind, val); in GetVRegFromOptimizedCode()
356 *val = location.GetConstant(); in GetVRegFromOptimizedCode()
361 LOG(FATAL) << "Unexpected location kind " << location.GetKind(); in GetVRegFromOptimizedCode()
/art/test/1923-frame-pop/src/art/
DTest1923.java33 public static void handleFramePop(Executable m, boolean exception, long location) { in handleFramePop() argument
35 m + " pop. Line=" + Breakpoint.locationToLine(m, location) + " exception:" + exception); in handleFramePop()
/art/runtime/native/
Djava_lang_VMClassLoader.cc146 const std::string location(DexFileLoader::GetBaseLocation(dex_file->GetLocation())); in VMClassLoader_getBootClassPathEntries() local
148 ScopedLocalRef<jstring> javaPath(env, env->NewStringUTF(location.c_str())); in VMClassLoader_getBootClassPathEntries()
/art/test/994-breakpoint-line/src/art/
DTest994.java63 MANAGER.setBreakpoint(multipath_method, line.location); in run()
/art/dex2oat/linker/
Doat_writer.cc481 static bool ValidateDexFileHeader(const uint8_t* raw_header, const char* location) { in ValidateDexFileHeader() argument
484 LOG(ERROR) << "Invalid magic number in dex file header. " << " File: " << location; in ValidateDexFileHeader()
488 LOG(ERROR) << "Invalid version number in dex file header. " << " File: " << location; in ValidateDexFileHeader()
494 << " File: " << location; in ValidateDexFileHeader()
502 const char* location) { in GetDexFileHeader() argument
506 << " File: " << location << " Output: " << file->GetPath(); in GetDexFileHeader()
509 if (!ValidateDexFileHeader(raw_header, location)) { in GetDexFileHeader()
517 const char* location, in AddDexFileSource() argument
526 return AddDexFileSource(std::move(fd), location, create_type_lookup_table); in AddDexFileSource()
532 const char* location, in AddDexFileSource() argument
[all …]
Doat_writer.h146 const char* location,
152 const char* location,
157 const char* location,
163 const char* location,
Doat_writer_test.cc151 const char* location, in WriteElf() argument
162 if (!oat_writer.AddDexFileSource(std::move(dex_file_fd), location)) { in WriteElf()
322 bool AddFile(const char* location, const void* data, size_t size) { in AddFile() argument
332 file_header.filename_length = strlen(location); in AddFile()
335 !zip_file_->WriteFully(location, file_header.filename_length) || in AddFile()
346 file_data_.push_back(FileData { cdfh, location }); in AddFile()
359 !zip_file_->WriteFully(file_data.location, file_data.cdfh.filename_length)) { in Finish()
422 const char* location; member
/art/compiler/optimizing/
Dssa_liveness_analysis.h146 Location location = GetUser()->GetLocations()->InAt(GetInputIndex()); in RequiresRegister() local
147 return location.IsUnallocated() && location.RequiresRegisterKind(); in RequiresRegister()
957 Location location = locations->Out(); in DefinitionRequiresRegister() local
961 if (location.IsUnallocated()) { in DefinitionRequiresRegister()
962 if ((location.GetPolicy() == Location::kRequiresRegister) in DefinitionRequiresRegister()
963 || (location.GetPolicy() == Location::kSameAsFirstInput in DefinitionRequiresRegister()
968 } else if ((location.GetPolicy() == Location::kRequiresFpuRegister) in DefinitionRequiresRegister()
969 || (location.GetPolicy() == Location::kSameAsFirstInput in DefinitionRequiresRegister()
975 } else if (location.IsRegister() || location.IsRegisterPair()) { in DefinitionRequiresRegister()
Dload_store_analysis.h506 HeapLocation* location = VisitFieldAccess(instruction->InputAt(0), instruction->GetFieldInfo()); in VisitInstanceFieldSet() local
508 if (location->GetReferenceInfo()->IsSingleton()) { in VisitInstanceFieldSet()
513 HInstruction* ref = location->GetReferenceInfo()->GetReference(); in VisitInstanceFieldSet()
517 location->SetValueKilledByLoopSideEffects(true); in VisitInstanceFieldSet()
527 DCHECK_EQ(location->IsValueKilledByLoopSideEffects(), true); in VisitInstanceFieldSet()
Dregister_allocator_graph_color.h138 void BlockRegister(Location location, size_t start, size_t end);
Dload_store_elimination.cc362 HeapLocation* location = heap_location_collector_.GetHeapLocation(i); in HandleLoopSideEffects() local
363 ReferenceInfo* ref_info = location->GetReferenceInfo(); in HandleLoopSideEffects()
364 if (ref_info->IsSingleton() && !location->IsValueKilledByLoopSideEffects()) { in HandleLoopSideEffects()
883 HeapLocation* location = heap_location_collector_.GetHeapLocation(i); in VisitNewArray() local
884 HInstruction* ref = location->GetReferenceInfo()->GetReference(); in VisitNewArray()
885 if (ref == new_array && location->GetIndex() != nullptr) { in VisitNewArray()
/art/cmdline/
Dcmdline.h46 static bool LocationToFilename(const std::string& location, InstructionSet isa, in LocationToFilename() argument
52 std::string system_filename(GetSystemImageFilename(location.c_str(), isa)); in LocationToFilename()
72 if (GetDalvikCacheFilename(location.c_str(), dalvik_cache.c_str(), in LocationToFilename()
/art/test/1926-missed-frame-pop/src/art/
DTest1926.java33 public static void handleFramePop(Executable m, boolean exception, long location) { in handleFramePop() argument
35 m + " pop. Line=" + Breakpoint.locationToLine(m, location) + " exception:" + exception); in handleFramePop()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DAhatClassInstance.java140 AhatInstance location = getRefField("location"); in getDexCacheLocation() local
141 if (location != null) { in getDexCacheLocation()
142 return location.asString(maxChars); in getDexCacheLocation()
/art/test/004-JniTest/src/
DMain.java401 String location = System.getenv("DEX_LOCATION"); in createClassLoader() local
406 return (ClassLoader)ctor.newInstance(location + "/004-JniTest-ex.jar", in createClassLoader()
412 new java.net.URL[] { new java.net.URL("file://" + location + "/classes-ex/") }); in createClassLoader()
/art/test/ti-agent/
Dtrace_helper.cc133 jlocation location) { in singleStepCB() argument
153 static_cast<jlong>(location)); in singleStepCB()
161 jlocation location, in fieldAccessCB() argument
185 static_cast<jlong>(location), in fieldAccessCB()
197 jlocation location, in fieldModificationCB() argument
229 static_cast<jlong>(location), in fieldModificationCB()
Dstack_trace_helper.cc82 frames[i].location, in Java_art_StackTrace_nativeGetStackTrace()

123456789