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/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_) {
2168 buffer->Store<int16_t>(location_, encoding);
2183 buffer->Store<int16_t>(location_, encoding >> 16);
2184 buffer->Store<int16_t>(location_
[all...]
H A Dassembler_thumb2.h575 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 Ddex_file_verifier.h50 location_(location),
202 const char* const location_; member in class:art::DexFileVerifier
H A Doat_file.h115 return location_;
310 const std::string location_; member in class:art::OatFile
H A Ddex_file.h482 return location_;
514 return GetBaseLocation(location_);
1188 const std::string location_; member in class:art::DexFile::MethodHandleType
H A Doat_file.cc1155 : location_(location),
1164 CHECK(!location_.empty());
H A Ddex_file.cc530 location_(location),
H A Dclass_linker_test.cc672 addOffset(OFFSETOF_MEMBER(mirror::DexCache, location_), "location");
H A Ddex_file_verifier.cc2861 failure_reason_ = StringPrintf("Failure to verify dex file '%s': ", location_);
/art/runtime/mirror/
H A Ddex_cache.h212 return GetFieldObject<String>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_));
515 HeapReference<String> location_; member in class:art::mirror::FINAL
H A Ddex_cache.cc230 SetFieldObject<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, location_), location);
/art/compiler/utils/mips/
H A Dassembler_mips.cc1803 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 Dassembler_mips.h1227 // 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 Dassembler_mips64.cc1722 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 Dassembler_mips64.h1404 // 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

Completed in 331 milliseconds