search for: interefere

Displaying 14 results from an estimated 14 matches for "interefere".

Did you mean: interfere
2010 Oct 25
4
[LLVMdev] Prevent instruction elimination
...ile load or store would > do the trick? Being volatile, the compiler won't remove it (or if it > does, it's a bug, and you should file a bug report), and since it loads > from a memory object not used for anything else, alias analysis should > be able to see that it doesn't interefere with any other load/store. LLVM certainly will remove volatile loads and stores to local variables (at least in simple situations). I suggest using an empty asm statement. Ciao, Duncan.
2010 Oct 25
0
[LLVMdev] Prevent instruction elimination
...e would >> do the trick? Being volatile, the compiler won't remove it (or if it >> does, it's a bug, and you should file a bug report), and since it loads >> from a memory object not used for anything else, alias analysis should >> be able to see that it doesn't interefere with any other load/store. > LLVM certainly will remove volatile loads and stores to local variables > (at least in simple situations). I suggest using an empty asm statement. Really? Isn't that illegal? The whole point of "volatile" is to tell the compiler that it should n...
2010 Oct 25
0
[LLVMdev] Prevent instruction elimination
...loca and a volatile load or store would do the trick? Being volatile, the compiler won't remove it (or if it does, it's a bug, and you should file a bug report), and since it loads from a memory object not used for anything else, alias analysis should be able to see that it doesn't interefere with any other load/store. Other volatile loads/store won't be moved across it, but I doubt that'll be a concern. Most loads/stores are non-volatile. -- John T. > > > John Criswell-4 wrote: >> >> Alternatively, you can use calls to external functions. These are &g...
2010 Oct 25
2
[LLVMdev] Prevent instruction elimination
Hi, John Criswell-4 wrote: > > > You may want to use LLVM Metadata features. Search for MDNode in the > doxygen docs for some information on how to create metadata. > > I use metadata information in this way: unsigned mk = Context.getMDKindID(mdtype); Value *V = MDString::get(Context,StringRef(str)); MDNode* n = MDNode::get(Context, &V, 1);
2010 Oct 25
1
[LLVMdev] Prevent instruction elimination
...> do the trick?  Being volatile, the compiler won't remove it (or if it >>> does, it's a bug, and you should file a bug report), and since it loads >>> from a memory object not used for anything else, alias analysis should >>> be able to see that it doesn't interefere with any other load/store. >> LLVM certainly will remove volatile loads and stores to local variables >> (at least in simple situations).  I suggest using an empty asm statement. > > Really?  Isn't that illegal?  The whole point of "volatile" is to tell > the comp...
2004 Sep 13
0
[LLVMdev] To APR Or Not To APR. That is the question.
Dear All, Time to add my two cents: I think incorporating something like APR into the LLVM tree is fine, given that it works, its licensing doesn't interefere with our licensing (and doesn't give me a headache), and we can merge it into the LLVM source base relatively seamlessly (i.e. users don't need to install it before building LLVM and APR plays nice with our build system). I think building our own lib/System is going to be a bit of a tim...
2004 Sep 13
3
[LLVMdev] To APR Or Not To APR. That is the question.
On Sep 12, 2004, at 9:52 PM, Vikram Adve wrote: > I think we should be careful to isolate APR behind a "complete" > lib/System interface, i.e., not use it directly anywhere. If we do > that, it becomes strictly an implementation convenience and the > dependence is limited to that one part of the system. > > One concern I have with APR is their use of pool
2004 Sep 13
7
[LLVMdev] To APR Or Not To APR. That is the question.
...at least give new platforms a shot at having LLVM work. Reid. On Mon, 2004-09-13 at 08:18, John Criswell wrote: > Dear All, > > Time to add my two cents: > > I think incorporating something like APR into the LLVM tree is fine, > given that it works, its licensing doesn't interefere with our licensing > (and doesn't give me a headache), and we can merge it into the LLVM > source base relatively seamlessly (i.e. users don't need to install it > before building LLVM and APR plays nice with our build system). > > I think building our own lib/System is g...
2004 Sep 16
0
[LLVMdev] To APR Or Not To APR. That is the question.
...having LLVM work. > > Reid. > > On Mon, 2004-09-13 at 08:18, John Criswell wrote: >> Dear All, >> >> Time to add my two cents: >> >> I think incorporating something like APR into the LLVM tree is fine, >> given that it works, its licensing doesn't interefere with our >> licensing >> (and doesn't give me a headache), and we can merge it into the LLVM >> source base relatively seamlessly (i.e. users don't need to install it >> before building LLVM and APR plays nice with our build system). >> >> I think buildi...
2005 Nov 10
0
FW: Re: (Case 843) Recon-X msg: "Failed to get the list of instances: Server's ssh public key does not match our private ssh key"
...t to understand you correctly..you have an SSH server running on the server and you connect via sftp to this server using SSH Communication's SSH/SFTP client, correct? And for some reason, after the installation of ReconX client on windows, the ssh sftp windows stops working? ReconX should not interefere with the SSH server in any way that impedes your work. Perhaps you can installs the deps and clarify the second problem, I can suggest and fix what might be going wrong. With warm regards, -Bruno
2000 Jan 27
0
service_ok, redux.
...(0,( "ERROR: both wins server and wins support turned on, " > "using wins server \"%s\".\n", Globals.szWINSserver)); > Globals.bWINSsupport = False; > } > > /* Check for announcing as something other than NT, which can */ > /* interefere with serving browse lists. */ > if (Globals.announce_as != ANNOUNCE_AS_NT_SERVER) > DEBUG(0,( "WARNING: announce as not set to \"NT\", this may " > "interfere with browsing.\n")); > > > /* Cross-check PDC vs BDC vs Unix logo...
2000 Jan 27
1
Proposed improvements to service_ok()
...(0,( "ERROR: both wins server and wins support turned on, " > "using wins server \"%s\".\n", Globals.szWINSserver)); > Globals.bWINSsupport = False; > } > > /* Check for announcing as something other than NT, which can */ > /* interefere with serving browse lists. */ > if (Globals.announce_as == ANNOUNCE_AS_NT_SERVER) > DEBUG(0,( "WARNING: announce as not set to \"NT\", this may " > "interfere with browsing.\n")); > > > /* Cross-check PDC vs BDC vs Unix logo...
2004 Sep 13
0
[LLVMdev] To APR Or Not To APR. That is the question.
...-- John T. > > Reid. > > On Mon, 2004-09-13 at 08:18, John Criswell wrote: > >>Dear All, >> >>Time to add my two cents: >> >>I think incorporating something like APR into the LLVM tree is fine, >>given that it works, its licensing doesn't interefere with our licensing >>(and doesn't give me a headache), and we can merge it into the LLVM >>source base relatively seamlessly (i.e. users don't need to install it >>before building LLVM and APR plays nice with our build system). >> >>I think building our own...
2005 Aug 11
5
Cisco 79XX and VLANS
Hey gang, We have about 30 Cisco 79XX phones all running latest 7.5 SIP. We are also using all Cisco Switches and Routers. Everything works great except that when you reboot a phone it takes like 3-5 minutes for it to come up. The phones spend tons of time 'Configuring VLAN..' We don't run any VLANs. Is there some way to skip this? In the 'Network Settings' I have