| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2  * Copyright (C) 2013 Google Inc. All rights reserved. | 2  * Copyright (C) 2013 Google Inc. All rights reserved. | 
| 3  * | 3  * | 
| 4  * Redistribution and use in source and binary forms, with or without | 4  * Redistribution and use in source and binary forms, with or without | 
| 5  * modification, are permitted provided that the following conditions are | 5  * modification, are permitted provided that the following conditions are | 
| 6  * met: | 6  * met: | 
| 7  * | 7  * | 
| 8  *     * Redistributions of source code must retain the above copyright | 8  *     * Redistributions of source code must retain the above copyright | 
| 9  * notice, this list of conditions and the following disclaimer. | 9  * notice, this list of conditions and the following disclaimer. | 
| 10  *     * Redistributions in binary form must reproduce the above | 10  *     * Redistributions in binary form must reproduce the above | 
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 540     } | 540     } | 
| 541 }; | 541 }; | 
| 542 | 542 | 
| 543 template<> class ThreadStateFor<AnyThread> { | 543 template<> class ThreadStateFor<AnyThread> { | 
| 544 public: | 544 public: | 
| 545     static ThreadState* state() { return ThreadState::current(); } | 545     static ThreadState* state() { return ThreadState::current(); } | 
| 546 }; | 546 }; | 
| 547 | 547 | 
| 548 // FIXME: Experiment if the threading affinity really matters for performance. | 548 // FIXME: Experiment if the threading affinity really matters for performance. | 
| 549 // FIXME: Move these macros and other related structures to a separate file. | 549 // FIXME: Move these macros and other related structures to a separate file. | 
|  | 550 USED_FROM_MULTIPLE_THREADS(AbstractWorker); | 
| 550 USED_FROM_MULTIPLE_THREADS(Algorithm); | 551 USED_FROM_MULTIPLE_THREADS(Algorithm); | 
| 551 USED_FROM_MULTIPLE_THREADS(Crypto); | 552 USED_FROM_MULTIPLE_THREADS(Crypto); | 
| 552 USED_FROM_MULTIPLE_THREADS(DOMParser); | 553 USED_FROM_MULTIPLE_THREADS(DOMParser); | 
| 553 USED_FROM_MULTIPLE_THREADS(DOMURL); | 554 USED_FROM_MULTIPLE_THREADS(DOMURL); | 
|  | 555 USED_FROM_MULTIPLE_THREADS(DedicatedWorkerGlobalScope); | 
|  | 556 USED_FROM_MULTIPLE_THREADS(DedicatedWorkerThread); | 
| 554 USED_FROM_MULTIPLE_THREADS(DeprecatedStorageQuota); | 557 USED_FROM_MULTIPLE_THREADS(DeprecatedStorageQuota); | 
| 555 USED_FROM_MULTIPLE_THREADS(Key); | 558 USED_FROM_MULTIPLE_THREADS(Key); | 
| 556 USED_FROM_MULTIPLE_THREADS(KeyPair); | 559 USED_FROM_MULTIPLE_THREADS(KeyPair); | 
| 557 USED_FROM_MULTIPLE_THREADS(MemoryInfo); | 560 USED_FROM_MULTIPLE_THREADS(MemoryInfo); | 
|  | 561 USED_FROM_MULTIPLE_THREADS(MessageChannel); | 
|  | 562 USED_FROM_MULTIPLE_THREADS(MessagePort); | 
| 558 USED_FROM_MULTIPLE_THREADS(Notification); | 563 USED_FROM_MULTIPLE_THREADS(Notification); | 
| 559 USED_FROM_MULTIPLE_THREADS(NotificationCenter); | 564 USED_FROM_MULTIPLE_THREADS(NotificationCenter); | 
| 560 USED_FROM_MULTIPLE_THREADS(Performance); | 565 USED_FROM_MULTIPLE_THREADS(Performance); | 
| 561 USED_FROM_MULTIPLE_THREADS(PerformanceEntry); | 566 USED_FROM_MULTIPLE_THREADS(PerformanceEntry); | 
| 562 USED_FROM_MULTIPLE_THREADS(PerformanceMark); | 567 USED_FROM_MULTIPLE_THREADS(PerformanceMark); | 
| 563 USED_FROM_MULTIPLE_THREADS(PerformanceNavigation); | 568 USED_FROM_MULTIPLE_THREADS(PerformanceNavigation); | 
| 564 USED_FROM_MULTIPLE_THREADS(PerformanceResourceTiming); | 569 USED_FROM_MULTIPLE_THREADS(PerformanceResourceTiming); | 
| 565 USED_FROM_MULTIPLE_THREADS(PerformanceTiming); | 570 USED_FROM_MULTIPLE_THREADS(PerformanceTiming); | 
|  | 571 USED_FROM_MULTIPLE_THREADS(SharedWorker); | 
|  | 572 USED_FROM_MULTIPLE_THREADS(SharedWorkerThread); | 
|  | 573 USED_FROM_MULTIPLE_THREADS(SharedWorkerGlobalScope); | 
| 566 USED_FROM_MULTIPLE_THREADS(SubtleCrypto); | 574 USED_FROM_MULTIPLE_THREADS(SubtleCrypto); | 
| 567 USED_FROM_MULTIPLE_THREADS(TextDecoder); | 575 USED_FROM_MULTIPLE_THREADS(TextDecoder); | 
| 568 USED_FROM_MULTIPLE_THREADS(TextEncoder); | 576 USED_FROM_MULTIPLE_THREADS(TextEncoder); | 
| 569 USED_FROM_MULTIPLE_THREADS(UserTiming); | 577 USED_FROM_MULTIPLE_THREADS(UserTiming); | 
| 570 USED_FROM_MULTIPLE_THREADS(WebKitNotification); | 578 USED_FROM_MULTIPLE_THREADS(WebKitNotification); | 
|  | 579 USED_FROM_MULTIPLE_THREADS(Worker); | 
|  | 580 USED_FROM_MULTIPLE_THREADS(WorkerConsole); | 
| 571 USED_FROM_MULTIPLE_THREADS(WorkerCrypto); | 581 USED_FROM_MULTIPLE_THREADS(WorkerCrypto); | 
|  | 582 USED_FROM_MULTIPLE_THREADS(WorkerGlobalScope); | 
|  | 583 USED_FROM_MULTIPLE_THREADS(WorkerLocation); | 
|  | 584 USED_FROM_MULTIPLE_THREADS(WorkerNavigator); | 
| 572 USED_FROM_MULTIPLE_THREADS(WorkerPerformance); | 585 USED_FROM_MULTIPLE_THREADS(WorkerPerformance); | 
|  | 586 USED_FROM_MULTIPLE_THREADS(WorkerScriptLoader); | 
|  | 587 USED_FROM_MULTIPLE_THREADS(WorkerThread); | 
| 573 USED_FROM_MULTIPLE_THREADS(XMLHttpRequest); | 588 USED_FROM_MULTIPLE_THREADS(XMLHttpRequest); | 
| 574 USED_FROM_MULTIPLE_THREADS(XMLSerializer); | 589 USED_FROM_MULTIPLE_THREADS(XMLSerializer); | 
| 575 USED_FROM_MULTIPLE_THREADS(XPathEvaluator); | 590 USED_FROM_MULTIPLE_THREADS(XPathEvaluator); | 
| 576 USED_FROM_MULTIPLE_THREADS(XPathExpression); | 591 USED_FROM_MULTIPLE_THREADS(XPathExpression); | 
| 577 USED_FROM_MULTIPLE_THREADS(XPathNSResolver); | 592 USED_FROM_MULTIPLE_THREADS(XPathNSResolver); | 
| 578 USED_FROM_MULTIPLE_THREADS(XPathResult); | 593 USED_FROM_MULTIPLE_THREADS(XPathResult); | 
| 579 USED_FROM_MULTIPLE_THREADS(XSLTProcessor); | 594 USED_FROM_MULTIPLE_THREADS(XSLTProcessor); | 
| 580 | 595 | 
| 581 } | 596 } | 
| 582 | 597 | 
| 583 #endif // ThreadState_h | 598 #endif // ThreadState_h | 
| OLD | NEW | 
|---|