Displaying 19 results from an estimated 19 matches for "target_machin".
Did you mean:
target_machine
2011 May 10
2
Being VERY careful while using the --delete option
On UNIX, I am executing an rsync command, from within a script. The command
goes something like this:
/usr/bin/rsync --verbose --progress --stats --compress --recursive --times
--perms --links --safe-links source_dir/
user at target_machine:/parent_path/source_dir
In other words, I am replicating source_dir on a remote machine. It ends up
next to a lot of sibling, directories, like this:
On target_machine
/parent_path/source_dir
/parent_path/source_dir2
....
/parrent_path/source_dirn
Here's my issue. I'd like to use the...
2013 Apr 15
10
[Bug 2091] New: scp hangs while copying a large file and being executed as a background process ( with nohup )
...and is used to start an scp copy in the background
and then exit the ksh.
This should allow the user to leave a large file secure copy running
unattended but instead it
results in 2 hung processes as shown at the end of this bug report.
This occurs only with ksh.
nohup scp /tmp/testfile test3 at target_machine:/tmp/testfile &
============================================================================================================
Steps tp Reproduce -
=====================
On the source_machine:
=======================
1. login as user test1...
2018 Sep 12
2
How to make LLVM go faster?
...utType output_type, char
**error_message, bool is_debug, bool is_small)
{
std::error_code EC;
raw_fd_ostream dest(filename, EC, sys::fs::F_None);
if (EC) {
*error_message = strdup((const char
*)StringRef(EC.message()).bytes_begin());
return true;
}
TargetMachine* target_machine =
reinterpret_cast<TargetMachine*>(targ_machine_ref);
target_machine->setO0WantsFastISel(true);
Module* module = unwrap(module_ref);
PassManagerBuilder *PMBuilder = new(std::nothrow) PassManagerBuilder();
if (PMBuilder == nullptr) {
*error_message = strdup("...
2017 Jun 21
2
question about llvmlite
...tType(64), stmt.addr) tcall = irbuilder.call(func, [t]) t1call = irbuilder.call(func, [t1]) result = irbuilder.store_reg(ll.Constant(ll.IntType(64), t), ll.IntType(64), t1) irbuilder.ret( result ) print( module ) target = llvm.Target.from_default_triple() target_machine = target.create_target_machine() backing_mod = llvm.parse_assembly("") engine = llvm.create_mcjit_compiler(backing_mod, target_machine) mod = llvm.parse_assembly( str( module ) ) mod.verify() engine.add_module(mod) engine.finalize_object() func_p...
2006 Aug 14
2
[LLVMdev] Folding instructions
...memory operands in the way that is done in
RegAllocLocal.cpp, or in LiveIntervalAnalysis.cpp, but I am getting errors
that
I don't know how to fix. Could someone tell me which steps should I take
in order
to correctly fold memory operands? The code that I am using is:
const TargetMachine & target_machine =
this->machine_function->getTarget();
const MRegisterInfo *ri = target_machine.getRegisterInfo();
MachineInstr * fmi = ri->foldMemoryOperand(mi, u, slot);
if(fmi) {
numFolded++;
MachineBasicBlock * mbb = mi->getParent();
this->vrm->virtFolded(v_reg, mi, u, fmi);
//st...
2006 Aug 14
0
[LLVMdev] Folding instructions
...RegAllocLocal.cpp, or in LiveIntervalAnalysis.cpp, but I am getting
> errors
> that
> I don't know how to fix. Could someone tell me which steps should I
> take
> in order
> to correctly fold memory operands? The code that I am using is:
>
> const TargetMachine & target_machine =
> this->machine_function->getTarget();
> const MRegisterInfo *ri = target_machine.getRegisterInfo();
> MachineInstr * fmi = ri->foldMemoryOperand(mi, u, slot);
> if(fmi) {
> numFolded++;
> MachineBasicBlock * mbb = mi->getParent();
> this->vrm->vir...
2006 Aug 14
2
[LLVMdev] Folding instructions
...>vrm->hasStackSlot(v_reg)) {
int slot = this->vrm->getStackSlot(v_reg);
// First, try to fold the memory reference into the
// instruction. If we can do this, we don't need to
// insert spill code.
const TargetMachine & target_machine =
this->machine_function->getTarget();
const MRegisterInfo *ri =
target_machine.getRegisterInfo();
MachineInstr * fmi =
ri->foldMemoryOperand(mi, u, slot);...
2006 Nov 07
2
ssh catch 22
Hi all,
I'm stuck with a little dilemma and I thought someone could give me a little
advice.
Is there a way to use rsync with an ssh certificate?
what I have:
----------------
First of all I am forced to use the root account with ssh which I know is a
big no, no, but sometimes it can't be helped.
Second, I need to use a certificate without a password as root which is even
worst than
2018 Jun 17
2
status of msp430?
Hello,
I have a user asking about msp430 support for Zig. When they try to target
msp430, this error is triggered:
if (target_machine->addPassesToEmitFile(MPM, dest, ft)) {
*error_message = strdup("TargetMachine can't emit a file of
this type");
return true;
}
I tried using clang alone: clang -c add.c -target msp430-unknown
int add(int a, int b) {
return a + b;
}
$ clang -...
2005 Dec 07
2
incremental backup help required
...nks \
--perms \
--recursive \
--size-only \
--delete \
--force \
--numeric-ids \
--exclude-from=/etc/rsync.exclude \
--stats \
/etc \
root@target_machine:/home/backup/thismachine/
I am using the above commnd to take backups and i need to take a only
incremental backups Which option i have to use
and how to specify in source machine and target machine.
I think i have to use --backup-dir=DIR option or anything else.
PLease help me how to take only...
2016 Apr 06
3
JIT compiler - showing generated machine code
When using LLVM as a JIT compiler, you can use module.dump() to show the
generated intermediate code, which is good.
Is there similarly a programmatic way to show the generated x64 machine
code in assembly format?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160406/c7d22dab/attachment.html>
2006 Aug 14
0
[LLVMdev] Folding instructions
...Slot(v_reg)) {
> int slot = this->vrm->getStackSlot(v_reg);
> // First, try to fold the memory reference into the
> // instruction. If we can do this, we don't need to
> // insert spill code.
> const TargetMachine & target_machine =
> this->machine_function->getTarget();
> const MRegisterInfo *ri =
> target_machine.getRegisterInfo();
> MachineInstr * fmi =
> ri->foldMemoryOperand(mi, u,...
2017 Sep 30
2
invalid code generated on Windows x86_64 using skylake-specific features
...ific_features;
if (g->is_native_target) {
target_specific_cpu_args = ZigLLVMGetHostCPUName();
target_specific_features = ZigLLVMGetNativeFeatures();
} else {
target_specific_cpu_args = "";
target_specific_features = "";
}
g->target_machine = LLVMCreateTargetMachine(target_ref,
buf_ptr(&g->triple_str),
target_specific_cpu_args, target_specific_features, opt_level,
reloc_mode, LLVMCodeModelDefault);
char *ZigLLVMGetHostCPUName(void) {
std::string str = sys::getHostCPUName();
return strdup(str.c_str());
}...
2017 Oct 01
1
invalid code generated on Windows x86_64 using skylake-specific features
...target) {
> target_specific_cpu_args = ZigLLVMGetHostCPUName();
> target_specific_features = ZigLLVMGetNativeFeatures();
> } else {
> target_specific_cpu_args = "";
> target_specific_features = "";
> }
>
> g->target_machine = LLVMCreateTargetMachine(target_ref,
> buf_ptr(&g->triple_str),
> target_specific_cpu_args, target_specific_features, opt_level,
> reloc_mode, LLVMCodeModelDefault);
>
>
>
> char *ZigLLVMGetHostCPUName(void) {
> std::string str = sys::getHostCPUName(...
2005 May 14
2
[LLVMdev] Building Cygwin binaries
...c/i686-pc-cygwin/lib/ -isystem
/usr/llvm-gcc/i686-pc-c
ygwin/include -isystem
/usr/llvm-gcc/i686-pc-cygwin/sys-include -O2 -I../../../s
rc/llvm-gcc/gcc/../winsup/w32api/include -I../../../src/llvm-gcc/gcc/../winsup/i
nclude -I../../../src/llvm-gcc/gcc/../winsup/cygwin/include -DIN_GCC -DDEFAULT_
TARGET_MACHINE=\"i686-pc-cygwin\" -W -Wall -Wwrite-strings -Wstrict-prototypes
-Wmissing-prototypes -isystem
./include -g -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NE
EDED -I. -I. -I../../../src/llvm-gcc/gcc -I../../../src/llvm-gcc/gcc/. -I../../
../src/llvm-gcc/gcc/../include -DL_muldi3 -c
../../../sr...
2017 Oct 03
2
invalid code generated on Windows x86_64 using skylake-specific features
...MGetHostCPUName();
>>> target_specific_features = ZigLLVMGetNativeFeatures();
>>> } else {
>>> target_specific_cpu_args = "";
>>> target_specific_features = "";
>>> }
>>>
>>> g->target_machine = LLVMCreateTargetMachine(target_ref,
>>> buf_ptr(&g->triple_str),
>>> target_specific_cpu_args, target_specific_features,
>>> opt_level, reloc_mode, LLVMCodeModelDefault);
>>>
>>>
>>>
>>> char *ZigLLVMGetHostCPUName...
2005 May 13
0
[LLVMdev] Cygwin binaries
Hi Aaron,
Please be aware that my instructions are directed to get the cfe to compile
on mingw. I wasn't in the first place aware that you were building on the
Cygwin platform.
However, me and others will try to help you to compile the cfe. Please
submit your compiling errors on this mailing list.
Henrik.
>From: "Aaron Gray" <angray at beeb.net>
>Reply-To: LLVM
2005 May 12
2
[LLVMdev] Cygwin binaries
>Sorry for the delay. Please be aware, that these instructions has not been
>used lately. However, I'll try to follow up on your questions.
Thanks for getting back to me. Unfortunately I lost my Cygwin configuration
and cannot even seem to get GCC 3.4.3 built on CygWin now, when I had it
built before. Been trying all day to get it to work maybe I will crack it
tomorrow as I have had
DO NOT REPLY [Bug 6746] New: file from link-dest-source is copies and not linked for identical files
2009 Sep 20
12
DO NOT REPLY [Bug 6746] New: file from link-dest-source is copies and not linked for identical files
https://bugzilla.samba.org/show_bug.cgi?id=6746
Summary: file from link-dest-source is copies and not linked for
identical files
Product: rsync
Version: 3.0.6
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned at