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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 InvokeJSFlags flag, | 287 InvokeJSFlags flag, |
288 int arg_count); | 288 int arg_count); |
289 | 289 |
290 // Call load IC. Receiver is on the stack and is consumed. Result is returned | 290 // Call load IC. Receiver is on the stack and is consumed. Result is returned |
291 // in r0. | 291 // in r0. |
292 void CallLoadIC(Handle<String> name, RelocInfo::Mode mode); | 292 void CallLoadIC(Handle<String> name, RelocInfo::Mode mode); |
293 | 293 |
294 // Call store IC. If the load is contextual, value is found on top of the | 294 // Call store IC. If the load is contextual, value is found on top of the |
295 // frame. If not, value and receiver are on the frame. Both are consumed. | 295 // frame. If not, value and receiver are on the frame. Both are consumed. |
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 | 299 |
299 // 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. |
300 // Result is returned in r0. | 301 // Result is returned in r0. |
301 void CallKeyedLoadIC(); | 302 void CallKeyedLoadIC(); |
302 | 303 |
303 // 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 |
304 // are consumed. Result is returned in r0. | 305 // are consumed. Result is returned in r0. |
305 void CallKeyedStoreIC(); | 306 void CallKeyedStoreIC(); |
306 | 307 |
307 // 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 |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 } | 511 } |
511 } | 512 } |
512 | 513 |
513 friend class JumpTarget; | 514 friend class JumpTarget; |
514 }; | 515 }; |
515 | 516 |
516 | 517 |
517 } } // namespace v8::internal | 518 } } // namespace v8::internal |
518 | 519 |
519 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ | 520 #endif // V8_ARM_VIRTUAL_FRAME_ARM_H_ |
OLD | NEW |