Displaying 5 results from an estimated 5 matches for "tstone".
Did you mean:
stone
2006 Jul 11
1
[LLVMdev] Enabling debug in LLVM-1.7 release
...llvm-1.7?
I tried
./configure --enable-debug-runtime
editing Makefile.config DEBUG_RUNTIME=1
editing Makefile.config.in DEBUG_RUNTIME=1 and ./configure --enable-debug-runtime
Currently i managed to make a profile build but gdb just chokes like this when trying to debug:
Starting program: /work0/tstone/llvm-1.7/Profile/bin/llc /work0/tstone/llvm/Profile/bin/llc
[Thread debugging using libthread_db enabled]
Error while reading shared library symbols:
Cannot find new threads: generic error
Thanks
ST
2010 Apr 02
1
Javascript implementation of PHP Markdown Extra?
I've been using the John Fraser's Showdown JavaScript port of Markdown
to do real-time previews in-browser. But I also would like to take
advantage of some of the extensions in Michel Fortin's PHP Markdown
Extra. Has anyone already tried to implement Markdown Extra in
JavaScript?
Thanks,
Keith
2006 May 31
0
[LLVMdev] Adding an object to llc (analysis pass)
On Wed, 31 May 2006, Silken Tiger wrote:
>> that requires a BasicBlockPass, it will fail the same was as when a
>> ModulePass requires a FunctionPass.
> void MParSchedule::getAnalysisUsage(AnalysisUsage &AU) const {
> AU.setPreservesAll();
> }
>
> MParSchedule requires nothing and changes nothing. So hopefully the above code
> represents this fact?
Right
2006 Jun 01
2
[LLVMdev] Adding an object to llc (analysis pass)
...7da7fa2]
/lib/tls/libc.so.6(__assert_fail+0x10f)[0xb7da02df]
llc(llvm::PassManagerT<llvm::MTraits>::markPassUsed(llvm::PassInfo const*,
llvm::Pass*)+0xf6)[0x8736c36]
Aborted
Poking around i tried to inherit the MParSchedule Pass from ImmutablePass then
i get an different error:
llc: /work0/tstone/llvm-1.7/include/llvm/Pass.h:185: AnalysisType&
llvm::Pass::getAnalysisID(const llvm::PassInfo*) const [with AnalysisType =
llvm::FindUsedTypes]: Assertion `i != AnalysisImpls.size() && "getAnalysis*()
called on an analysis that was not " "'required' by pass!&q...
2006 May 31
2
[LLVMdev] Adding an object to llc (analysis pass)
Hi
Am Dienstag, 30. Mai 2006 19:21 schrieb Chris Lattner:
> On Tue, 30 May 2006, Silken Tiger wrote:
> > Everthing now compiles fine, but when running llc with invoking my own
> > backend derived from the cbackend i get the following error:
> > namespace llvm {
> > class MParSchedule : public BasicBlockPass {
> > public:
> >
> >