search for: selty

Displaying 5 results from an estimated 5 matches for "selty".

Did you mean: sel_y
2020 Jul 16
2
BitcodeReader.cpp bug under LTO
.... As LLVM doesn't emit use-list for LTO bitcode files, many forward references will happen when BitcodeReader processes the bitcode file, and LLVM uses placeholders for those forward references and resolve them later. When parseConstants() reads in a CST_CODE_CE_SELECT record, e.g. select <selty><cond>, <ty><val1>, <ty><val2> If "ty" here is a vector type and "cond" is a forward reference, LLVM uses i1 as the placeholder type of "cond" if it cannot find "cond" in ValueList, as the code follows: Type *SelectorT...
2011 Oct 19
2
[LLVMdev] Error when cond of select instruction is a vector
Hi LLVMdev, In the specification of llvm ir, the select operation can takes a condition of vector type, 'select' Instruction Syntax: <result> = select *selty* <cond>, <ty> <val1>, <ty> <val2> *; yields ty* *selty* is either i1 or {<N x i1>} Overview: The 'select' instruction is used to choose one value based on a condition, without branching. If the condition is a vector of i1, then the value arguments...
2020 Jul 20
2
BitcodeReader.cpp bug under LTO
.... As LLVM doesn't emit use-list for LTO bitcode files, many forward references will happen when BitcodeReader processes the bitcode file, and LLVM uses placeholders for those forward references and resolve them later. When parseConstants() reads in a CST_CODE_CE_SELECT record, e.g. select <selty><cond>, <ty><val1>, <ty><val2> If "ty" here is a vector type and "cond" is a forward reference, LLVM uses i1 as the placeholder type of "cond" if it cannot find "cond" in ValueList, as the code follows: Type *SelectorT...
2011 Oct 19
0
[LLVMdev] Error when cond of select instruction is a vector
...Wednesday, October 19, 2011 10:10 To: LLVMdev at cs.uiuc.edu Subject: [LLVMdev] Error when cond of select instruction is a vector Hi LLVMdev, In the specification of llvm ir, the select operation can takes a condition of vector type, 'select' Instruction Syntax: <result> = select selty <cond>, <ty> <val1>, <ty> <val2> ; yields ty selty is either i1 or {<N x i1>} Overview: The 'select' instruction is used to choose one value based on a condition, without branching. If the condition is a vector of i1, then the value ar...
2011 Oct 19
1
[LLVMdev] Error when cond of select instruction is a vector
...[LLVMdev] Error when cond of select instruction is a vector**** > > ** ** > > Hi LLVMdev, > > In the specification of llvm ir, the select operation can takes a condition > of vector type,**** > 'select' Instruction ****Syntax:**** > > <result> = select *selty* <cond>, <ty> <val1>, <ty> <val2> *; yields ty***** > > ** ** > > *selty* is either i1 or {<N x i1>}**** > > Overview:**** > > The 'select' instruction is used to choose one value based on a condition, > without br...