Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/runtime/runtime.h

Issue 2755973002: [type profile] Collect return types. (Closed)
Patch Set: Clean up. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 F(GetInterceptorInfo, 1, 1) \ 387 F(GetInterceptorInfo, 1, 1) \
388 F(ToFastProperties, 1, 1) \ 388 F(ToFastProperties, 1, 1) \
389 F(AllocateHeapNumber, 0, 1) \ 389 F(AllocateHeapNumber, 0, 1) \
390 F(NewObject, 2, 1) \ 390 F(NewObject, 2, 1) \
391 F(FinalizeInstanceSize, 1, 1) \ 391 F(FinalizeInstanceSize, 1, 1) \
392 F(LoadMutableDouble, 2, 1) \ 392 F(LoadMutableDouble, 2, 1) \
393 F(TryMigrateInstance, 1, 1) \ 393 F(TryMigrateInstance, 1, 1) \
394 F(IsJSGlobalProxy, 1, 1) \ 394 F(IsJSGlobalProxy, 1, 1) \
395 F(DefineAccessorPropertyUnchecked, 5, 1) \ 395 F(DefineAccessorPropertyUnchecked, 5, 1) \
396 F(DefineDataPropertyInLiteral, 6, 1) \ 396 F(DefineDataPropertyInLiteral, 6, 1) \
397 F(CollectTypeProfile, 4, 1) \ 397 F(CollectTypeProfile, 5, 1) \
398 F(GetDataProperty, 2, 1) \ 398 F(GetDataProperty, 2, 1) \
399 F(GetConstructorName, 1, 1) \ 399 F(GetConstructorName, 1, 1) \
400 F(HasFastPackedElements, 1, 1) \ 400 F(HasFastPackedElements, 1, 1) \
401 F(ValueOf, 1, 1) \ 401 F(ValueOf, 1, 1) \
402 F(IsJSReceiver, 1, 1) \ 402 F(IsJSReceiver, 1, 1) \
403 F(ClassOf, 1, 1) \ 403 F(ClassOf, 1, 1) \
404 F(CopyDataProperties, 2, 1) \ 404 F(CopyDataProperties, 2, 1) \
405 F(CopyDataPropertiesWithExcludedProperties, -1 /* >= 1 */, 1) \ 405 F(CopyDataPropertiesWithExcludedProperties, -1 /* >= 1 */, 1) \
406 F(DefineGetterPropertyUnchecked, 4, 1) \ 406 F(DefineGetterPropertyUnchecked, 4, 1) \
407 F(DefineSetterPropertyUnchecked, 4, 1) \ 407 F(DefineSetterPropertyUnchecked, 4, 1) \
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 kMaybeDeopted = 1 << 3, 851 kMaybeDeopted = 1 << 3,
852 kOptimized = 1 << 4, 852 kOptimized = 1 << 4,
853 kTurboFanned = 1 << 5, 853 kTurboFanned = 1 << 5,
854 kInterpreted = 1 << 6, 854 kInterpreted = 1 << 6,
855 }; 855 };
856 856
857 } // namespace internal 857 } // namespace internal
858 } // namespace v8 858 } // namespace v8
859 859
860 #endif // V8_RUNTIME_RUNTIME_H_ 860 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698