Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
01da1b51
Commit
01da1b51
authored
Feb 12, 2015
by
peastman
Browse files
Updated to latest asmjit, which supports 32 bit mode
parent
26790496
Changes
45
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1635 additions
and
840 deletions
+1635
-840
libraries/asmjit/x86/x86inst.h
libraries/asmjit/x86/x86inst.h
+580
-381
libraries/asmjit/x86/x86operand.h
libraries/asmjit/x86/x86operand.h
+800
-301
libraries/asmjit/x86/x86operand_regs.cpp
libraries/asmjit/x86/x86operand_regs.cpp
+253
-156
libraries/asmjit/x86/x86scheduler.cpp
libraries/asmjit/x86/x86scheduler.cpp
+1
-1
serialization/src/XmlSerializer.cpp
serialization/src/XmlSerializer.cpp
+1
-1
No files found.
libraries/asmjit/x86/x86inst.h
View file @
01da1b51
This diff is collapsed.
Click to expand it.
libraries/asmjit/x86/x86operand.h
View file @
01da1b51
This diff is collapsed.
Click to expand it.
libraries/asmjit/x86/x86operand_regs.cpp
View file @
01da1b51
This diff is collapsed.
Click to expand it.
libraries/asmjit/x86/x86scheduler.cpp
View file @
01da1b51
...
@@ -76,7 +76,7 @@ Error X86Scheduler::run(Node* start, Node* stop) {
...
@@ -76,7 +76,7 @@ Error X86Scheduler::run(Node* start, Node* stop) {
Node* next = node_->getNext();
Node* next = node_->getNext();
ASMJIT_ASSERT(node_->getType() == kNodeTypeInst);
ASMJIT_ASSERT(node_->getType() == kNodeTypeInst);
printf(" %s\n", X86Util::getInstInfo(static_cast<InstNode*>(node_)->get
Code
()).getInstName());
printf(" %s\n", X86Util::getInstInfo(static_cast<InstNode*>(node_)->get
InstId
()).getInstName());
node_ = next;
node_ = next;
}
}
...
...
serialization/src/XmlSerializer.cpp
View file @
01da1b51
...
@@ -90,7 +90,7 @@ static void encodeString(const string& str, string* outString) {
...
@@ -90,7 +90,7 @@ static void encodeString(const string& str, string* outString) {
// Below 32 is symbolic.
// Below 32 is symbolic.
char
buf
[
32
];
char
buf
[
32
];
s
n
printf
(
buf
,
sizeof
(
buf
),
"&#x%02X;"
,
(
unsigned
)
(
c
&
0xff
));
sprintf
(
buf
,
"&#x%02X;"
,
(
unsigned
)
(
c
&
0xff
));
//*ME: warning C4267: convert 'size_t' to 'int'
//*ME: warning C4267: convert 'size_t' to 'int'
//*ME: Int-Cast to make compiler happy ...
//*ME: Int-Cast to make compiler happy ...
...
...
Prev
1
2
3
Next
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