| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 999 Register result); | 999 Register result); |
| 1000 | 1000 |
| 1001 | 1001 |
| 1002 void ClampUint8(Register output_reg, Register input_reg); | 1002 void ClampUint8(Register output_reg, Register input_reg); |
| 1003 | 1003 |
| 1004 void ClampDoubleToUint8(Register result_reg, | 1004 void ClampDoubleToUint8(Register result_reg, |
| 1005 DoubleRegister input_reg, | 1005 DoubleRegister input_reg, |
| 1006 DoubleRegister temp_double_reg); | 1006 DoubleRegister temp_double_reg); |
| 1007 | 1007 |
| 1008 | 1008 |
| 1009 void LoadInstanceDescriptors(Register map, Register descriptors); |
| 1010 |
| 1009 private: | 1011 private: |
| 1010 void CallCFunctionHelper(Register function, | 1012 void CallCFunctionHelper(Register function, |
| 1011 ExternalReference function_reference, | 1013 ExternalReference function_reference, |
| 1012 Register scratch, | 1014 Register scratch, |
| 1013 int num_reg_arguments, | 1015 int num_reg_arguments, |
| 1014 int num_double_arguments); | 1016 int num_double_arguments); |
| 1015 | 1017 |
| 1016 void Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond = al); | 1018 void Jump(intptr_t target, RelocInfo::Mode rmode, Condition cond = al); |
| 1017 int CallSize(intptr_t target, RelocInfo::Mode rmode, Condition cond = al); | 1019 int CallSize(intptr_t target, RelocInfo::Mode rmode, Condition cond = al); |
| 1018 void Call(intptr_t target, | 1020 void Call(intptr_t target, |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) | 1108 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) |
| 1107 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> | 1109 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> |
| 1108 #else | 1110 #else |
| 1109 #define ACCESS_MASM(masm) masm-> | 1111 #define ACCESS_MASM(masm) masm-> |
| 1110 #endif | 1112 #endif |
| 1111 | 1113 |
| 1112 | 1114 |
| 1113 } } // namespace v8::internal | 1115 } } // namespace v8::internal |
| 1114 | 1116 |
| 1115 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ | 1117 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |