| OLD | NEW |
| 1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 int arg_count); | 309 int arg_count); |
| 310 | 310 |
| 311 // Call load IC. Receiver is on the stack and the property name is in r2. | 311 // Call load IC. Receiver is on the stack and the property name is in r2. |
| 312 // Result is returned in r0. | 312 // Result is returned in r0. |
| 313 void CallLoadIC(RelocInfo::Mode mode); | 313 void CallLoadIC(RelocInfo::Mode mode); |
| 314 | 314 |
| 315 // Call keyed load IC. Key and receiver are on the stack. Result is returned | 315 // Call keyed load IC. Key and receiver are on the stack. Result is returned |
| 316 // in r0. | 316 // in r0. |
| 317 void CallKeyedLoadIC(); | 317 void CallKeyedLoadIC(); |
| 318 | 318 |
| 319 // Call keyed store IC. Key and receiver are on the stack and the value is in |
| 320 // r0. Result is returned in r0. |
| 321 void CallKeyedStoreIC(); |
| 322 |
| 319 // Call into an IC stub given the number of arguments it removes | 323 // Call into an IC stub given the number of arguments it removes |
| 320 // from the stack. Register arguments to the IC stub are implicit, | 324 // from the stack. Register arguments to the IC stub are implicit, |
| 321 // and depend on the type of IC stub. | 325 // and depend on the type of IC stub. |
| 322 void CallCodeObject(Handle<Code> ic, | 326 void CallCodeObject(Handle<Code> ic, |
| 323 RelocInfo::Mode rmode, | 327 RelocInfo::Mode rmode, |
| 324 int dropped_args); | 328 int dropped_args); |
| 325 | 329 |
| 326 // Drop a number of elements from the top of the expression stack. May | 330 // Drop a number of elements from the top of the expression stack. May |
| 327 // emit code to affect the physical frame. Does not clobber any registers | 331 // emit code to affect the physical frame. Does not clobber any registers |
| 328 // excepting possibly the stack pointer. | 332 // excepting possibly the stack pointer. |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 inline bool Equals(VirtualFrame* other); | 485 inline bool Equals(VirtualFrame* other); |
| 482 | 486 |
| 483 friend class JumpTarget; | 487 friend class JumpTarget; |
| 484 friend class DeferredCode; | 488 friend class DeferredCode; |
| 485 }; | 489 }; |
| 486 | 490 |
| 487 | 491 |
| 488 } } // namespace v8::internal | 492 } } // namespace v8::internal |
| 489 | 493 |
| 490 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ | 494 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ |
| OLD | NEW |