Commit Graph

5043 Commits

Author SHA1 Message Date
Rot127
4fc80d82f9
Add RET group to pop instructions which write to the PC. (#2216) 2023-12-14 23:11:15 +08:00
Rot127
2fa9f60dcc
[TriCore] Replace one- and sign-extend with MathExtra.h functions. (#2212)
* Replace one- and sign-extend with MathExtra.h functions.

This fixes incorrect sign extensions and reachable
aborts().

* Wrap around PC relative values instead of abort in case of overflow.

---------

Co-authored-by: billow <billow.fun@gmail.com>
2023-12-03 19:15:17 +08:00
Rot127
d54934201c
[ARM] Add alias support (#2209) 2023-12-02 15:18:58 +08:00
Rot127
55818f2300
Disable maybe-uninitialized warning all together. (#2210) 2023-11-30 10:21:02 +08:00
billow
ce0b1b6744
Fix tricore UB (#2204) 2023-11-30 00:20:44 +08:00
Rot127
d432c35027
Remove no longer used td files. (#2205) 2023-11-24 11:59:21 +08:00
Rot127
622059530f
[v6] Move meta-programming macros for ARM64/AArch64 to capstone.h (#2201)
* Move meta-programming macros for ARM64/AArch64 to capstone.h

* Add meta-programming macro tests
2023-11-24 11:58:04 +08:00
Rot127
d78d0ca2c6 Remove __GNUC__ check for warning suppression. (#2198) 2023-11-19 22:36:02 +08:00
Rot127
ef89b18a88 Architecture updater (auto-sync) - Updating AArch64 (#2026)
* Update sysop inc file

* Fix missing  braces warning

* Handle new system operands

* Fix build errors by renaming.

* Fix segfault

* Fix segfault

* Add custom MCOperand valiadtors

* Add AArch64 case for getFeatureBits

* Fix infinite loop

* Fix braces warning.

* Implement loopuo by name for sys operands

* Fix incorrect translation which remove else if statements.

* Fix several segfaults

* Rename GetRegFromClass patch

* Fix segfaults and asserts

* Fix segfault

* Move MRI setting to Mapping

* Remove unused code

* Add add_op_X functinos for AArch64.

* Add fill detail functins

* Handle RegWithShiftExtend operands

* Handle TypedVectorList operands.

* Handle ComplexRoatation operands

* Handle MemExtend operands

* Handle ImmRangeScale operands

* Handle ExactFPImm operands

* Handle GPRSeqPairsClass operands

* Handle Imm8OptLsl operands

* Handle ImmScale operands

* Handle LogicalImm operands

* Handle Matrix operands

* Handle SME Matrix tiles and vectors.

* Handle normal operands.

* Fix segfault.

* Handle PostInc operands.

* Reorder VecLayout enum to have no duplicate enum value.

* Handle PredicateAsCounter operands

* Handle ZPRasFPR operands

* Handle VectorIndex operands

* Handle UImm12Offset operands.

* Move reg suffix to enum val to single function.

* Handle SVERegOp operands

* Handle SVELogicalImm operands

* Handle SImm operand

* Handle PrefetchOp operands

* Handle Imm and ImmHex operands

* Handle GPR64as32 and GPR64x8 operands

* Add missing break

* Handle FPImm operand

* Handle ExtendedRegister opreand

* Handle CondCode operands

* Handle BTIHintOp operands

* Handle BarrierOption operands

* Handle BarrierXSOption

* Add not implemeted case again

* Handle ArithExtend operands

* Handle AdrpLabel and AlignedLabel operands

* Handle AMNoIndex operands

* Handle AddSubImm operands

* Handle MSRSystemRegisters and MRSSystemRegister operands

* Handle PSBHntOp and RPRFMOperand operands

* Remove unused variables

* Handle InverseCondCode operands

* Handle ImplicityTypedVectorList operands

* Handle ShiftedRegister operands

* Handle Shifter operands

* Handle SIMDType10Operand operands

* Handle SVCROp operands

* Handle SVEPattern operands

* Handle SVEVecLenSpecifier operands

* Handle SysCROperands

* Handle SysXzrPair operands

* Handle PState operands

* Handle VRegOperands

* Primt SME oeprands.

* Fix cs_operand.h include

* Rename arm64 -> aarch64 in python bindings.

* Add Python bindings for SH

* Fix ARM Python bindings (#2127)

* Restructure auto-sync update scripts.

* Move Helper functions to Updater dir

* Move requirements.txt

* Add basic ASUpdater.py

* Run black.

* Add inc file generater to updater

* Add option to select certain inc files fore generation.

* Enable clean build and implement patcher for inc files.

* Format config

* Patch main header files after inc generation.

* Implement clang-format function (unused yet, because it takes forever.)

* Copy generated inc files to arch dir

* Invert clean option (noramlly we need to clean the build dir.)

* Clearify arg doc

* Rename SystemRegister file for AArch64

* Centralize handling of path variables.

* Check if SystemOperands had to be generated before renaming on of its files.

* Replace class parameters by calling get_path

* Remove updater config which only contained paths.

* Add refactor option.

* Remove more path handling in the Configurator.

* Add translation step to updater.

* Fix includes after CppTranslator was moved into the Updater

* Remove updater config

* Fix several issue in the Configurator

* Fix file operations

* Remove addition argument from translator.

* Add Differ step to updater.

* Add path variable for arch_config

* Add diff step.

* Fix typo

* Introduce .clang-format path variable.

* Remove duplicate functions

* Add option to select update steps to execute.

* Check in write functions for write flag.

* Rename PatchMainHeader -> HeaderPatcher

* Move .gitignore

* Add README to vendor dir.

* Add all system operands to cstool output

* Update cstest with aarch64 changes

* Remove wb flag of aarch64 detail struct

* Set updates_flag after decoding

* Set writeback after decoding.

* Rename ARM64 -> AArch64

* Update printer and op mapping

* Exit normally

* Add AArch64 alias

* Fix some tmeplate function calls

* Fix flag check after rebase.

* Fix build by commentig unnused code.

* Add memory operand flag

* Handle memory operands printed via generic printOperand function.

* Handle UImm memory offsets

* Introduce MEM_REG and MEM_IMM op types

* Handle scaled memory immediates

* Check for op_count before checking for mem op at -1 index.

* Update memory operand flags.

* Pass imm/reg memory ops in set_imm/reg to set_mem.

* Add missing set_sme_operand call and fix assert.

* Remove CS_OP_MEM flag before entering switch.

* Preidcates are registers.

* Add shift info always to the previous operand

* Check for generic system regs

* Handle NumLanes = 0 LaneKind = q case

* Replace printImm call with normal print logic. Otherwise ops get added twice to detail.

* Handle FP operands in printOperand.

* Add access information to float operands.

* Rewrite SME matrix handling.

* Set correct SME layouts and allow for immediate range sme offsets.

* Handle cases of unknown system alias by setting their raw values

* Update cstool and header file with new SME offset handling

* Handle SME Tile lists.

* Fix build error in cstest

* Update MC tests for AArch64

* Handle TLBI operands and fix printing bug.

* Fix: Print signed value as signed.

* Add more system alias to detail.

* Remove duplicate hex prefix

* Set correct values for the register info

* Replace tabs with white spaces

* Move string append logic to own function.

* Set DecodeComplete = true before decoding (as originally in the LLVM code).

* Change type of feature argument, since only LLVM features are passed, not CS groups.

* Imitate lower_bound for the index table binary search.

* Remove trailing comments from test files.

* Print shift amount in decimal

* Save detail of shift alias instructions.

* Add extension details fot ext instruction alias

* Print LSB and width in decimal

* Fix LLVM bug. The feature check for V8_2a doesn't check if all features are enabled.

* Fix lower_bounds check.
For m == 0 we wrap around 0 of cause.

* Fix feature check. Add check for FeatureAll since it includes XS

* Operate on temporary MCInst when trying decoding.

* Add lower_bound behavior to IndexTypeStr binsearch.

* Fix MC tests which were incorrect because of missing FeatureAll check

* Add Alias handling for AArch64

* Update system operands with SYSIMM types and add additional sysop category.

* Add macros for meta programming (ARM64 <-> AArch64 selection).

* Fix union/struct confusion and add raw_value member to uninions.

* Allow to set Syntax and mode options for AArch64

* Fix build warning by using correct type

* Print shift value in decimal

* Add missing call to add_cs_detail.

* Update name map files with normalized names.

* Remove unused function

* Add check if detail should be filled.

* Fill detail for real instructions if only real detail is requested.

* Add always the extension.

* Make dir creation log message debug level

* Implement ADR immediate operand printer.

See: c3484b1fdc

* Check for flag registers beeing written and update flag.

* Move multiple CondCode helpers to aarch64.h because they are so freaking useful.

+ Print CC if it is EQ

* Fix incorrectly initialized CC and VectorLayout.

* Add LSL shift type for extensions.

* Fix case when shift amount is 0

* Fix post-index memory instructions.

* Pass raw immediate through getShiftValue to extract actual shift amount

* Setup AArch64 detail ops.

* Add flag for operands part of a list.

* Set vector indices for all relevant registers.

* Add missing call to add_cs_detail for postIncOperands

* Add ugly yet reliable way to determine post-index addressing mode

* Add support for old Capstone register alias.

* Remove leading space before some alias mnemonics.

* add AARCH64 to `cmake.sh`

* add HAS_AARCH64 to `cs.c`

* should probably just reference `cs_operand.h` in `aarch64.h`

* hint compiler at `AArch64_SYSREG` enum type for casting purposes

* update `Makefile` for AARCH64

leaves `CAPSTONE_HAS_ARM64` supported

* `testFeatureBits` platform function check

`testFeatureBits` should check if the platform function is visible first

* update tests to use AARCH64 convention

* hack: avoid enum casts for `MCInst` Values

Apple compiler really hates typecasting a enum, even if bounded from a unsigned. Lets set the raw_value directly

is a hack and needs proper review

* Check for present detail before accessing it.

* Add CS only groups

* Use general map ins_op type

* Fix build warning about str size computation.

* Disable warning about unitialized value for GCC 11.

Imm is initialized and the warning does not appear
in later versions.

* Use correct include guard for PPC

* Add missing requirements

* Update SystemOperand enums.

* Fix overlapping comparison warning

* Fix reachable assert where OpNum is not of type IMM

* Handle 0.0 operand for fcmp

* Fix incorrect variable passed.

* Fix for MacOS which doesn't know the warning and throws another one.

* Make getExtendEncoding static to fix build warning on MSVC.

* Fix build error: 'missing binary operator before token' by checking __GNUC__

* Add string search to add vector layout info.

* Add missing mem disponents of several ldr and str instructions.

* Add 0 immediates to several instructions.

* Rename v regs to q and d variant.

The cs_regname API can not pass the variant name of the register requested.
So we simply emit the default variant name.

* Fix incorrect enum value.

* Fix tests for system operands.

* Fix syntax issues in tests.

* Rename Arm64 -> AArch64 Python bindings.

* Fix Python bindings C structs.

* Fix generation of constants (ARMCC skipped because it starts with ARM)

* Update const files

* Remove -Wmaybe-uninitialized warning since it fails fuzz build

* Add missing comma

* Fix case

* Fix AArch64 Python bindings:

- Do not generate constants automatically (dscript is way too buggy).
- Update printing of details.

* Rename ARM64 -> AArch64 in test_corpus.py

* Rename test_arm64 -> test_aarch64

* Rename ARM-64 -> AArch64

* Fix diff CI test by disassembling AArch64 at former ARM64 place

* Fix several wrong types and remove unnecessary memebers from Python binding

* Fix: Same printing format of detail for cstool, test_ and test_*.py

* Fix: pass correct op index for mov alias with op[1] == reg wzr.

* Set prfm op manuall in case of unnown sysop. set_imm would add it to an memory operand wihtout base.

* Fix: If barrier ops are not set an assert is reached.

We fix it here by simply getting the immediate as the printing code does.

---------

Co-authored-by: Peace-Maker <peace-maker@wcfan.de>
Co-authored-by: Dayton <5340801+watbulb@users.noreply.github.com>
2023-11-15 12:12:14 +08:00
Rot127
b87cf06209 Check for leading space chars in the asm text and remove them. (#2192) 2023-11-10 10:58:46 +08:00
Rot127
f8b7ae7c2a Add ARM_GRP_RET and with it some missing ARM_GRP_JUMP. (#2191) 2023-11-10 10:58:18 +08:00
Tom Aird
232e1ae359 Fix RISC-V pmpaddr typo (#2183) 2023-11-02 22:29:45 +08:00
Bap
a05afdd757 fix: correct typo in COMPILE_CMAKE.TXT (#2185) 2023-11-02 22:28:18 +08:00
Rot127
904d797729 Change RegVal type to 64bit. (#2182) 2023-10-25 12:09:08 +08:00
Quentin Buathier
47e1786b64 Fix compilation on gcc 12.2.0 (#2176) 2023-10-23 21:53:51 +08:00
Rot127
6fcbed7bc4 Fix off by one error. (#2180) 2023-10-23 21:52:35 +08:00
Michael Leslie
18c2b1ebe8 support pkg-config --static flag in capstone.pc (#2173)
Co-authored-by: Michael Leslie <mleslie@its.jnj.com>
2023-10-06 20:12:50 +08:00
Rot127
322fde9205 Fix warning about negative shifts. (#2171) 2023-09-24 11:10:29 +08:00
Rot127
cb4bf3c5d3 Add regression tests for QPX (#2169) 2023-09-24 11:09:53 +08:00
Rot127
123beeee4a Handle reserved values of the 'at' bits of BO fields. (#2168) 2023-09-22 12:55:18 +08:00
Rot127
4e496d77f1 Fix misleading-indet warning. (#2167) 2023-09-22 12:53:58 +08:00
Rot127
3868266461 Add memory properties to iPTR operands. (#2165)
This has several consequences:

- Branch immediates are memory operands from now. Hence they are added manually as immediate.
- Some operands, handled over printOprerand(), are added to a mem operand, but the mem operand
  is never closed. There is simply no indication when a memory operand ends.
  So we close the mem operand now always, after an offset or disp awas added and the base exists.
2023-09-17 12:41:33 +08:00
Rot127
9a0af75d8a Init DecodeComplete with false for all archs. (#2164) 2023-09-15 14:35:34 +08:00
peace-maker
e00a210a3d Test Python bindings in CI (#2161) 2023-09-15 14:35:09 +08:00
Wu ChenXu
4d76f87640 [Fix] no return value error in Apple Silicon (#2160)
* Disable swift binding const generate

* Fix no return value error in Apple Silicon
2023-09-11 22:15:49 +08:00
Wu ChenXu
d7a339456e Fix misspelling in COMPILE_CMAKE.TXT 2023-09-11 16:17:08 +08:00
Rot127
e001a7eace Init DecodeComplete to false to fix unintialized usage. (#2158) 2023-09-09 21:09:37 +08:00
Rot127
91fab10532 Run clang-format on PPC (#2157) 2023-09-09 21:09:13 +08:00
Nick Bray
f3e7de8030 Make capstone/ppc.h compatible with C++ (#2155) 2023-09-08 18:56:07 +08:00
Rot127
cecc8d56e5 [ARM] Vector data types (#2151) 2023-09-08 18:55:13 +08:00
Rot127
b94ab00831 Add default case to matchAliasCondition() (#2156) 2023-09-08 18:51:39 +08:00
Rot127
926cfebd6b Architecture updater (auto-sync) - Updating PPC (#2013) 2023-09-05 12:24:59 +08:00
tkoecker
198e0ab391 fix compile errors in capstone_static - unresolved external symbols (#2148) 2023-08-30 11:13:17 +08:00
Rot127
b3dd5769a1 Set correct values for the MCRegisterInfo struct. (#2146) 2023-08-28 11:00:43 +08:00
Wu ChenXu
baa273038e Disable swift binding const generate (#2142) 2023-08-21 17:55:06 +08:00
chayleaf
2f81f7bef8 allow absolute CMAKE_INSTALL_*DIR (#2134)
This patch fixes Capstone 5 build on NixOS.

NixOS's build infrastructure sets CMAKE_INSTALL_{LIB,INCLUDE}DIR to
absolute paths. If you append it to ${prefix}, you get the wrong path.
NixOS automatically detects it and links this issue:
https://github.com/NixOS/nixpkgs/issues/144170
2023-08-09 23:05:06 +08:00
Farid Zakaria
0bf0ec5805 Add support for Python binding for diasm_iter (#2136)
* Add venv to the gitignore so I can test Python code

* add test_iter.py which is nearly identical to test_lite.py

* add support for test_iter.py in check; also add missing test_lite.py

* Add support for the disasm_iter C function
2023-08-09 23:04:19 +08:00
peace-maker
0134df14c4 Fix running cstest in CI (#2126)
* Fail CI if a command fails

* Apply cs_options in MC tests

* Emit a space if the alias has one at position I.

* Fix pop instruction tests.

* Update reglist patch and fix it again in ARMGenCSMappingInsnOps.inc

* Fix VSCCLRM* patch and write attributes.

* Emit new system operand formatting in tests

* Set new syntax in issues.cs

* Fix correct setting of neon lane

* Fix cstest arm SYSM operand type output

* Add implicit reads and writes of SP to POP and PUSH.

* Fix issue tests with new syntax and group names.

---------

Co-authored-by: Rot127 <unisono@quyllur.org>
2023-08-06 18:28:52 +08:00
peace-maker
4a7a55f62a Fix ARM Python bindings (#2127) 2023-07-29 08:34:17 +08:00
Bastian Koppelmann
489538fa05 Fixing TriCore disasm instructions (#2088) 2023-07-26 14:47:05 +08:00
Wu ChenXu
4637c1b014 Merge pull request #2096 from peace-maker/python_sh
Add Python bindings for SH
2023-07-24 19:49:10 +08:00
Wu ChenXu
150ce70142 Merge pull request #2122 from Rot127/arm-sysreg-mask
[ARM] Handle system operands in way more detail.
2023-07-24 19:48:26 +08:00
Rot127
539ab53fa8 Set correct SYSm value for BankedRegister 2023-07-24 02:52:59 -05:00
Rot127
8ab1fd5e89 Set correct registers. 2023-07-24 02:45:02 -05:00
Rot127
60ffd7fc84 Fix off by one error. Because detail would have one operand more. 2023-07-24 02:45:02 -05:00
Rot127
34a239b3e6 Handle system operands in way more detail.
- Differentiates between banked and non-banked registers.
- Saves the MSR mask.
- PSR field bits are saved separately.
- SYSm value is saved if possible.
2023-07-24 02:44:59 -05:00
Peace-Maker
a4699018fb Add Python bindings for SH 2023-07-24 05:44:48 +02:00
Wu ChenXu
2aa4eb559d Merge pull request #2123 from Rot127/next-branch-v6 2023-07-24 07:30:21 +08:00
Rot127
6635f5f82e Increment next branch version. 2023-07-23 11:23:52 -05:00
Rot127
b435499c2b Add Werror to compile options. (#2114) 2023-07-23 23:18:33 +08:00