summaryrefslogtreecommitdiff
path: root/backend/src/backend/gen_encoder.cpp
diff options
context:
space:
mode:
authorPan Xiuli <xiuli.pan@intel.com>2015-11-24 15:51:40 +0800
committerYang Rong <rong.r.yang@intel.com>2015-11-24 16:58:48 +0800
commit6b13eaaa93b3e1089b17e7996624fa3017e8a60e (patch)
tree813e32f9d2e14b90352913ee7e39d8d4ddbca728 /backend/src/backend/gen_encoder.cpp
parente5aceb38782e076d61cd4fed4f363aace614dc47 (diff)
Backend: enable to choose notification register
There are 3 notification can be used by wait, so we should be able to choose which one we'd like to use. Also the 3 reg is n0.0 n0.1 and n0.2 so also change the function name. Signed-off-by: Pan Xiuli <xiuli.pan@intel.com> Reviewed-by: Yang Rong <rong.r.yang@intel.com>
Diffstat (limited to 'backend/src/backend/gen_encoder.cpp')
-rw-r--r--backend/src/backend/gen_encoder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/src/backend/gen_encoder.cpp b/backend/src/backend/gen_encoder.cpp
index b153a2cf..1ad4f012 100644
--- a/backend/src/backend/gen_encoder.cpp
+++ b/backend/src/backend/gen_encoder.cpp
@@ -994,9 +994,9 @@ namespace gbe
this->setSrc1(insn, src1);
}
- void GenEncoder::WAIT(void) {
+ void GenEncoder::WAIT(uint32_t n) {
GenNativeInstruction *insn = this->next(GEN_OPCODE_WAIT);
- GenRegister src = GenRegister::notification1();
+ GenRegister src = GenRegister::notification0(n);
this->setDst(insn, GenRegister::null());
this->setSrc0(insn, src);
this->setSrc1(insn, GenRegister::null());