| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 | 283 |
| 284 // Call store IC. If the load is contextual, value is found on top of the | 284 // Call store IC. If the load is contextual, value is found on top of the |
| 285 // frame. If not, value and receiver are on the frame. Both are consumed. | 285 // frame. If not, value and receiver are on the frame. Both are consumed. |
| 286 // Result is returned in r0. | 286 // Result is returned in r0. |
| 287 void CallStoreIC(Handle<String> name, bool is_contextual); | 287 void CallStoreIC(Handle<String> name, bool is_contextual); |
| 288 | 288 |
| 289 // Call keyed load IC. Key and receiver are on the stack. Both are consumed. | 289 // Call keyed load IC. Key and receiver are on the stack. Both are consumed. |
| 290 // Result is returned in r0. | 290 // Result is returned in r0. |
| 291 void CallKeyedLoadIC(); | 291 void CallKeyedLoadIC(); |
| 292 | 292 |
| 293 // Call keyed store IC. Key and receiver are on the stack and the value is in | 293 // Call keyed store IC. Value, key and receiver are on the stack. All three |
| 294 // r0. Result is returned in r0. | 294 // are consumed. Result is returned in r0. |
| 295 void CallKeyedStoreIC(); | 295 void CallKeyedStoreIC(); |
| 296 | 296 |
| 297 // Call into an IC stub given the number of arguments it removes | 297 // Call into an IC stub given the number of arguments it removes |
| 298 // from the stack. Register arguments to the IC stub are implicit, | 298 // from the stack. Register arguments to the IC stub are implicit, |
| 299 // and depend on the type of IC stub. | 299 // and depend on the type of IC stub. |
| 300 void CallCodeObject(Handle<Code> ic, | 300 void CallCodeObject(Handle<Code> ic, |
| 301 RelocInfo::Mode rmode, | 301 RelocInfo::Mode rmode, |
| 302 int dropped_args); | 302 int dropped_args); |
| 303 | 303 |
| 304 // Drop a number of elements from the top of the expression stack. May | 304 // Drop a number of elements from the top of the expression stack. May |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 | 472 |
| 473 inline bool Equals(VirtualFrame* other); | 473 inline bool Equals(VirtualFrame* other); |
| 474 | 474 |
| 475 friend class JumpTarget; | 475 friend class JumpTarget; |
| 476 }; | 476 }; |
| 477 | 477 |
| 478 | 478 |
| 479 } } // namespace v8::internal | 479 } } // namespace v8::internal |
| 480 | 480 |
| 481 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ | 481 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ |
| OLD | NEW |