search for: module_

Displaying 20 results from an estimated 23 matches for "module_".

Did you mean: module
2011 Feb 12
8
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...nient. Here's a screenshot of what it looks like: [image: llbrowse.png] And here's what the node class for displaying variables looks like, as an example: class VariableItem : public TreeItemBase { public: VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var) : module_(module), var_(var) {} // Overrides int GetIcon() const; wxString GetCaption() const; void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id); bool CanCreateChildren() const; void ShowDetails(DetailsView* detailsView); private: const llvm::Module* const module_; const ll...
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...t looks like: > > [image: llbrowse.png] > > And here's what the node class for displaying variables looks like, as an > example: > > class VariableItem : public TreeItemBase { > public: > VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var) > : module_(module), var_(var) {} > > // Overrides > > int GetIcon() const; > wxString GetCaption() const; > void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id); > bool CanCreateChildren() const; > void ShowDetails(DetailsView* detailsView); > > private: > const l...
2011 Feb 12
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...ke: > > [image: llbrowse.png] > > And here's what the node class for displaying variables looks like, as an > example: > > class VariableItem : public TreeItemBase { > public: > VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var) > : module_(module), var_(var) {} > > // Overrides > > int GetIcon() const; > wxString GetCaption() const; > void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id); > bool CanCreateChildren() const; > void ShowDetails(DetailsView* detailsView); > > private: &...
2011 Feb 12
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...ooks like: > > <llbrowse.png> > > And here's what the node class for displaying variables looks like, as an example: > > class VariableItem : public TreeItemBase { > public: > VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var) > : module_(module), var_(var) {} > > // Overrides > > int GetIcon() const; > wxString GetCaption() const; > void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id); > bool CanCreateChildren() const; > void ShowDetails(DetailsView* detailsView); > > privat...
2011 Feb 13
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...s like: > > [image: llbrowse.png] > > And here's what the node class for displaying variables looks like, as an > example: > > class VariableItem : public TreeItemBase { > public: > VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var) > : module_(module), var_(var) {} > > // Overrides > > int GetIcon() const; > wxString GetCaption() const; > void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id); > bool CanCreateChildren() const; > void ShowDetails(DetailsView* detailsView); > > private:...
2004 Aug 05
0
[Bug 1573] New: module revealed thru error msg even with "list = no"
...P3 Component: core AssignedTo: wayned@samba.org ReportedBy: widyono@seas.upenn.edu QAContact: rsync-qa@samba.org CC: widyono@seas.upenn.edu "list = no" correctly hides via rsync _server_::, however if one tries rsync _server_::_existing-module_/ and does not have permission, one gets @ERROR: access denied to _user_ from _client_, whereas an attempt for a non-existent module emits @ERROR: Unknown module '_non-existent-module_' If "list = no" is used for security purposes (can't think of another reason at the moment),...
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...gt;> >> And here's what the node class for displaying variables looks like, as an >> example: >> >> class VariableItem : public TreeItemBase { >> public: >> VariableItem(const llvm::Module* module, const llvm::GlobalVariable* >> var) >> : module_(module), var_(var) {} >> >> // Overrides >> >> int GetIcon() const; >> wxString GetCaption() const; >> void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id); >> bool CanCreateChildren() const; >> void ShowDetails(DetailsView* d...
2010 Aug 28
2
[LLVMdev] "Cannot fine DIE"
...etails removed for clarity): void CodeGenerator::setDebugLocation(const SourceLocation & loc) { if (loc != dbgLocation_ && dbgContext_.isScope()) { dbgLocation_ = loc; if (loc.file == NULL) { builder_.SetCurrentDebugLocation(llvm::DebugLoc()); } else if (loc.file == module_->moduleSource()) { TokenPosition pos = tokenPosition(loc); // ** Comment out this line and the DIE errors disappear ** builder_.SetCurrentDebugLocation( DebugLoc::get(pos.beginLine, pos.beginCol, dbgContext_)); } } } As noted in the comment above, if I comment...
2011 Feb 12
2
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
...ks like: > > <llbrowse.png> > > And here's what the node class for displaying variables looks like, as an > example: > > class VariableItem : public TreeItemBase { > public: > VariableItem(const llvm::Module* module, const llvm::GlobalVariable* var) > : module_(module), var_(var) {} > > // Overrides > > int GetIcon() const; > wxString GetCaption() const; > void CreateChildren(wxTreeCtrl* tree, const wxTreeItemId& id); > bool CanCreateChildren() const; > void ShowDetails(DetailsView* detailsView); > > private:...
2010 Aug 29
0
[LLVMdev] "Cannot fine DIE"
...gt; void CodeGenerator::setDebugLocation(const SourceLocation & loc) { > if (loc != dbgLocation_ && dbgContext_.isScope()) { > dbgLocation_ = loc; > if (loc.file == NULL) { > builder_.SetCurrentDebugLocation(llvm::DebugLoc()); > } else if (loc.file == module_->moduleSource()) { > TokenPosition pos = tokenPosition(loc); > // ** Comment out this line and the DIE errors disappear ** > builder_.SetCurrentDebugLocation( > DebugLoc::get(pos.beginLine, pos.beginCol, dbgContext_)); > } > } > } > >...
2010 Aug 24
0
[LLVMdev] "Cannot fine DIE"
On Sun, Aug 22, 2010 at 12:50 PM, Talin <viridia at gmail.com> wrote: > I recently started getting this error when I try to debug my LLVM-compiled > program in GDB: > > Dwarf Error: Cannot find DIE at 0x16769 referenced from DIE at 0x1713c > [in module > /home/talin/Projects/tart/build-eclipse/test/stdlib/ReflectionTest] > > I'm not sure if it's something
2010 Aug 22
2
[LLVMdev] "Cannot fine DIE"
I recently started getting this error when I try to debug my LLVM-compiled program in GDB: Dwarf Error: Cannot find DIE at 0x16769 referenced from DIE at 0x1713c [in module /home/talin/Projects/tart/build-eclipse/test/stdlib/ReflectionTest] I'm not sure if it's something I did or not. Is there any way to track down the cause of this error? The hex addresses in the error message are
2004 Jun 21
0
Error compiling festival
...terisk+festival+installation speech-tools compiles OK, but I got this error when compiling asterisk if I compile without the patch it compiles, but of cause did'nt work with asterisk. any clue ? /Hans-Henrik Andresen Making in directory src/modules/base ... making dependencies -- modules.cc module_support.cc parameters.cc ff.cc pos.cc p hrasify.cc word.cc postlex.cc phrinfo.cc g++ -c -fno-implicit-templates -O3 -Wall -Wno-non-template-friend -Wno-depre cate d -I../include -I../../../src/include -I../../../../speech_tools/include modules .cc In file included from ../../../../speech_tools/inclu...
2018 Sep 27
4
OptBisect implementation for new pass manager
...re the limit is reached being consistent and > repeatable. My inclination would be to not allow parallel compilation when > opt-bisect is enabled. I don't have a strong opinion here, but just as a data point: my mental model here is to expect bisect to expect a deterministic outcome _per module_. That model isn't threatened by parallel execution. Cheers, Philip > I can imagine cases where you might specifically want to debug something > that only happens in a parallel build, but it's more difficult to imagine > something that only happens in a parallel build and doesn&...
2010 Sep 01
2
[LLVMdev] "Cannot fine DIE"
...or::setDebugLocation(const SourceLocation & loc) { >> if (loc != dbgLocation_ && dbgContext_.isScope()) { >> dbgLocation_ = loc; >> if (loc.file == NULL) { >> builder_.SetCurrentDebugLocation(llvm::DebugLoc()); >> } else if (loc.file == module_->moduleSource()) { >> TokenPosition pos = tokenPosition(loc); >> // ** Comment out this line and the DIE errors disappear ** >> builder_.SetCurrentDebugLocation( >> DebugLoc::get(pos.beginLine, pos.beginCol, dbgContext_)); >> } >&g...
2017 Aug 24
3
Building LLVM's fuzzers
....20170105". Peter > > > > > >> >> Peter >> >> >>> >>>> >>>> Kostya Serebryany <kcc at google.com> writes: >>>> > With -Wl,-gc-sections I get this: >>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor]+0x1b): >>>> > undefined reference to `__start___sancov_pcs' >>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ctor]+0x20): >>>> > undefined reference to `__stop___sancov_pcs' >>>> > >>>&...
2008 Feb 11
3
[PATCH 1/5] Change vsmp compile dependency
...C) += relocate_kernel_ obj-$(CONFIG_CRASH_DUMP) += crash_dump_$(BITS).o obj-$(CONFIG_X86_NUMAQ) += numaq_32.o obj-$(CONFIG_X86_SUMMIT_NUMA) += summit_32.o -obj-$(CONFIG_X86_VSMP) += vsmp_64.o +obj-$(CONFIG_PARAVIRT) += vsmp_64.o obj-$(CONFIG_KPROBES) += kprobes.o obj-$(CONFIG_MODULES) += module_$(BITS).o obj-$(CONFIG_ACPI_SRAT) += srat_32.o -- 1.4.2
2017 Aug 25
2
Building LLVM's fuzzers
...t;> Peter > >>> > >>> > >>>> > >>>>> > >>>>> Kostya Serebryany <kcc at google.com> writes: > >>>>> > With -Wl,-gc-sections I get this: > >>>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ > ctor]+0x1b): > >>>>> > undefined reference to `__start___sancov_pcs' > >>>>> > SimpleTest.cpp:(.text.sancov.module_ctor[sancov.module_ > ctor]+0x20): > >>>>> > undefined reference to `__stop___sancov_pcs...
2018 Sep 28
3
OptBisect implementation for new pass manager
...hed being consistent and repeatable. My inclination would > be to not allow parallel compilation when opt-bisect is enabled. > > I don't have a strong opinion here, but just as a data point: my > mental model here is to expect bisect to expect a deterministic > outcome _per module_. That model isn't threatened by parallel execution. > > Cheers, > > Philip > > I can imagine cases where you might specifically want to debug > something that only happens in a parallel build, but it's more > difficult to imagine something that only happe...
2018 Sep 26
12
OptBisect implementation for new pass manager
Greetings! As the generic Pass Instrumentation framework for new pass manager is finally *in*, I'm glad to start the discussion on implementation of -opt-bisect through that framework. As it has already been discovered while porting other features (namely, -time-passes) blindly copying the currently existing legacy implementation is most likely not a perfect way forward. Now is a chance