MCPcopy Create free account
hub / github.com/capstone-engine/capstone / group

Method group

bindings/python/capstone/__init__.py:829–837  ·  view source on GitHub ↗
(self, group_id)

Source from the content-addressed store, hash-verified

827
828 # verify if this insn belong to group with id as @group_id
829 def group(self, group_id):
830 if self._raw.id == 0:
831 raise CsError(CS_ERR_SKIPDATA)
832
833 if self._cs._diet:
834 # Diet engine cannot provide group information
835 raise CsError(CS_ERR_DIET)
836
837 return group_id in self.groups
838
839 # verify if this instruction implicitly read register @reg_id
840 def reg_read(self, reg_id):

Callers 3

get_report_fileFunction · 0.45
pascalize_constFunction · 0.45

Calls 1

CsErrorClass · 0.85

Tested by 1

get_report_fileFunction · 0.36