Home
last modified time | relevance | path

Searched refs:offset_in_bytes (Results 1 – 25 of 387) sorted by relevance

12345678910>>...16

/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/cpu/x86/
H A DregisterMap_x86.cpp35 intptr_t offset_in_bytes = (reg->value() - base_reg->value()) * VMRegImpl::stack_slot_size; in pd_location() local
37 if (offset_in_bytes == 0) { in pd_location()
41 if (offset_in_bytes == 0 || offset_in_bytes == 16 || offset_in_bytes == 32) { in pd_location()
47 if (offset_in_bytes > 32) { in pd_location()
49 offset_in_bytes -= 32; in pd_location()
50 } else if (offset_in_bytes > 16) { in pd_location()
52 offset_in_bytes -= 16; in pd_location()
59 return base_location + offset_in_bytes; in pd_location()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/cpu/x86/
H A DregisterMap_x86.cpp35 intptr_t offset_in_bytes = (reg->value() - base_reg->value()) * VMRegImpl::stack_slot_size; in pd_location() local
37 if (offset_in_bytes == 0) { in pd_location()
41 if (offset_in_bytes == 0 || offset_in_bytes == 16 || offset_in_bytes == 32) { in pd_location()
47 if (offset_in_bytes > 32) { in pd_location()
49 offset_in_bytes -= 32; in pd_location()
50 } else if (offset_in_bytes > 16) { in pd_location()
52 offset_in_bytes -= 16; in pd_location()
59 return base_location + offset_in_bytes; in pd_location()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/objects/
H A Dlayout-descriptor.cc192 int offset_in_bytes, int end_offset, in IsTagged() argument
194 DCHECK(IsAligned(offset_in_bytes, kTaggedSize)); in IsTagged()
196 DCHECK(offset_in_bytes < end_offset); in IsTagged()
199 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
202 int max_sequence_length = (end_offset - offset_in_bytes) / kTaggedSize; in IsTagged()
203 int field_index = Max(0, (offset_in_bytes - header_size_) / kTaggedSize); in IsTagged()
208 if (offset_in_bytes < header_size_) { in IsTagged()
219 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
223 offset_in_bytes + sequence_length * kTaggedSize; in IsTagged()
224 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
H A Dlayout-descriptor-inl.h238 bool LayoutDescriptorHelper::IsTagged(int offset_in_bytes) { in IsTagged() argument
239 DCHECK(IsAligned(offset_in_bytes, kTaggedSize)); in IsTagged()
242 if (offset_in_bytes < header_size_) return true; in IsTagged()
243 int field_index = (offset_in_bytes - header_size_) / kTaggedSize; in IsTagged()
/dports/www/node10/node-v10.24.1/deps/v8/src/
H A Dlayout-descriptor.cc190 int offset_in_bytes, int end_offset, in IsTagged() argument
192 DCHECK(IsAligned(offset_in_bytes, kPointerSize)); in IsTagged()
194 DCHECK(offset_in_bytes < end_offset); in IsTagged()
197 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
200 int max_sequence_length = (end_offset - offset_in_bytes) / kPointerSize; in IsTagged()
201 int field_index = Max(0, (offset_in_bytes - header_size_) / kPointerSize); in IsTagged()
206 if (offset_in_bytes < header_size_) { in IsTagged()
217 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
221 offset_in_bytes + sequence_length * kPointerSize; in IsTagged()
222 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
H A Dlayout-descriptor-inl.h229 bool LayoutDescriptorHelper::IsTagged(int offset_in_bytes) { in IsTagged() argument
230 DCHECK(IsAligned(offset_in_bytes, kPointerSize)); in IsTagged()
233 if (offset_in_bytes < header_size_) return true; in IsTagged()
234 int field_index = (offset_in_bytes - header_size_) / kPointerSize; in IsTagged()
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/objects/
H A Dlayout-descriptor.cc192 int offset_in_bytes, int end_offset, in IsTagged() argument
194 DCHECK(IsAligned(offset_in_bytes, kTaggedSize)); in IsTagged()
196 DCHECK(offset_in_bytes < end_offset); in IsTagged()
199 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
202 int max_sequence_length = (end_offset - offset_in_bytes) / kTaggedSize; in IsTagged()
203 int field_index = std::max(0, (offset_in_bytes - header_size_) / kTaggedSize); in IsTagged()
208 if (offset_in_bytes < header_size_) { in IsTagged()
219 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
223 offset_in_bytes + sequence_length * kTaggedSize; in IsTagged()
224 DCHECK(offset_in_bytes < *out_end_of_contiguous_region_offset); in IsTagged()
H A Dlayout-descriptor-inl.h240 bool LayoutDescriptorHelper::IsTagged(int offset_in_bytes) { in IsTagged() argument
241 DCHECK(IsAligned(offset_in_bytes, kTaggedSize)); in IsTagged()
244 if (offset_in_bytes < header_size_) return true; in IsTagged()
245 int field_index = (offset_in_bytes - header_size_) / kTaggedSize; in IsTagged()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/code/
H A Dlocation.cpp69 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
70 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
71 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/code/
H A Dlocation.cpp69 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
70 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
71 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/code/
H A Dlocation.cpp69 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
70 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
71 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/code/
H A Dlocation.cpp69 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
70 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
71 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/code/
H A Dlocation.cpp69 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
70 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
71 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/code/
H A Dlocation.cpp69 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
70 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
71 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/code/
H A Dlocation.cpp69 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
70 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
71 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/code/
H A Dlocation.cpp68 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
69 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
70 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/hotspot/src/share/vm/code/
H A Dlocation.cpp68 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
69 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
70 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/code/
H A Dlocation.cpp70 bool Location::legal_offset_in_bytes(int offset_in_bytes) { in legal_offset_in_bytes() argument
71 if ((offset_in_bytes % BytesPerInt) != 0) return false; in legal_offset_in_bytes()
72 return (juint)(offset_in_bytes / BytesPerInt) < (OFFSET_MASK >> OFFSET_SHIFT); in legal_offset_in_bytes()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/cpu/aarch64/
H A DregisterMap_aarch64.cpp38 intptr_t offset_in_bytes = slot_idx * VMRegImpl::stack_slot_size; in pd_location() local
41 return base_location + offset_in_bytes; in pd_location()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/oops/
H A DarrayOop.hpp92 static T* obj_offset_to_raw(arrayOop obj, size_t offset_in_bytes, T* raw) { in obj_offset_to_raw() argument
96 raw = reinterpret_cast<T*>(base + offset_in_bytes); in obj_offset_to_raw()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/oops/
H A DarrayOop.hpp92 static T* obj_offset_to_raw(arrayOop obj, size_t offset_in_bytes, T* raw) { in obj_offset_to_raw() argument
96 raw = reinterpret_cast<T*>(base + offset_in_bytes); in obj_offset_to_raw()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/oops/
H A DarrayOop.hpp91 static T* obj_offset_to_raw(arrayOop obj, size_t offset_in_bytes, T* raw) { in obj_offset_to_raw() argument
95 raw = reinterpret_cast<T*>(base + offset_in_bytes); in obj_offset_to_raw()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/oops/
H A DarrayOop.hpp96 static T* obj_offset_to_raw(arrayOop obj, size_t offset_in_bytes, T* raw) { in obj_offset_to_raw() argument
100 raw = reinterpret_cast<T*>(base + offset_in_bytes); in obj_offset_to_raw()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/oops/
H A DarrayOop.hpp92 static T* obj_offset_to_raw(arrayOop obj, size_t offset_in_bytes, T* raw) { in obj_offset_to_raw() argument
96 raw = reinterpret_cast<T*>(base + offset_in_bytes); in obj_offset_to_raw()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/oops/
H A DarrayOop.hpp91 static T* obj_offset_to_raw(arrayOop obj, size_t offset_in_bytes, T* raw) { in obj_offset_to_raw() argument
95 raw = reinterpret_cast<T*>(base + offset_in_bytes); in obj_offset_to_raw()

12345678910>>...16