/art/compiler/linker/ |
H A D | output_stream.h | 36 explicit OutputStream(const std::string& location) : location_(location) {} 41 return location_; 57 const std::string location_; member in class:art::OutputStream
|
/art/compiler/utils/arm/ |
H A D | assembler_thumb2.cc | 38 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_) { 2168 buffer->Store<int16_t>(location_, encoding); 2183 buffer->Store<int16_t>(location_, encoding >> 16); 2184 buffer->Store<int16_t>(location_ [all...] |
H A D | assembler_thumb2.h | 575 return location_; 606 // Check if the current size is OK for current location_, target_ and adjustment_. 620 location_ += location_adjustment; 638 location_(location), 670 uint32_t location_; // Offset into assembler buffer in bytes. member in class:art::arm::FINAL::Fixup 672 uint32_t adjustment_; // The number of extra bytes inserted between location_ and target_.
|
/art/runtime/ |
H A D | dex_file_verifier.h | 50 location_(location), 202 const char* const location_; member in class:art::DexFileVerifier
|
H A D | oat_file.h | 115 return location_; 310 const std::string location_; member in class:art::OatFile
|
H A D | dex_file.h | 482 return location_; 514 return GetBaseLocation(location_); 1188 const std::string location_; member in class:art::DexFile::MethodHandleType
|
H A D | oat_file.cc | 1155 : location_(location), 1164 CHECK(!location_.empty());
|
H A D | dex_file.cc | 530 location_(location),
|
H A D | class_linker_test.cc | 672 addOffset(OFFSETOF_MEMBER(mirror::DexCache, location_), "location");
|
H A D | dex_file_verifier.cc | 2861 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_);
|
/art/runtime/mirror/ |
H A D | dex_cache.h | 212 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_)); 515 HeapReference<String> location_; member in class:art::mirror::FINAL
|
H A D | dex_cache.cc | 230 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location);
|
/art/compiler/utils/mips/ |
H A D | assembler_mips.cc | 1803 OffsetBits offset_size = GetOffsetSizeNeeded(location_, target_); 1897 location_(location), 1913 location_(location), 1970 location_(location), 2047 return location_; 2184 if (location_ > expand_location) { 2185 location_ += delta; 2285 return location_ + GetPrecedingInstructionSize(type_) + 2529 CHECK_EQ(location_, old_location_); 2532 location_ [all...] |
H A D | assembler_mips.h | 1227 // branch at a given location by this delta (just changes location_ and target_). 1236 // max_short_distance caps the maximum distance between location_ and target_ 1256 uint32_t location_; // Offset into assembler buffer in bytes. member in class:art::mips::FINAL::Branch
|
/art/compiler/utils/mips64/ |
H A D | assembler_mips64.cc | 1722 OffsetBits offset_size = GetOffsetSizeNeeded(location_, target_); 1786 location_(location), 1800 location_(location), 1844 location_(location), 1915 return location_; 2014 if (location_ > expand_location) { 2015 location_ += delta; 2064 // to hold the distance between location_ and target_. 2065 if (GetOffsetSizeNeeded(location_, target_) > GetOffsetSize()) { 2075 int64_t distance = static_cast<int64_t>(target_) - location_; [all...] |
H A D | assembler_mips64.h | 1404 // branch at a given location by this delta (just changes location_ and target_). 1413 // max_short_distance caps the maximum distance between location_ and target_ 1432 uint32_t location_; // Offset into assembler buffer in bytes. member in class:art::mips64::FINAL::Branch
|