search for: wroten

Displaying 8 results from an estimated 8 matches for "wroten".

Did you mean: wrote
2005 Mar 24
0
AGI commands STDOUT problem
...urn $response; } private function WriteStdout($String) { $escaped_string = str_replace("\n", '\n', $String); $this->WriteLog("\nSending string {$escaped_string} to Asterisk..."); $bytes = fwrite(STDOUT, $String); fflush(STDOUT); $this->WriteLog("Wroten bytes to STDOUT: {$bytes}"); return $bytes; } private function ReceiveAsteriskEnvironmentVariables() { do { $asterisk_string = $this->ReadStdin(); if ( $asterisk_string != "\n" ) { $delimiter_position = strpos($asterisk_s...
2003 Dec 23
2
[LLVMdev] GCC3.5 tree-ssa
we work on distribute software development, most programs are wroten in java. but the running speed of that is slowly, it requires thread library to support, you know. Chris Lattner wrote: >On Wed, 24 Dec 2003, yue wrote: > > > >>why doesn't llvm transfer bytecode to RTL form? I mean the >>cross-platform compile in GCC. Could LLVM...
2003 Sep 19
7
AGI problem
Hi. I have the next configuration... I dial from my analog phone in the TDM400P to extension 102, and the second agi works about 1 out of 10 times, the other nine it gives me these error on the asterisk console: -- Starting simple switch on 'Zap/2-1' -- Executing Macro("Zap/2-1", "receivecall") in new stack -- Executing AGI("Zap/2-1",
2003 Dec 23
0
[LLVMdev] GCC3.5 tree-ssa
On Wed, 24 Dec 2003, yue wrote: > we work on distribute software development, most programs are wroten in > java. > but the running speed of that is slowly, it requires thread library to > support, you know. I'm not sure exactly what you mean here. LLVM does not currently have a Java front-end, though there is one in development. Thread support should not be a problem, you can make...
2003 Dec 23
1
[LLVMdev] GCC3.5 tree-ssa
...nondot.org> To: "yue" <qiangyue at ict.ac.cn> Cc: <llvmdev at cs.uiuc.edu> Sent: Wednesday, December 24, 2003 12:47 PM Subject: Re: [LLVMdev] GCC3.5 tree-ssa > On Wed, 24 Dec 2003, yue wrote: > > > we work on distribute software development, most programs are wroten in > > java. > > but the running speed of that is slowly, it requires thread library to > > support, you know. > > I'm not sure exactly what you mean here. LLVM does not currently have a > Java front-end, though there is one in development. Thread support should &...
2004 Oct 19
1
[LLVMdev] Re:question about Insert callInst to call a function in library
...time/libprofile is runtime library for the following function. llvm_start_func_profiling llvm_start_block_profiling llvm_start_basic_block_tracing llvm_trace_basic_block And those above functions can be inserted into basic block etc for getting profile. However, those functions are wroten by C/C++ which just statistic some data. What I want is to write a Pass in external library. You know for the Pass, it will use LLVM methods. I can write a pass but I just don't know how to put the pass into external library and insert CallInst to call it like llvm_start_func_profiling. I mea...
2003 Dec 23
0
[LLVMdev] GCC3.5 tree-ssa
On Wed, 24 Dec 2003, yue wrote: > why doesn't llvm transfer bytecode to RTL form? I mean the > cross-platform compile in GCC. Could LLVM do that? Sure, it would be a realtively straight-forward (but large and hard to get right, if you're not a GCC expert), project to build an LLVM front-end for GCC. This would allow you to effectively use LLVM as a mid-level representation for
2003 Dec 23
2
[LLVMdev] GCC3.5 tree-ssa
why doesn't llvm transfer bytecode to RTL form? I mean the cross-platform compile in GCC. Could LLVM do that? maybe tree-ssa also create the representation with a testual format if needed. is it very difficalt? I want to know. BWT: if we port pthread library to llvm, what do we consider at first? yueqiang Chris Lattner wrote: >On Wed, 24 Dec 2003, yue wrote: > > >>what