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

Side by Side Diff: src/IceGlobalContext.h

Issue 1185703004: Add constant blinding/pooling option for X8632 code translation (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add bool flag: Randomized to OperandX8632Mem class, fix comments, rebased to master:b0a8c24ecd98f4b… Created 5 years, 6 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 //===- subzero/src/IceGlobalContext.h - Global context defs -----*- C++ -*-===// 1 //===- subzero/src/IceGlobalContext.h - Global context defs -----*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file declares aspects of the compilation that persist across 10 // This file declares aspects of the compilation that persist across
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 // CodeStats collects rudimentary statistics during translation. 65 // CodeStats collects rudimentary statistics during translation.
66 class CodeStats { 66 class CodeStats {
67 CodeStats(const CodeStats &) = delete; 67 CodeStats(const CodeStats &) = delete;
68 CodeStats &operator=(const CodeStats &) = default; 68 CodeStats &operator=(const CodeStats &) = default;
69 #define CODESTATS_TABLE \ 69 #define CODESTATS_TABLE \
70 /* dump string, enum value */ \ 70 /* dump string, enum value */ \
71 X("Inst Count ", InstCount) \ 71 X("Inst Count ", InstCount) \
72 X("Regs Saved ", RegsSaved) \ 72 X("Regs Saved ", RegsSaved) \
73 X("Frame Bytes ", FrameByte) \ 73 X("Frame Bytes ", FrameByte) \
74 X("Spills ", NumSpills) \ 74 X("Spills ", NumSpills) \
75 X("Fills ", NumFills) 75 X("Fills ", NumFills) \
76 X("R/P Imms ", NumRPImms)
76 //#define X(str, tag) 77 //#define X(str, tag)
77 78
78 public: 79 public:
79 enum CSTag { 80 enum CSTag {
80 #define X(str, tag) CS_##tag, 81 #define X(str, tag) CS_##tag,
81 CODESTATS_TABLE 82 CODESTATS_TABLE
82 #undef X 83 #undef X
83 CS_NUM 84 CS_NUM
84 }; 85 };
85 CodeStats() { reset(); } 86 CodeStats() { reset(); }
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 Tls->StatsCumulative.update(CodeStats::CS_NumSpills); 257 Tls->StatsCumulative.update(CodeStats::CS_NumSpills);
257 } 258 }
258 void statsUpdateFills() { 259 void statsUpdateFills() {
259 if (!getFlags().getDumpStats()) 260 if (!getFlags().getDumpStats())
260 return; 261 return;
261 ThreadContext *Tls = ICE_TLS_GET_FIELD(TLS); 262 ThreadContext *Tls = ICE_TLS_GET_FIELD(TLS);
262 Tls->StatsFunction.update(CodeStats::CS_NumFills); 263 Tls->StatsFunction.update(CodeStats::CS_NumFills);
263 Tls->StatsCumulative.update(CodeStats::CS_NumFills); 264 Tls->StatsCumulative.update(CodeStats::CS_NumFills);
264 } 265 }
265 266
267 // Number of Randomized or Pooled Immediates
268 void statsUpdateRPImms() {
269 if (!getFlags().getDumpStats())
270 return;
271 ThreadContext *Tls = ICE_TLS_GET_FIELD(TLS);
272 Tls->StatsFunction.update(CodeStats::CS_NumRPImms);
273 Tls->StatsCumulative.update(CodeStats::CS_NumRPImms);
274 }
275
266 // These are predefined TimerStackIdT values. 276 // These are predefined TimerStackIdT values.
267 enum TimerStackKind { TSK_Default = 0, TSK_Funcs, TSK_Num }; 277 enum TimerStackKind { TSK_Default = 0, TSK_Funcs, TSK_Num };
268 278
269 // newTimerStackID() creates a new TimerStack in the global space. 279 // newTimerStackID() creates a new TimerStack in the global space.
270 // It does not affect any TimerStack objects in TLS. 280 // It does not affect any TimerStack objects in TLS.
271 TimerStackIdT newTimerStackID(const IceString &Name); 281 TimerStackIdT newTimerStackID(const IceString &Name);
272 // dumpTimers() dumps the global timer data. As such, one probably 282 // dumpTimers() dumps the global timer data. As such, one probably
273 // wants to call mergeTimerStacks() as a prerequisite. 283 // wants to call mergeTimerStacks() as a prerequisite.
274 void dumpTimers(TimerStackIdT StackID = TSK_Default, 284 void dumpTimers(TimerStackIdT StackID = TSK_Default,
275 bool DumpCumulative = true); 285 bool DumpCumulative = true);
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 // This is used in a few cases where we want to take some action on 403 // This is used in a few cases where we want to take some action on
394 // a particular function or symbol based on a command-line argument, 404 // a particular function or symbol based on a command-line argument,
395 // such as changing the verbose level for a particular function. An 405 // such as changing the verbose level for a particular function. An
396 // empty Match argument means match everything. Returns true if 406 // empty Match argument means match everything. Returns true if
397 // there is a match. 407 // there is a match.
398 static bool matchSymbolName(const IceString &SymbolName, 408 static bool matchSymbolName(const IceString &SymbolName,
399 const IceString &Match) { 409 const IceString &Match) {
400 return Match.empty() || Match == SymbolName; 410 return Match.empty() || Match == SymbolName;
401 } 411 }
402 412
413 // Return the randomization cookie for diversification.
414 // Initialize the cookie if necessary
415 uint32_t getRandomizationCookie() {
416 if (RandomizationCookie != 0)
417 return RandomizationCookie;
418 RandomizationCookieLock.lock();
419 while (RandomizationCookie == 0) {
420 RandomNumberGenerator &RNG = getRNG();
421 RandomizationCookie = (uint32_t)RNG.next(
422 (uint64_t)std::numeric_limits<uint32_t>::max() + 1);
423 }
424 RandomizationCookieLock.unlock();
425 return RandomizationCookie;
426 }
427
403 private: 428 private:
404 // Try to ensure mutexes are allocated on separate cache lines. 429 // Try to ensure mutexes are allocated on separate cache lines.
405 430
406 ICE_CACHELINE_BOUNDARY; 431 ICE_CACHELINE_BOUNDARY;
407 // Managed by getAllocator() 432 // Managed by getAllocator()
408 GlobalLockType AllocLock; 433 GlobalLockType AllocLock;
409 ArenaAllocator<> Allocator; 434 ArenaAllocator<> Allocator;
410 435
411 ICE_CACHELINE_BOUNDARY; 436 ICE_CACHELINE_BOUNDARY;
412 // Managed by getConstantPool() 437 // Managed by getConstantPool()
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 llvm::SmallVector<std::thread, 128> TranslationThreads; 513 llvm::SmallVector<std::thread, 128> TranslationThreads;
489 llvm::SmallVector<std::thread, 128> EmitterThreads; 514 llvm::SmallVector<std::thread, 128> EmitterThreads;
490 // Each thread has its own TLS pointer which is also held in 515 // Each thread has its own TLS pointer which is also held in
491 // AllThreadContexts. 516 // AllThreadContexts.
492 ICE_TLS_DECLARE_FIELD(ThreadContext *, TLS); 517 ICE_TLS_DECLARE_FIELD(ThreadContext *, TLS);
493 518
494 // Private helpers for mangleName() 519 // Private helpers for mangleName()
495 typedef llvm::SmallVector<char, 32> ManglerVector; 520 typedef llvm::SmallVector<char, 32> ManglerVector;
496 void incrementSubstitutions(ManglerVector &OldName) const; 521 void incrementSubstitutions(ManglerVector &OldName) const;
497 522
523 // Randomization Cookie
524 // Managed by getRandomizationCookie()
525 GlobalLockType RandomizationCookieLock;
526 uint32_t RandomizationCookie;
527
498 public: 528 public:
499 static void TlsInit() { ICE_TLS_INIT_FIELD(TLS); } 529 static void TlsInit() { ICE_TLS_INIT_FIELD(TLS); }
500 }; 530 };
501 531
502 // Helper class to push and pop a timer marker. The constructor 532 // Helper class to push and pop a timer marker. The constructor
503 // pushes a marker, and the destructor pops it. This is for 533 // pushes a marker, and the destructor pops it. This is for
504 // convenient timing of regions of code. 534 // convenient timing of regions of code.
505 class TimerMarker { 535 class TimerMarker {
506 TimerMarker() = delete; 536 TimerMarker() = delete;
507 TimerMarker(const TimerMarker &) = delete; 537 TimerMarker(const TimerMarker &) = delete;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 explicit OstreamLocker(GlobalContext *Ctx) : Ctx(Ctx) { Ctx->lockStr(); } 578 explicit OstreamLocker(GlobalContext *Ctx) : Ctx(Ctx) { Ctx->lockStr(); }
549 ~OstreamLocker() { Ctx->unlockStr(); } 579 ~OstreamLocker() { Ctx->unlockStr(); }
550 580
551 private: 581 private:
552 GlobalContext *const Ctx; 582 GlobalContext *const Ctx;
553 }; 583 };
554 584
555 } // end of namespace Ice 585 } // end of namespace Ice
556 586
557 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H 587 #endif // SUBZERO_SRC_ICEGLOBALCONTEXT_H
OLDNEW
« no previous file with comments | « src/IceELFObjectWriter.cpp ('k') | src/IceGlobalContext.cpp » ('j') | src/IceInstX8632.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698