search for: instmap

Displaying 4 results from an estimated 4 matches for "instmap".

2008 Nov 06
0
VC98 unter wine -> undname.c:189: str_array_push: Assertion
Hi everybody, am trying to compile an existing Visual C++ 6 projekt under wine. But at one file i get the error mentioned in the topic. Some more detail about the code: working: Code: typedef std::set<Int> IdxSet; typedef map<Int, IdxSet> InstMap; typedef map<string, InstMap> AttrMap; typedef map<string, Int> AttrMonitor; not working: Code: typedef std::set<Int> IdxSet; typedef map<Int, IdxSet> InstMap; typedef map<string, InstMap> AttrMap; typedef map<string, AttrMap> AttrMonitor; It seems to...
2017 Nov 23
2
question about xray tls data initialization
...> > If you're alright with it, maybe you can send some patches to review, > preferably through the LLVM Phabricator instance? You can have me or Reid > (who knows more about COFF and the Windows stuff) as reviewers. > > in AsmPrinter, copy/paster xray for coff target > > InstMap = OutContext.getCOFFSection("xray_instr_map", 0, > SectionKind::getReadOnlyWithRel()); > FnSledIndex = OutContext.getCOFFSection("xray_fn_idx", > 0,SectionKind::getReadOnlyWithRel()); > > in XRayArgs , allow windows platform to use xray args. with this, > gener...
2017 Nov 21
2
question about xray tls data initialization
...time 'built' on windows , but unfortunately I haven't enough knowledge about linker and the runtime, and finally built executable didn't run. I'd like to share my changes here , hopes somebody help me to make it run on windows. in AsmPrinter, copy/paster xray for coff target InstMap = OutContext.getCOFFSection("xray_instr_map", 0, SectionKind::getReadOnlyWithRel()); FnSledIndex = OutContext.getCOFFSection("xray_fn_idx", 0,SectionKind::getReadOnlyWithRel()); in XRayArgs , allow windows platform to use xray args. with this, generated code seems have sled and...
2017 Nov 16
2
question about xray tls data initialization
I'm learning the xray library and try if it can be built on windows, in xray_fdr_logging_impl.h line 152 , comment written as // Using pthread_once(...) to initialize the thread-local data structures but at line 175, 183, code written as thread_local pthread_key_t key; // Ensure that we only actually ever do the pthread initialization once. thread_local bool UNUSED Unused = [] {