Searched refs:Val (Results 251 - 275 of 319) sorted by relevance

<<111213

/external/clang/lib/Analysis/
H A DLiveVariables.cpp207 LiveVariables::LivenessValues &Val,
210 : LV(im), val(Val), observer(Observer), currentBlock(CurrentBlock) {}
206 TransferFunctions(LiveVariablesImpl &im, LiveVariables::LivenessValues &Val, LiveVariables::Observer *Observer, const CFGBlock *CurrentBlock) argument
/external/llvm/include/llvm/CodeGen/
H A DMachineInstr.h228 void setIsInsideBundle(bool Val = true) {
229 if (Val)
/external/llvm/include/llvm/Support/
H A DIntegersSubsetMapping.h417 SuccessorClass *findSuccessor(const IntTy& Val) { argument
419 if (i->first.isInRange(Val))
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp317 Value *Val = SI->getOperand(0); local
319 AA.getTypeStoreSize(Val->getType()),
H A DInstructionSimplify.cpp1836 APInt Val = CI2->getValue().abs(); local
1837 if (!Val.isMinValue()) {
1838 Lower = IntMin.sdiv(Val);
1839 Upper = IntMax.sdiv(Val) + 1;
2590 static Value *SimplifyInsertValueInst(Value *Agg, Value *Val, argument
2594 if (Constant *CVal = dyn_cast<Constant>(Val))
2598 if (match(Val, m_Undef()))
2602 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Val))
2617 Value *llvm::SimplifyInsertValueInst(Value *Agg, Value *Val, argument
2622 return ::SimplifyInsertValueInst(Agg, Val, Idx
[all...]
/external/llvm/lib/VMCore/
H A DMetadata.cpp106 void MDNode::replaceOperandWith(unsigned i, Value *Val) { argument
108 replaceOperand(Op, Val);
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h332 /// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr.
333 /// Ptr is the address of the memory at which to store Val, cast to
335 /// address at which to store Val.
336 void StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr,
/external/llvm/lib/Support/
H A DYAMLParser.cpp666 SmallString<4> Val; local
667 encodeUTF8(0xFFFD, Val);
668 EscapedInput.insert(EscapedInput.end(), Val.begin(), Val.end());
/external/clang/lib/StaticAnalyzer/Core/
H A DCheckerManager.cpp314 SVal Val; member in struct:__anon3947::CheckBindContext
325 : Checkers(checkers), Loc(loc), Val(val), S(s), Eng(eng), PP(pp) {}
332 checkFn(Loc, Val, S, C);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp353 SDValue Val = N->getOperand(1); local
354 EVT OldEVT = Val.getValueType();
367 GetExpandedOp(Val, Lo, Hi);
H A DTargetLowering.cpp1873 static bool ValueHasExactlyOneBitSet(SDValue Val, const SelectionDAG &DAG) { argument
1876 if (Val.getOpcode() == ISD::SHL)
1878 dyn_cast<ConstantSDNode>(Val.getNode()->getOperand(0)))
1884 if (Val.getOpcode() == ISD::SRL)
1886 dyn_cast<ConstantSDNode>(Val.getNode()->getOperand(0)))
1894 EVT OpVT = Val.getValueType();
1897 DAG.ComputeMaskedBits(Val, KnownZero, KnownOne);
2176 SDValue Val; local
2178 Val = N0.getOperand(0);
2183 Val
[all...]
H A DLegalizeFloatTypes.cpp795 SDValue Val = ST->getValue(); local
800 Val = BitConvertToInteger(DAG.getNode(ISD::FP_ROUND, dl, ST->getMemoryVT(),
801 Val, DAG.getIntPtrConstant(0)));
803 Val = GetSoftenedFloat(Val);
805 return DAG.getStore(ST->getChain(), dl, Val, ST->getBasePtr(),
/external/llvm/lib/CodeGen/
H A DMachineInstr.cpp92 void MachineOperand::setIsDef(bool Val) { argument
94 assert((!Val || !isDebug()) && "Marking a debug operation as def");
95 if (IsDef == Val)
103 IsDef = Val;
107 IsDef = Val;
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp1210 Offset = -cast<ConstantInt>(CPE.Val.ConstVal)->getSExtValue();
1616 EmitMachineConstantPoolValue(MCPE.Val.MachineCPVal);
1618 EmitGlobalConstant(MCPE.Val.ConstVal);
1743 uint32_t Val = 0xe7ffdefeUL; local
1745 OutStreamer.EmitIntValue(Val, 4);
1755 uint16_t Val = 0xdefe; local
1757 OutStreamer.EmitIntValue(Val, 2);
H A DThumb1RegisterInfo.cpp69 int Val,
75 Type::getInt32Ty(MBB.getParent()->getFunction()->getContext()), Val);
65 emitLoadConstPool(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val, ARMCC::CondCodes Pred, unsigned PredReg, unsigned MIFlags) const argument
/external/clang/lib/CodeGen/
H A DCGException.cpp278 llvm::Value *Val = LPI->getClause(I)->stripPointerCasts(); local
281 if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val))
288 llvm::Constant *CVal = cast<llvm::Constant>(Val);
/external/clang/include/clang/AST/
H A DStmt.h702 void setLHS(Expr *Val) { SubExprs[LHS] = reinterpret_cast<Stmt*>(Val); } argument
703 void setRHS(Expr *Val) { SubExprs[RHS] = reinterpret_cast<Stmt*>(Val); } argument
/external/llvm/lib/Target/CellSPU/
H A DSPUISelLowering.cpp1459 SDValue Val = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(), VA.getLocVT(), local
1461 Chain = Val.getValue(1);
1462 InFlag = Val.getValue(2);
1463 InVals.push_back(Val);
1740 SDValue Val = DAG.getTargetConstant(upper, MVT::i32); local
1743 Val, Val, Val, Val));
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
H A DSDL_epocevents.cpp332 User::LeaveIfError(lex.Val(value));
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h979 getSimplifiedValue(const clang::ento::CallEventRef<T>& Val) { argument
980 return Val.getPtr();
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp1085 TheJIT->InitializeMemory(CPE.Val.ConstVal, (void*)CAddr);
1089 Type *Ty = CPE.Val.ConstVal->getType();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp100 const APInt &Val = CI->getValue(); local
101 if (Val.isSignBit())
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp532 Value* Val = PN->getIncomingValueForBlock(BB); local
538 if (BBPreds.count(IBB) && Val != PN->getIncomingValue(PI)) {
H A DPromoteMemoryToRegister.cpp69 static unsigned getHashValue(const std::pair<BasicBlock*, unsigned> &Val) { argument
71 return static_cast<unsigned>(hash_value(Val));
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp726 unsigned &Code, unsigned &AbbrevToUse, const APInt &Val,
729 if (Val.getBitWidth() <= 64) {
730 uint64_t V = Val.getSExtValue();
743 unsigned NWords = Val.getActiveWords();
748 const uint64_t *RawWords = Val.getRawData();
725 EmitAPInt(SmallVectorImpl<uint64_t> &Vals, unsigned &Code, unsigned &AbbrevToUse, const APInt &Val, bool EmitSizeForWideNumbers = false ) argument

Completed in 2304 milliseconds

<<111213