search for: st32

Displaying 6 results from an estimated 6 matches for "st32".

Did you mean: s32
2007 Feb 14
1
[LLVMdev] bitconvert for multi-typed RegisterClasses
...trInfo.td. And then, it only seems to work if I add a pseudo >> instruction with the following selection pattern (store (f32 Regs: >> $src), ADDRri:$addr), rather than adding a pattern such as the >> following: >> >> def : Pat<(store (f32 Regs:$src), ADDRri:$addr), (ST32 Regs:$src, >> ADDRri:$addr)>; >> >> The above pattern produced the following error because the >> TargetOperandInfo for the 1 operand of the store had a NULL register >> class. >> >> llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:304: failed assertion &gt...
2007 Feb 13
0
[LLVMdev] bitconvert for multi-typed RegisterClasses
...ypes to the > InstrInfo.td. And then, it only seems to work if I add a pseudo > instruction with the following selection pattern (store (f32 Regs: > $src), ADDRri:$addr), rather than adding a pattern such as the > following: > > def : Pat<(store (f32 Regs:$src), ADDRri:$addr), (ST32 Regs:$src, > ADDRri:$addr)>; > > The above pattern produced the following error because the > TargetOperandInfo for the 1 operand of the store had a NULL register > class. > > llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:304: failed assertion > `RC && "Don...
2007 Feb 12
2
[LLVMdev] bitconvert for multi-typed RegisterClasses
...patterns for the f32 types to the InstrInfo.td. And then, it only seems to work if I add a pseudo instruction with the following selection pattern (store (f32 Regs: $src), ADDRri:$addr), rather than adding a pattern such as the following: def : Pat<(store (f32 Regs:$src), ADDRri:$addr), (ST32 Regs:$src, ADDRri:$addr)>; The above pattern produced the following error because the TargetOperandInfo for the 1 operand of the store had a NULL register class. llvm/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp:304: failed assertion `RC && "Don't have operand info for thi...
2004 Aug 16
1
PDC/LDAP domain login problems
...o(1344) Searching for:[(&(objectClass=sambaDomain)(sambaDomainName=MGETMP))] [2004/08/16 16:08:10, 2] lib/smbldap.c:smbldap_open_connection(639) smbldap_open_connection: connection opened [2004/08/16 16:08:10, 2] smbd/reply.c:reply_special(208) netbios connect: name1=YELLOW name2=ST32 [2004/08/16 16:08:10, 2] smbd/reply.c:reply_special(215) netbios connect: local=yellow remote=st32, name type = 0 [2004/08/16 16:08:10, 2] smbd/sesssetup.c:setup_new_vc_session(602) setup_new_vc_session: New VC == 0, if NT4.x compatible we would close all old resources. [2004/08/16 16:08:10, 2]...
2007 Feb 12
0
[LLVMdev] bitconvert for multi-typed RegisterClasses
On Feb 12, 2007, at 1:41 AM, Christopher Lamb wrote: > > selector refused to select certain ops (specifically stores) for some > instructions when the operand type wasn't the first type for the > register class. After some digging around I seem to have solved the > problem by creating bitconvert patterns between the types in the > register class like the following: > >
2007 Feb 12
2
[LLVMdev] bitconvert for multi-typed RegisterClasses
Hi All, I'm working on a back end for an architecture that makes use of multi- typed register classes. def MR: RegisterClass<"namespace", [type1, type2, ... ], ... > When running some preliminary tests I found that the instruction selector refused to select certain ops (specifically stores) for some instructions when the operand type wasn't the first type for the