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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 // Result is returned in r0. | 296 // Result is returned in r0. |
297 void CallStoreIC(Handle<String> name, bool is_contextual, | 297 void CallStoreIC(Handle<String> name, bool is_contextual, |
298 StrictModeFlag strict_mode); | 298 StrictModeFlag strict_mode); |
299 | 299 |
300 // Call keyed load IC. Key and receiver are on the stack. Both are consumed. | 300 // Call keyed load IC. Key and receiver are on the stack. Both are consumed. |
301 // Result is returned in r0. | 301 // Result is returned in r0. |
302 void CallKeyedLoadIC(); | 302 void CallKeyedLoadIC(); |
303 | 303 |
304 // Call keyed store IC. Value, key and receiver are on the stack. All three | 304 // Call keyed store IC. Value, key and receiver are on the stack. All three |
305 // are consumed. Result is returned in r0. | 305 // are consumed. Result is returned in r0. |
306 void CallKeyedStoreIC(); | 306 void CallKeyedStoreIC(StrictModeFlag strict_mode); |
307 | 307 |
308 // Call into an IC stub given the number of arguments it removes | 308 // Call into an IC stub given the number of arguments it removes |
309 // from the stack. Register arguments to the IC stub are implicit, | 309 // from the stack. Register arguments to the IC stub are implicit, |
310 // and depend on the type of IC stub. | 310 // and depend on the type of IC stub. |
311 void CallCodeObject(Handle<Code> ic, | 311 void CallCodeObject(Handle<Code> ic, |
312 RelocInfo::Mode rmode, | 312 RelocInfo::Mode rmode, |
313 int dropped_args); | 313 int dropped_args); |
314 | 314 |
315 // Drop a number of elements from the top of the expression stack. May | 315 // Drop a number of elements from the top of the expression stack. May |
316 // emit code to affect the physical frame. Does not clobber any registers | 316 // emit code to affect the physical frame. Does not clobber any registers |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 } | 511 } |
512 } | 512 } |
513 | 513 |
514 friend class JumpTarget; | 514 friend class JumpTarget; |
515 }; | 515 }; |
516 | 516 |
517 | 517 |
518 } } // namespace v8::internal | 518 } } // namespace v8::internal |
519 | 519 |
520 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ | 520 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ |
OLD | NEW |