Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(826)

Unified Diff: src/IceInstX8632.cpp

Issue 463563006: Subzero: Randomly insert nops. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Remove redundancy and fix formatting. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceInstX8632.h ('k') | src/IceRNG.h » ('j') | src/IceRNG.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstX8632.cpp
diff --git a/src/IceInstX8632.cpp b/src/IceInstX8632.cpp
index 1f7508bc413a6f1d26850b97d51188548978bc81..13be72d6c37316af18d179a4d23abafe0bf815cb 100644
--- a/src/IceInstX8632.cpp
+++ b/src/IceInstX8632.cpp
@@ -256,6 +256,9 @@ InstX8632Movzx::InstX8632Movzx(Cfg *Func, Variable *Dest, Operand *Source)
addSource(Source);
}
+InstX8632Nop::InstX8632Nop(Cfg *Func, SizeT Length)
+ : InstX8632(Func, InstX8632::Nop, 0, NULL), Length(Length) {}
+
InstX8632Fld::InstX8632Fld(Cfg *Func, Operand *Src)
: InstX8632(Func, InstX8632::Fld, 1, NULL) {
addSource(Src);
@@ -1123,6 +1126,20 @@ void InstX8632Movzx::dump(const Cfg *Func) const {
dumpSources(Func);
}
+void InstX8632Nop::emit(const Cfg *Func) const {
+ Ostream &Str = Func->getContext()->getStrEmit();
+ assert(Length);
+ // TODO: When an assembler is used, use the recommended opcodes in the
+ // Intel manual to emit nop instructions based on the length.
+ Str << "\tnop\t# length = " << Length << (Length > 1 ? " bytes" : " byte")
+ << "\n";
+}
+
+void InstX8632Nop::dump(const Cfg *Func) const {
+ Ostream &Str = Func->getContext()->getStrDump();
+ Str << "nop (length = " << Length << (Length > 1 ? " bytes)" : " byte)");
+}
+
void InstX8632Fld::emit(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrEmit();
assert(getSrcSize() == 1);
« no previous file with comments | « src/IceInstX8632.h ('k') | src/IceRNG.h » ('j') | src/IceRNG.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698