OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 Register scratch, | 318 Register scratch, |
319 SaveFPRegsMode save_fp, | 319 SaveFPRegsMode save_fp, |
320 RememberedSetFinalAction and_then); | 320 RememberedSetFinalAction and_then); |
321 | 321 |
322 void CheckPageFlag(Register object, | 322 void CheckPageFlag(Register object, |
323 Register scratch, | 323 Register scratch, |
324 int mask, | 324 int mask, |
325 Condition cc, | 325 Condition cc, |
326 Label* condition_met); | 326 Label* condition_met); |
327 | 327 |
| 328 void CheckMapDeprecated(Handle<Map> map, |
| 329 Register scratch, |
| 330 Label* if_deprecated); |
| 331 |
328 // Check if object is in new space. Jumps if the object is not in new space. | 332 // Check if object is in new space. Jumps if the object is not in new space. |
329 // The register scratch can be object itself, but it will be clobbered. | 333 // The register scratch can be object itself, but it will be clobbered. |
330 void JumpIfNotInNewSpace(Register object, | 334 void JumpIfNotInNewSpace(Register object, |
331 Register scratch, | 335 Register scratch, |
332 Label* branch) { | 336 Label* branch) { |
333 InNewSpace(object, scratch, ne, branch); | 337 InNewSpace(object, scratch, ne, branch); |
334 } | 338 } |
335 | 339 |
336 // Check if object is in new space. Jumps if the object is in new space. | 340 // Check if object is in new space. Jumps if the object is in new space. |
337 // The register scratch can be object itself, but scratch will be clobbered. | 341 // The register scratch can be object itself, but scratch will be clobbered. |
(...skipping 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1578 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) | 1582 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) |
1579 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1583 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
1580 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1584 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
1581 #else | 1585 #else |
1582 #define ACCESS_MASM(masm) masm-> | 1586 #define ACCESS_MASM(masm) masm-> |
1583 #endif | 1587 #endif |
1584 | 1588 |
1585 } } // namespace v8::internal | 1589 } } // namespace v8::internal |
1586 | 1590 |
1587 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ | 1591 #endif // V8_MIPS_MACRO_ASSEMBLER_MIPS_H_ |
OLD | NEW |