| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 Register scratch, | 205 Register scratch, |
| 206 SaveFPRegsMode save_fp, | 206 SaveFPRegsMode save_fp, |
| 207 RememberedSetFinalAction and_then); | 207 RememberedSetFinalAction and_then); |
| 208 | 208 |
| 209 void CheckPageFlag(Register object, | 209 void CheckPageFlag(Register object, |
| 210 Register scratch, | 210 Register scratch, |
| 211 int mask, | 211 int mask, |
| 212 Condition cc, | 212 Condition cc, |
| 213 Label* condition_met); | 213 Label* condition_met); |
| 214 | 214 |
| 215 void CheckMapDeprecated(Handle<Map> map, |
| 216 Register scratch, |
| 217 Label* if_deprecated); |
| 218 |
| 215 // Check if object is in new space. Jumps if the object is not in new space. | 219 // Check if object is in new space. Jumps if the object is not in new space. |
| 216 // The register scratch can be object itself, but scratch will be clobbered. | 220 // The register scratch can be object itself, but scratch will be clobbered. |
| 217 void JumpIfNotInNewSpace(Register object, | 221 void JumpIfNotInNewSpace(Register object, |
| 218 Register scratch, | 222 Register scratch, |
| 219 Label* branch) { | 223 Label* branch) { |
| 220 InNewSpace(object, scratch, ne, branch); | 224 InNewSpace(object, scratch, ne, branch); |
| 221 } | 225 } |
| 222 | 226 |
| 223 // Check if object is in new space. Jumps if the object is in new space. | 227 // Check if object is in new space. Jumps if the object is in new space. |
| 224 // The register scratch can be object itself, but it will be clobbered. | 228 // The register scratch can be object itself, but it will be clobbered. |
| (...skipping 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1448 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1452 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1449 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1453 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1450 #else | 1454 #else |
| 1451 #define ACCESS_MASM(masm) masm-> | 1455 #define ACCESS_MASM(masm) masm-> |
| 1452 #endif | 1456 #endif |
| 1453 | 1457 |
| 1454 | 1458 |
| 1455 } } // namespace v8::internal | 1459 } } // namespace v8::internal |
| 1456 | 1460 |
| 1457 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1461 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |