Home
last modified time | relevance | path

Searched refs:LastVal (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp621 Value *LastVal = nullptr; in createNaryFAdd() local
628 if (!LastVal) { in createNaryFAdd()
629 LastVal = V; in createNaryFAdd()
635 LastVal = createFAdd(LastVal, V); in createNaryFAdd()
640 LastVal = createFSub(V, LastVal); in createNaryFAdd()
642 LastVal = createFSub(LastVal, V); in createNaryFAdd()
648 LastVal = createFNeg(LastVal); in createNaryFAdd()
656 return LastVal; in createNaryFAdd()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp383 void writeConstants(unsigned FirstVal, unsigned LastVal, bool isGlobal);
2394 void ModuleBitcodeWriter::writeConstants(unsigned FirstVal, unsigned LastVal, in writeConstants() argument
2396 if (FirstVal == LastVal) return; in writeConstants()
2410 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, Log2_32_Ceil(LastVal+1))); in writeConstants()
2437 for (unsigned i = FirstVal; i != LastVal; ++i) { in writeConstants()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kISelLowering.cpp884 unsigned LastVal = ~0U; in LowerFormalArguments() local
888 assert(VA.getValNo() != LastVal && "Same value in different locations"); in LowerFormalArguments()
890 LastVal = VA.getValNo(); in LowerFormalArguments()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp1536 SDValue LastVal = SDValue(); in getValueBits() local
1546 if (LHSBits[i].hasValue() && LHSBits[i].getValue() == LastVal && in getValueBits()
1549 else if (RHSBits[i].hasValue() && RHSBits[i].getValue() == LastVal && in getValueBits()
1565 LastVal = Bits[i].getValue(); in getValueBits()
1569 if (LastVal) LastVal = SDValue(); in getValueBits()