Searched refs:access_flags_ (Results 1 – 11 of 11) sorted by relevance
/arkcompiler/runtime_core/libpandafile/ |
D | field_data_accessor.h | 66 return access_flags_; in GetAccessFlags() 71 return (access_flags_ & ACC_STATIC) != 0; in IsStatic() 76 return (access_flags_ & ACC_VOLATILE) != 0; in IsVolatile() 81 return (access_flags_ & ACC_PUBLIC) != 0; in IsPublic() 86 return (access_flags_ & ACC_PRIVATE) != 0; in IsPrivate() 91 return (access_flags_ & ACC_PROTECTED) != 0; in IsProtected() 96 return (access_flags_ & ACC_FINAL) != 0; in IsFinal() 101 return (access_flags_ & ACC_TRANSIENT) != 0; in IsTransient() 106 return (access_flags_ & ACC_SYNTHETIC) != 0; in IsSynthetic() 111 return (access_flags_ & ACC_ENUM) != 0; in IsEnum() [all …]
|
D | method_data_accessor.h | 51 return (access_flags_ & ACC_STATIC) != 0; in IsStatic() 56 return (access_flags_ & ACC_ABSTRACT) != 0; in IsAbstract() 61 return (access_flags_ & ACC_NATIVE) != 0; in IsNative() 66 return (access_flags_ & ACC_PUBLIC) != 0; in IsPublic() 71 return (access_flags_ & ACC_PRIVATE) != 0; in IsPrivate() 76 return (access_flags_ & ACC_PROTECTED) != 0; in IsProtected() 81 return (access_flags_ & ACC_FINAL) != 0; in IsFinal() 86 return (access_flags_ & ACC_SYNTHETIC) != 0; in IsSynthetic() 113 return access_flags_; in GetAccessFlags() 202 uint32_t access_flags_; variable
|
D | index_accessor.h | 31 access_flags_ = helpers::ReadULeb128(&sp); in IndexAccessor() 32 header_index_ = access_flags_ >> (FUNTION_KIND_WIDTH + FLAG_WIDTH); in IndexAccessor() 48 return static_cast<FunctionKind>((access_flags_ & FUNCTION_KIND_MASK) >> FLAG_WIDTH); in GetFunctionKind() 63 uint32_t access_flags_; variable
|
D | class_data_accessor.h | 40 return (access_flags_ & ACC_INTERFACE) != 0; in IsInterface() 45 return access_flags_; in GetAccessFlags() 146 uint32_t access_flags_; variable
|
D | field_data_accessor.cpp | 38 access_flags_ = helpers::ReadULeb128(&sp); in FieldDataAccessor() 42 access_flags_ = 0; in FieldDataAccessor()
|
D | method_data_accessor.cpp | 32 access_flags_ = helpers::ReadULeb128(&sp); in MethodDataAccessor()
|
D | class_data_accessor.cpp | 37 access_flags_ = helpers::ReadULeb128(&sp); in ClassDataAccessor()
|
D | file_items.h | 577 uint32_t access_flags_; variable 739 return (access_flags_ & ACC_STATIC) != 0; in IsStatic() 759 access_flags_ &= (~FUNCTION_KIND_MASK); in SetFunctionKind() 760 access_flags_ |= (static_cast<uint32_t>(kind) << FLAG_WIDTH); in SetFunctionKind() 765 access_flags_ &= (FUNCTION_KIND_MASK | FLAG_MASK); in SetHeaderIndex() 766 access_flags_ |= (static_cast<uint32_t>(idx) << (FUNTION_KIND_WIDTH + FLAG_WIDTH)); in SetHeaderIndex() 786 …uint32_t access_flags_; // layout: |<- 16-bit header index ->|<- 8-bit FunctionKind ->|<- 8-bit f… variable 1016 access_flags_(0), in ClassItem() 1027 access_flags_ = access_flags; in SetAccessFlags() 1165 uint32_t access_flags_; variable
|
D | file_items.cpp | 260 …ze_t size = BaseClassItem::CalculateSize() + ID_SIZE + leb128::UnsignedEncodingSize(access_flags_); in CalculateSizeWithoutFieldsAndMethods() 410 if (!writer->WriteUleb128(access_flags_)) { in Write() 550 : IndexedItem(container), class_(cls), name_(name), proto_(proto), access_flags_(access_flags) in BaseMethodItem() 559 return IDX_SIZE + IDX_SIZE + ID_SIZE + leb128::UnsignedEncodingSize(access_flags_); in CalculateSize() 584 return writer->WriteUleb128(access_flags_); in Write() 1268 : BaseFieldItem(cls, name, type, container), access_flags_(access_flags), value_(nullptr) in FieldItem() 1280 size_t size = BaseFieldItem::CalculateSize() + leb128::UnsignedEncodingSize(access_flags_); in CalculateSize() 1380 if (!writer->WriteUleb128(access_flags_)) { in Write()
|
/arkcompiler/runtime_core/docs/ |
D | 2022-08-18-isa-changelog.md | 26 We reuse the field 32-bit field `access_flags_` to encode Function Kind and Header index. 27 This will not introduce compatibility issue because the later 24-bit of `access_flags_` is unused i…
|
/arkcompiler/runtime_core/assembler/ |
D | meta.h | 473 return access_flags_; in GetAccessFlags() 478 access_flags_ = access_flags; in SetAccessFlags() 484 uint32_t access_flags_ {0};
|