Chromium Code Reviews| Index: src/trusted/validator_mips/model.h |
| diff --git a/src/trusted/validator_mips/model.h b/src/trusted/validator_mips/model.h |
| index 12a268ccefe9ae49b0d23151d2d43549181ed12e..013bdc6bf61e4fd1792ebda10b54f1878c16dc2f 100644 |
| --- a/src/trusted/validator_mips/model.h |
| +++ b/src/trusted/validator_mips/model.h |
| @@ -42,7 +42,7 @@ class Register { |
| static const Number kJumpMask = 14; // $t6 = holds mask for jr. |
| static const Number kLoadStoreMask = 15; // $t7 = holds mask for load/store. |
| - static const Number kTls = 24; // $t8 = holds tls index. |
| + static const Number kTls = 24; // $t8 = holds pointer to tp index. |
|
Mark Seaborn
2015/12/27 03:46:35
"tp index" isn't quite right, is it? Is it an ind
petarj
2015/12/28 14:07:00
I have modified it to "holds address of tls_value1
Mark Seaborn
2015/12/30 02:12:40
Well, it doesn't hold that address, at least not u
|
| static const Number kSp = 29; // Stack pointer. |
| static const Number kNone = 32; |
| @@ -174,7 +174,7 @@ uint32_t const kBundleAlign = 0xFFFFFFF0; |
| // Opcode for nop instruction. |
| uint32_t const kNop = 0x0; |
| -} // namespace |
| +} // namespace nacl_mips_dec |
| // Definitions for our inlined functions. |
| #include "native_client/src/trusted/validator_mips/model-inl.h" |