Searched refs:location_ (Results 1 - 16 of 16) sorted by relevance

/art/compiler/linker/
H A Doutput_stream.h36 explicit OutputStream(const std::string& location) : location_(location) {}
41 return location_;
57 const std::string location_; member in class:art::OutputStream
/art/runtime/mirror/
H A Ddex_cache.cc83 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location);
H A Ddex_cache.h73 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_));
220 HeapReference<String> location_; member in class:art::mirror::FINAL
/art/compiler/utils/arm/
H A Dassembler_thumb2.cc38 if (target > fixups[fixup_id].location_) {
39 for (FixupId id = fixup_id + 1u; id != end_id && fixups[id].location_ < target; ++id) {
45 for (FixupId id = fixup_id; id != 0u && fixups[id - 1u].location_ >= target; --id) {
1948 DCHECK_LE(location_, static_cast<uint32_t>(int32_max));
1950 int32_t diff = static_cast<int32_t>(target_) - static_cast<int32_t>(location_);
1951 if (target_ > location_) {
2015 if (target_ > location_) {
2129 buffer->Store<int16_t>(location_, encoding);
2144 buffer->Store<int16_t>(location_, encoding >> 16);
2145 buffer->Store<int16_t>(location_
[all...]
H A Dassembler_thumb2.h568 return location_;
590 // Check if the current size is OK for current location_, target_ and adjustment_.
604 location_ += location_adjustment;
622 location_(location),
654 uint32_t location_; // Offset into assembler buffer in bytes. member in class:art::arm::FINAL::Fixup
656 uint32_t adjustment_; // The number of extra bytes inserted between location_ and target_.
/art/runtime/
H A Ddex_file_verifier.h38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
178 const char* const location_; member in class:art::DexFileVerifier
H A Doat_file.h103 return location_;
274 const std::string location_; member in class:art::OatFile
H A Ddex_file.h443 return location_;
475 return GetBaseLocation(location_);
1244 const std::string location_; member in class:art::DexFile
H A Doat_file.cc1037 : location_(location),
1044 CHECK(!location_.empty());
H A Dclass_linker_test.cc647 addOffset(OFFSETOF_MEMBER(mirror::DexCache, location_), "location");
H A Ddex_file_verifier.cc2404 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_);
H A Ddex_file.cc432 location_(location),
/art/compiler/utils/mips/
H A Dassembler_mips.cc1475 OffsetBits offset_size = GetOffsetSizeNeeded(location_, target_);
1531 location_(location),
1546 location_(location),
1598 location_(location),
1670 return location_;
1765 if (location_ > expand_location) {
1766 location_ += delta;
1811 // to hold the distance between location_ and target_.
1812 if (GetOffsetSizeNeeded(location_, target_) > GetOffsetSize()) {
1822 int64_t distance = static_cast<int64_t>(target_) - location_;
[all...]
H A Dassembler_mips.h721 // branch at a given location by this delta (just changes location_ and target_).
730 // max_short_distance caps the maximum distance between location_ and target_
749 uint32_t location_; // Offset into assembler buffer in bytes. member in class:art::mips::FINAL::Branch
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc1177 OffsetBits offset_size = GetOffsetSizeNeeded(location_, target_);
1223 location_(location),
1237 location_(location),
1281 location_(location),
1353 return location_;
1440 if (location_ > expand_location) {
1441 location_ += delta;
1476 // to hold the distance between location_ and target_.
1477 if (GetOffsetSizeNeeded(location_, target_) > GetOffsetSize()) {
1487 int64_t distance = static_cast<int64_t>(target_) - location_;
[all...]
H A Dassembler_mips64.h633 // branch at a given location by this delta (just changes location_ and target_).
642 // max_short_distance caps the maximum distance between location_ and target_
661 uint32_t location_; // Offset into assembler buffer in bytes. member in class:art::mips64::FINAL::Branch

Completed in 3223 milliseconds