| OLD | NEW | 
|---|
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 475 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 486 #define INLINE_FUNCTION_LIST(F) \ | 486 #define INLINE_FUNCTION_LIST(F) \ | 
| 487   F(IsSmi, 1, 1)                                                             \ | 487   F(IsSmi, 1, 1)                                                             \ | 
| 488   F(IsNonNegativeSmi, 1, 1)                                                  \ | 488   F(IsNonNegativeSmi, 1, 1)                                                  \ | 
| 489   F(IsArray, 1, 1)                                                           \ | 489   F(IsArray, 1, 1)                                                           \ | 
| 490   F(IsRegExp, 1, 1)                                                          \ | 490   F(IsRegExp, 1, 1)                                                          \ | 
| 491   F(CallFunction, -1 /* receiver + n args + function */, 1)                  \ | 491   F(CallFunction, -1 /* receiver + n args + function */, 1)                  \ | 
| 492   F(ArgumentsLength, 0, 1)                                                   \ | 492   F(ArgumentsLength, 0, 1)                                                   \ | 
| 493   F(Arguments, 1, 1)                                                         \ | 493   F(Arguments, 1, 1)                                                         \ | 
| 494   F(ValueOf, 1, 1)                                                           \ | 494   F(ValueOf, 1, 1)                                                           \ | 
| 495   F(SetValueOf, 2, 1)                                                        \ | 495   F(SetValueOf, 2, 1)                                                        \ | 
|  | 496   F(DateField, 2, 1)                                                         \ | 
|  | 497   F(SetDateField, 3, 1)                                                      \ | 
| 496   F(StringCharFromCode, 1, 1)                                                \ | 498   F(StringCharFromCode, 1, 1)                                                \ | 
| 497   F(StringCharAt, 2, 1)                                                      \ | 499   F(StringCharAt, 2, 1)                                                      \ | 
| 498   F(ObjectEquals, 2, 1)                                                      \ | 500   F(ObjectEquals, 2, 1)                                                      \ | 
| 499   F(RandomHeapNumber, 0, 1)                                                  \ | 501   F(RandomHeapNumber, 0, 1)                                                  \ | 
| 500   F(IsObject, 1, 1)                                                          \ | 502   F(IsObject, 1, 1)                                                          \ | 
| 501   F(IsFunction, 1, 1)                                                        \ | 503   F(IsFunction, 1, 1)                                                        \ | 
| 502   F(IsUndetectableObject, 1, 1)                                              \ | 504   F(IsUndetectableObject, 1, 1)                                              \ | 
| 503   F(IsSpecObject, 1, 1)                                                      \ | 505   F(IsSpecObject, 1, 1)                                                      \ | 
| 504   F(IsStringWrapperSafeForDefaultValueOf, 1, 1)                              \ | 506   F(IsStringWrapperSafeForDefaultValueOf, 1, 1)                              \ | 
| 505   F(MathPow, 2, 1)                                                           \ | 507   F(MathPow, 2, 1)                                                           \ | 
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 698 //--------------------------------------------------------------------------- | 700 //--------------------------------------------------------------------------- | 
| 699 // Constants used by interface to runtime functions. | 701 // Constants used by interface to runtime functions. | 
| 700 | 702 | 
| 701 class DeclareGlobalsEvalFlag:     public BitField<bool,         0, 1> {}; | 703 class DeclareGlobalsEvalFlag:     public BitField<bool,         0, 1> {}; | 
| 702 class DeclareGlobalsNativeFlag:   public BitField<bool,         1, 1> {}; | 704 class DeclareGlobalsNativeFlag:   public BitField<bool,         1, 1> {}; | 
| 703 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 705 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 
| 704 | 706 | 
| 705 } }  // namespace v8::internal | 707 } }  // namespace v8::internal | 
| 706 | 708 | 
| 707 #endif  // V8_RUNTIME_H_ | 709 #endif  // V8_RUNTIME_H_ | 
| OLD | NEW | 
|---|