Changeset 153231 in webkit for trunk/Source/JavaScriptCore/jit/JIT.h
- Timestamp:
- Jul 24, 2013, 9:03:07 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JIT.h
r153222 r153231 461 461 // This assumes that the value to profile is in regT0 and that regT3 is available for 462 462 // scratch. 463 void emitValueProfilingSite(ValueProfile* );464 void emitValueProfilingSite(unsigned bytecodeOffset );465 void emitValueProfilingSite( );466 #else 467 void emitValueProfilingSite(unsigned ) { }468 void emitValueProfilingSite( ) { }463 void emitValueProfilingSite(ValueProfile*, RegisterID); 464 void emitValueProfilingSite(unsigned bytecodeOffset, RegisterID); 465 void emitValueProfilingSite(RegisterID); 466 #else 467 void emitValueProfilingSite(unsigned, RegisterID) { } 468 void emitValueProfilingSite(RegisterID) { } 469 469 #endif 470 470 void emitArrayProfilingSite(RegisterID structureAndIndexingType, RegisterID scratch, ArrayProfile*);
Note:
See TracChangeset
for help on using the changeset viewer.