search for: defaulttarget

Displaying 9 results from an estimated 9 matches for "defaulttarget".

2009 Oct 21
2
[LLVMdev] Target data question
...mind, I got confused. Registering a pass doesn't mean that getAnalysisIfAvailable will return it; it still has to be in the pass manager's collection. It just means that PassInfo will be available for it if it's there. I think... Anyway, my present plan of attack is to have a "-defaulttarget" option with "none", "host", or a target string. If -defaulttarget is not specified, the behavior of "opt" will be the same as it is presently. The defaulttarget will be overridden by the Module's target data if it has some. "none" means that no Ta...
2009 Oct 21
0
[LLVMdev] Target data question
...alysisIfAvailable will return it; it still has to be in the pass > manager's collection. It just means that PassInfo will be available > for it if it's there. > > I think... Yes, that's what's intended. > > Anyway, my present plan of attack is to have a "-defaulttarget" option > with "none", "host", or a target string. If -defaulttarget is not > specified, the behavior of "opt" will be the same as it is presently. > The defaulttarget will be overridden by the Module's target data if it > has some. "none&qu...
2007 May 13
2
prototype - get inputs()
hi, i have the following function which is not working for me: function uploadimg (theform,ajaxAction,ajaxTarget){ var imgDesc = theform.getInputs(''page1'', ''text'',''imgDesc''); alert(imgDesc[0]); defaultAction=theform.action; defaultTarget=theform.target; theform.action=ajaxAction; theform.target=ajaxTarget; theform.submit(); //Submit the form. //Then display a loading message to the user. setStatus ("Please wait while your image uploads...","showimg"); theform.action=defaultAction; theform.target=defaultT...
2009 Oct 21
2
[LLVMdev] Target data question
>> Anyway, my present plan of attack is to have a "-defaulttarget" option >> with "none", "host", or a target string.  If -defaulttarget is not >> specified, the behavior of "opt" will be the same as it is presently. >> The defaulttarget will be overridden by the Module's target data if it >> has some...
2009 Oct 21
0
[LLVMdev] Target data question
If the TargetData pass isn't registered in the global registry, getPassInfo() returns null. Now when you add a TargetData pass, it winds up in ImmutablePasses. Any search through ImmutablePasses assumes that getPassInfo() for every member returns something other than null. So findAnalysisPass for *any* analysis pass can crash the system if the TargetData pass is lurking in the list without
2009 Oct 21
2
[LLVMdev] Target data question
On Tue, Oct 20, 2009 at 12:50 PM, Dan Gohman <gohman at apple.com> wrote: > > On Oct 20, 2009, at 10:13 AM, Kenneth Uildriks wrote: > >> On Tue, Oct 20, 2009 at 12:08 PM, Dan Gohman <gohman at apple.com> wrote: >>> Unfortunately, yes.  See PR4542.  Progress has been made recently >>> though -- the optimizers are now ready.  The main things left to do
2009 Oct 22
0
[LLVMdev] Target data question
On Wed, Oct 21, 2009 at 4:47 PM, Kenneth Uildriks <kennethuil at gmail.com> wrote: >> I think it's more intuitive to have command-line information override >> Module information. That's how llc works, for example. >> >> Also, is the argument to -defaulttarget a triple, an architecture name, >> or a targetdata string? If it's a triple, it'd be nice to be consistent >> with llc and call it -mtriple=. For an architecture name, -march=. >> If it's a targetdata string, perhaps -targetdata= would be a good name. >> >>...
2009 Oct 22
3
[LLVMdev] Target data question
...n Wed, Oct 21, 2009 at 4:47 PM, Kenneth Uildriks <kennethuil at gmail.com> wrote: >>> I think it's more intuitive to have command-line information override >>> Module information. That's how llc works, for example. >>> >>> Also, is the argument to -defaulttarget a triple, an architecture name, >>> or a targetdata string? If it's a triple, it'd be nice to be consistent >>> with llc and call it -mtriple=. For an architecture name, -march=. >>> If it's a targetdata string, perhaps -targetdata= would be a good name. >&...
2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
...mmand> diff --git a/win32/VS2015/generate_version.vcxproj b/win32/VS2015/generate_version.vcxproj new file mode 100644 index 0000000..820dc19 --- /dev/null +++ b/win32/VS2015/generate_version.vcxproj @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup Label="ProjectConfigurations"> + <ProjectConfiguration Include="Any|Win32"> + <Configuration>Any</Configuration&g...