Changeset 162777 in webkit for trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToLLVM.cpp
- Timestamp:
- Jan 25, 2014, 1:16:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ftl/FTLLowerDFGToLLVM.cpp
r161399 r162777 43 43 #include "Operations.h" 44 44 #include "VirtualRegister.h" 45 45 #include <atomic> 46 46 #include <wtf/ProcessID.h> 47 47 … … 50 50 using namespace DFG; 51 51 52 static intcompileCounter;52 static std::atomic<int> compileCounter; 53 53 54 54 // Using this instead of typeCheck() helps to reduce the load on LLVM, by creating … … 82 82 if (verboseCompilationEnabled()) { 83 83 name = toCString( 84 "jsBody_", atomicIncrement(&compileCounter), "_", codeBlock()->inferredName(),84 "jsBody_", ++compileCounter, "_", codeBlock()->inferredName(), 85 85 "_", codeBlock()->hash()); 86 86 } else
Note:
See TracChangeset
for help on using the changeset viewer.