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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 // Call load IC. Name and receiver are found on top of the frame. | 331 // Call load IC. Name and receiver are found on top of the frame. |
332 // Both are dropped. | 332 // Both are dropped. |
333 Result CallLoadIC(RelocInfo::Mode mode); | 333 Result CallLoadIC(RelocInfo::Mode mode); |
334 | 334 |
335 // Call keyed load IC. Key and receiver are found on top of the | 335 // Call keyed load IC. Key and receiver are found on top of the |
336 // frame. Both are dropped. | 336 // frame. Both are dropped. |
337 Result CallKeyedLoadIC(RelocInfo::Mode mode); | 337 Result CallKeyedLoadIC(RelocInfo::Mode mode); |
338 | 338 |
339 // Call store IC. If the load is contextual, value is found on top of the | 339 // Call store IC. If the load is contextual, value is found on top of the |
340 // frame. If not, value and receiver are on the frame. Both are dropped. | 340 // frame. If not, value and receiver are on the frame. Both are dropped. |
341 Result CallStoreIC(Handle<String> name, bool is_contextual); | 341 Result CallStoreIC(Handle<String> name, bool is_contextual, |
| 342 StrictModeFlag strict_mode); |
342 | 343 |
343 // Call keyed store IC. Value, key, and receiver are found on top | 344 // Call keyed store IC. Value, key, and receiver are found on top |
344 // of the frame. All three are dropped. | 345 // of the frame. All three are dropped. |
345 Result CallKeyedStoreIC(); | 346 Result CallKeyedStoreIC(); |
346 | 347 |
347 // Call call IC. Function name, arguments, and receiver are found on top | 348 // Call call IC. Function name, arguments, and receiver are found on top |
348 // of the frame and dropped by the call. | 349 // of the frame and dropped by the call. |
349 // The argument count does not include the receiver. | 350 // The argument count does not include the receiver. |
350 Result CallCallIC(RelocInfo::Mode mode, int arg_count, int loop_nesting); | 351 Result CallCallIC(RelocInfo::Mode mode, int arg_count, int loop_nesting); |
351 | 352 |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 | 582 |
582 // Classes that need raw access to the elements_ array. | 583 // Classes that need raw access to the elements_ array. |
583 friend class FrameRegisterState; | 584 friend class FrameRegisterState; |
584 friend class JumpTarget; | 585 friend class JumpTarget; |
585 }; | 586 }; |
586 | 587 |
587 | 588 |
588 } } // namespace v8::internal | 589 } } // namespace v8::internal |
589 | 590 |
590 #endif // V8_X64_VIRTUAL_FRAME_X64_H_ | 591 #endif // V8_X64_VIRTUAL_FRAME_X64_H_ |
OLD | NEW |