| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 void Call(intptr_t target, RelocMode rmode, Condition cond = al); | 81 void Call(intptr_t target, RelocMode rmode, Condition cond = al); |
| 82 public: | 82 public: |
| 83 void Jump(Register target, Condition cond = al); | 83 void Jump(Register target, Condition cond = al); |
| 84 void Jump(byte* target, RelocMode rmode, Condition cond = al); | 84 void Jump(byte* target, RelocMode rmode, Condition cond = al); |
| 85 void Jump(Handle<Code> code, RelocMode rmode, Condition cond = al); | 85 void Jump(Handle<Code> code, RelocMode rmode, Condition cond = al); |
| 86 void Call(Register target, Condition cond = al); | 86 void Call(Register target, Condition cond = al); |
| 87 void Call(byte* target, RelocMode rmode, Condition cond = al); | 87 void Call(byte* target, RelocMode rmode, Condition cond = al); |
| 88 void Call(Handle<Code> code, RelocMode rmode, Condition cond = al); | 88 void Call(Handle<Code> code, RelocMode rmode, Condition cond = al); |
| 89 void Ret(); | 89 void Ret(); |
| 90 | 90 |
| 91 |
| 91 // Sets the remembered set bit for [address+offset], where address is the | 92 // Sets the remembered set bit for [address+offset], where address is the |
| 92 // address of the heap object 'object'. The address must be in the first 8K | 93 // address of the heap object 'object'. The address must be in the first 8K |
| 93 // of an allocated page. The 'scratch' register is used in the | 94 // of an allocated page. The 'scratch' register is used in the |
| 94 // implementation and all 3 registers are clobbered by the operation, as | 95 // implementation and all 3 registers are clobbered by the operation, as |
| 95 // well as the ip register. | 96 // well as the ip register. |
| 96 void RecordWrite(Register object, Register offset, Register scratch); | 97 void RecordWrite(Register object, Register offset, Register scratch); |
| 97 | 98 |
| 98 // --------------------------------------------------------------------------- | 99 // --------------------------------------------------------------------------- |
| 99 // Activation frames | 100 // Activation frames |
| 100 | 101 |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 // Generate a MemOperand for loading a field from an object. | 252 // Generate a MemOperand for loading a field from an object. |
| 252 static inline MemOperand FieldMemOperand(Register object, int offset) { | 253 static inline MemOperand FieldMemOperand(Register object, int offset) { |
| 253 return MemOperand(object, offset - kHeapObjectTag); | 254 return MemOperand(object, offset - kHeapObjectTag); |
| 254 } | 255 } |
| 255 | 256 |
| 256 | 257 |
| 257 | 258 |
| 258 } } // namespace v8::internal | 259 } } // namespace v8::internal |
| 259 | 260 |
| 260 #endif // V8_MACRO_ASSEMBLER_ARM_H_ | 261 #endif // V8_MACRO_ASSEMBLER_ARM_H_ |
| OLD | NEW |