mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-18 10:46:38 +00:00
d57b7423af
* format/elf: fix is_in_pphdr function That function should check if an address is in the file "side" of the phdr, so it should check for filesz and not memsz * format/elf: consider filesz even when looking at virtual space A virtual address that is included in p_memsz but not in p_filesz, means that it's an address that has no counterpart in the physical file, does it makes no sense to look at memsz when converting an address from virtual to physical. * bin/demangle: demangle names that end with @@CXXABI After last commit, we get correct mangled names that, according to other tools, include also the @@CXXABI part. This patch removes the @@CXXABI suffix because the cplus_demangle_v3 function is not able to deal with it.
24 lines
737 B
YAML
24 lines
737 B
YAML
Language: Cpp
|
|
MaxEmptyLinesToKeep: 1
|
|
SpaceBeforeParens: Always
|
|
SpaceInEmptyParentheses: false
|
|
SpacesInContainerLiterals: true
|
|
BasedOnStyle: LLVM
|
|
ContinuationIndentWidth: 8
|
|
IndentCaseLabels: false
|
|
IndentFunctionDeclarationAfterType: false
|
|
IndentWidth: 8
|
|
UseTab: Always
|
|
ColumnLimit: 0
|
|
BreakBeforeBraces: Attach
|
|
BreakBeforeTernaryOperators: true
|
|
AllowShortIfStatementsOnASingleLine: false
|
|
AllowShortCaseLabelsOnASingleLine: true
|
|
AllowShortFunctionsOnASingleLine: Inline
|
|
AllowShortLoopsOnASingleLine: false
|
|
AlignAfterOpenBracket: DontAlign
|
|
AlignTrailingComments: false
|
|
AlignOperands: false
|
|
Cpp11BracedListStyle: false
|
|
ForEachMacros: ['r_list_foreach', 'ls_foreach', 'fcn_tree_foreach_intersect', 'r_skiplist_foreach', 'graph_foreach_anode']
|