Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cwe_checker
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
cwe_checker
Commits
0c38cac5
Unverified
Commit
0c38cac5
authored
4 years ago
by
Melvin Klimke
Committed by
GitHub
4 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add fall through branch to cbranch (#108)
parent
57b92dba
master
…
v0.7
v0.6
v0.5
v0.4
No related merge requests found
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
PcodeExtractor.java
ghidra/p_code_extractor/PcodeExtractor.java
+0
-0
PcodeBlockData.java
ghidra/p_code_extractor/internal/PcodeBlockData.java
+8
-0
Blk.java
ghidra/p_code_extractor/term/Blk.java
+4
-0
No files found.
ghidra/p_code_extractor/PcodeExtractor.java
View file @
0c38cac5
This diff is collapsed.
Click to expand it.
ghidra/p_code_extractor/internal/PcodeBlockData.java
View file @
0c38cac5
...
...
@@ -40,6 +40,14 @@ public final class PcodeBlockData {
*/
public
static
int
instructionIndex
;
/**
* contains the current processed pcodeOp of the current assembly instruction.
*/
public
static
PcodeOp
pcodeOp
;
/**
* Contains the index of the current pcodeOp of the current assembly instruction.
*/
public
static
int
pcodeIndex
;
/**
* Contains the number of assembly instructions in the current Ghidra block
*/
public
static
long
numberOfInstructionsInBlock
;
...
...
This diff is collapsed.
Click to expand it.
ghidra/p_code_extractor/term/Blk.java
View file @
0c38cac5
...
...
@@ -48,5 +48,9 @@ public class Blk {
this
.
defs
.
addAll
(
defs
);
}
public
void
addMultipleJumps
(
ArrayList
<
Term
<
Jmp
>>
jmps
)
{
this
.
jmps
.
addAll
(
jmps
);
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment