search for: lw

Displaying 20 results from an estimated 247 matches for "lw".

Did you mean: low
2013 Jul 26
0
[LLVMdev] floor
...} If I compile this for Mips16, it calls the proper helper function for floor_ but not for floor, because the signature for floor in callee info is wrong. Args[0] = void RetTy = void /local/llvmpb_config/install/bin/clang -target mipsel-linux-gnu floor1.c -o floor1.s -mips16 -S -fPIC ..... lw $3, %got(x)($2) lw $4, 0($3) lw $5, 4($3) lw $6, %call16(floor)($2) move $25, $6 move $gp, $2 sw $2, 20 ( $16 ); sw $3, 16 ( $16 ); jalrc $6 sw $3, 36($16) sw $2, 32($16) lw $2, 16 ( $16 ); lw $5, 4($2) lw $4, 0($2) lw $3, 20 ( $16 ); lw $2, %call16(floor_)($3) lw $6, %got(__mips16...
2013 Jul 26
2
[LLVMdev] floor
I'm getting some problems because it seems that the compiler is treating "floor" differently from other math library functions like "sin". The Args and RetVal have the parameter and return types marked as void. For mips16, it's important that I be able to know the original signature for floating point functions. In some cases, need to create calls to helper
2013 Feb 20
3
[LLVMdev] Is va_arg correct on Mips backend?
...0 .set noreorder .set nomacro .set noat # BB#0: lui $2, %hi(_gp_disp) addiu $2, $2, %lo(_gp_disp) addiu $sp, $sp, -64 $tmp2: .cfi_def_cfa_offset 64 sw $ra, 60($sp) # 4-byte Folded Spill $tmp3: .cfi_offset 31, -4 addu $gp, $2, $25 sw $7, 76($sp) sw $6, 72($sp) sw $5, 68($sp) lw $3, %got(__stack_chk_guard)($gp) lw $1, 0($3) sw $1, 56($sp) sw $4, 52($sp) sw $zero, 48($sp) // i sw $zero, 44($sp) // val sw $zero, 40($sp) // sum addiu $1, $sp, 68 sw $1, 16($sp) // arg_ptr1 sw $zero, 48($sp) b $BB0_2 addiu $2, $zero, 40 $BB0_1: # i...
2013 Feb 20
0
[LLVMdev] Is va_arg correct on Mips backend?
...; lui $2, %hi(_gp_disp) > addiu $2, $2, %lo(_gp_disp) > addiu $sp, $sp, -64 > $tmp2: > .cfi_def_cfa_offset 64 > sw $ra, 60($sp) # 4-byte Folded Spill > $tmp3: > .cfi_offset 31, -4 > addu $gp, $2, $25 > sw $7, 76($sp) > sw $6, 72($sp) > sw $5, 68($sp) > lw $3, %got(__stack_chk_guard)($gp) > lw $1, 0($3) > sw $1, 56($sp) > sw $4, 52($sp) > sw $zero, 48($sp) // i > sw $zero, 44($sp) // val > sw $zero, 40($sp) // sum > addiu $1, $sp, 68 > sw $1, 16($sp) // arg_ptr1 > sw $zero, 48($sp) > b $BB0_2 > addiu $2, $zero, 40 &gt...
2014 Aug 31
1
System ACL and Samba ACL
My destination is :/Example(folder) / ITD(folder) / LW(folder) ,user(lw) of group(ITD) can enter and do everything(rwx) in LW(folder),the following is ACL settings On Freebsd: ----------------------- /Example(folder) : # owner: root # group: wheel user::rwx group::r-x other::r-x --------------------- /Example(folder) / ITD(folder): # owner: root # grou...
2007 Jul 12
1
[LLVMdev] backend problem with LiveInterval::removeRange
...: ch = BasicBlock <cond_false 0x88c7db8> => 0x88c9540: ch = BasicBlock <cond_false 0x88c7db8> Selecting: 0x88c9060: i32 = Constant <2> => 0x88c9060: i32 = ADDiu 0x88c9360, 0x88c88f8 Selecting: 0x88c8fc8: i32,ch = load 0x88c8f30, 0x88c8d70, 0x88c8dd8 => 0x88c8a98: i32,ch = LW 0x88c8a30, 0x88c89c8, 0x88c8f30 Selecting: 0x88c8f30: ch = store 0x88c8e30, 0x88c9160, 0x88c8ec8, 0x88c8dd8 => 0x88c8b10: ch = SW 0x88c9160, 0x88c8a30, 0x88c8fc8, 0x88c8e30 Selecting: 0x88c9160: i32,ch = CopyFromReg 0x88c88a0, 0x88c90f8 => 0x88c9160: i32,ch = CopyFromReg 0x88c88a0, 0x88c90f8...
2008 May 14
1
lw in legend also changes thickness of characters in the legend??
Here's a simple example: x <- 1:5 plot(x,x^2) lines(x,x^2) points(x,x,cex=2) lines(x,x,lw=3) legend("topleft",legend=c("y=x^2","y=x"),pch=1,pt.cex=1:2,lw=c(1,3)) The thickness of the circles in the legend changes with lw. If you change the lw argument in legend to lw=c(1,1) then the thickness of the circles goes back to normal. How can I make the above l...
2013 Feb 27
2
[LLVMdev] Mips backend 3.2 va_arg possible bug
.../mipsel.s> .set nomacro # BB#0: # %entry addiu $sp, $sp, -24 sw $ra, 20($sp) # 4-byte Folded Spill addiu $2, $sp, 56 sw $2, 16($sp) addiu $2, $2, 8 sw $2, 16($sp) lw $5, 60($sp) lw $4, 56($sp) jal _Z6reportx nop lw $2, 16($sp) #problem starts here addiu $3, $2, 4 #problem stops here sw $3, 16($sp) lw $4, 0($2) jal _Z6reporti nop lw $2, 16($...
2013 Feb 19
0
[LLVMdev] Is va_arg correct on Mips backend?
Which part of the generated code do you think is not correct? Could you be more specific? I compiled this program with clang and ran it on a mips board. It returns the expected result (21). On Tue, Feb 19, 2013 at 4:15 AM, Jonathan <gamma_chen at yahoo.com.tw> wrote: > I check the Mips backend for the following C code fragment compile result. > It seems not correct. Is it my
2013 Feb 19
2
[LLVMdev] Is va_arg correct on Mips backend?
I check the Mips backend for the following C code fragment compile result. It seems not correct. Is it my misunderstand or it's a bug. //ch8_3.cpp #include <stdarg.h> int sum_i(int amount, ...) { int i = 0; int val = 0; int sum = 0; va_list vl; va_start(vl, amount); for (i = 0; i < amount; i++) { val = va_arg(vl, int); sum += val; } va_end(vl);
2020 Jun 24
2
FW: Restrict qualifier on class members
...a[i] += b[i]; } } int main(int argc, char** argv) { __remote int* __restrict a = A; __remote int* __restrict b = B; #pragma unroll 4 for(int i=0; i<4; ++i) { a[i] += b[i]; } return 0; } vec_add give following schedule: *** Final schedule for %bb.8 *** SU(0): %33:gpr = LW %56:gpr, -8 :: (load 4 from %ir.scevgep8, !tbaa !14, !noalias !13, addrspace 1) SU(1): %34:gpr = LW %55:gpr, -8 :: (load 4 from %ir.scevgep14, !tbaa !14, !noalias !13, addrspace 1) SU(4): %36:gpr = LW %56:gpr, -4 :: (load 4 from %ir.scevgep10, !tbaa !14, !noalias !13, addrspace 1) SU(5): %37:...
2012 Dec 28
1
[LLVMdev] [PATCH] LLVM build failure on OpenBSD/mips64
...f function stub. Pass the beginning of the stub // to the MipsCompilationCallbackC. - "addiu $a0, $t8, -16\n" + "addiu $4, $24, -16\n" "jal " ASMPREFIX "MipsCompilationCallbackC\n" "nop\n" // Restore registers. - "lw $a0, 20($sp)\n" - "lw $a1, 24($sp)\n" - "lw $a2, 28($sp)\n" - "lw $a3, 32($sp)\n" - "lw $ra, 36($sp)\n" - "lw $t8, 40($sp)\n" - "ldc1 $f12, 48($sp)\n" - "ldc1 $f14, 56($sp)\n" - "addiu $sp, $sp,...
2006 Mar 17
1
nlme predict with se?
...Spanish where I found questions similar to mine but not solution. I do not really care about the method used. Any suggestions to obtain predictions with se's from an nlme would be appreciated. eal R Version 2.2.1 (2005-12-20 r36812) mac osx 10.4.5 on G5 DP > predict(kew11.nlme,x.for.lw.pred, se=T) Error in predict.nlme(kew11.nlme, x.for.lw.pred, se = T) : Levels 1. Fall-Winter,2. Spring,3. Summer,4. Fall not allowed for Season > x.for.lw.pred[1:10,] Season ecoreg MBreed ageyr2 sheep farm 1 1. Fall-Winter desert Meat 0.60 1 AksToKa 2 2...
2012 Jun 28
2
Aggregate weights for a unique set of rows
...very slow (typical size of nodes --> 200000x2): weights <- c(1, 1, 1, 1, 1) nodes <- matrix(c(1,2,3,4,5,6,1,2,1,4),ncol=2, byrow=T) ## to be replaced by a faster code drop.index <- duplicated(nodes) n.unique <- nodes[!drop.index, ] w.unique <- numeric(length(n.unique[,1])) lw <- length(weights) for (i in seq_along(w.unique)){ index <- as.logical(2==rowSums(nodes==matrix(rep(n.unique[i,],lw),byrow = TRUE, nrow=lw))) w.unique[i] <- sum(weights[index]) } ## n.unique w.unique ^ | X | / | /eiser, Constantin |...
2013 Feb 28
0
[LLVMdev] Mips backend 3.2 va_arg possible bug
...> # BB#0: # %entry > addiu $sp, $sp, -24 > sw $ra, 20($sp) # 4-byte Folded Spill > addiu $2, $sp, 56 > sw $2, 16($sp) > addiu $2, $2, 8 > sw $2, 16($sp) > lw $5, 60($sp) > lw $4, 56($sp) > jal _Z6reportx > nop > > lw $2, 16($sp) > #problem starts here > > addiu $3, $2, 4 > > #problem stops here > sw $3, 16($sp) > lw $4, 0($2) >...
2013 Sep 02
0
[LLVMdev] .globl
...Spill sw $18, 24($sp) # 4-byte Folded Spill sw $17, 20($sp) # 4-byte Folded Spill sw $16, 16($sp) # 4-byte Folded Spill $tmp3: .cfi_offset 31, -4 $tmp4: .cfi_offset 18, -8 $tmp5: .cfi_offset 17, -12 $tmp6: .cfi_offset 16, -16 addu $16, $2, $25 move $17, $4 lw $18, %call16(foo)($16) $BB0_1: # %loop # =>This Inner Loop Header: Depth=1 move $25, $18 jalr $25 move $gp, $16 addiu $17, $17, -1 bnez $17, $BB0_1 nop # BB#2: # %exit lw $16, 16($sp)...
2020 Mar 27
3
llvm-objdump cannot recognize mul&mulh RISC-V M Instructions
...C_OPTS) -o $(WORK_DIR)/build/$@/$@ $(src) $(RISCV_LINK_OPTS) --verbose $(RISCV_OBJDUMP) -d $(WORK_DIR)/build/$@/$@ > $(WORK_DIR)/build/$@/$@.S $(RISCV_LLVM_OBJDUMP) --arch=rv32imac -D $(WORK_DIR)/build/$@/$@ > $(WORK_DIR)/build/$@/$@.ASM ``` gcc objdump result: ``` 4001168: 00052383 lw t2,0(a0) 400116c: 979a add a5,a5,t1 400116e: 439c lw a5,0(a5) 4001170: 0308a533 mulhsu a0,a7,a6 ``` llvm-objdump result: ``` 4001168: 83 23 05 00 lw t2, 0(a0) 400116c: 9a 97 add a5, a5, t1 400116e: 9c 43...
2012 Mar 22
2
[LLVMdev] Sorting relocation entries
...nsecutively in the relocation table. As a result, relocations can appear in a different order than the instructions that they're for. For example, in this code, the post-RA scheduler inserts an instruction with relocation %got(body_ok) between %got(scope_top) and %lo(scope_top). $ cat z29.s lw $3, %got(scope_top)($gp) lw $2, %got(body_ok)($gp) lw $3, %lo(scope_top)($3) addiu $2, $2, %lo(body_ok) This is the assembled program generated by gas: $ mips-linux-gnu-objdump -dr z29.gas.o 748: 8f830000 lw v1,0(gp) 748: R_MIPS_GOT16...
2014 May 17
2
Can I authenticate with windows UPN names using winbind? If so how?
Hi all, I am trying to set up an linux server that allows users to log in via their windows UPN names rather than their SamID's. I have set up two test boxes: debian linux 7 running Winbind Version 3.6.6 Ubuntu Linux 14.04 running Winbind version 4.1.6-Ubuntu. smb.conf is at bottom of this post. I've bound both linux boxen to our Active Directory Server running 2008R2 and can return
2002 Oct 31
7
Symbols for male/female
...me some pointers on how I would need to go about this? Thanks and regards, Lorenz -- Lorenz Gygax, Dr. sc. nat. Artificial Intelligence Lab, Department of Information Technology University of Zurich-Irchel, +41-1-635 67 17, gygax at ifi.unizh.ch one.female <- function (X, diam= 1, prop= 1, lw= 1) { ## X a vector giving the position of the symbol c (x, y) ## diam: diameter in the entities on the Y axis ## prop: proportion of x to y axis (so that symbols will be round ## lw: adjustment of line width for large symbols x.ring <- cos (seq (0, 2*pi, len= 500)) * prop * diam/2...