Searched refs:Val (Results 201 - 225 of 464) sorted by relevance

1234567891011>>

/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp208 void CheckVarDecl(const VarDecl *VD, const Expr *Ex, const Expr *Val, argument
225 Report(VD, dsk, ExLoc, Val->getSourceRange());
229 void CheckDeclRef(const DeclRefExpr *DR, const Expr *Val, DeadStoreKind dsk, argument
232 CheckVarDecl(VD, DR, Val, dsk, Live);
/external/llvm/include/llvm/Analysis/
H A DAliasAnalysis.h578 static unsigned getHashValue(const AliasAnalysis::Location &Val) { argument
579 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^
580 DenseMapInfo<uint64_t>::getHashValue(Val.Size) ^
581 DenseMapInfo<const MDNode *>::getHashValue(Val.TBAATag);
/external/llvm/include/llvm/CodeGen/
H A DScheduleDFS.h190 raw_ostream &operator<<(raw_ostream &OS, const ILPValue &Val);
H A DAsmPrinter.h380 void EmitCFAByte(unsigned Val) const;
385 void EmitEncodingByte(unsigned Val, const char *Desc = nullptr) const;
H A DMachineFrameInfo.h113 bool isSS, const AllocaInst *Val)
115 isSpillSlot(isSS), Alloca(Val), PreAllocated(false) {}
112 StackObject(uint64_t Sz, unsigned Al, int64_t SP, bool IM, bool isSS, const AllocaInst *Val) argument
/external/llvm/include/llvm/IR/
H A DConstantRange.h105 bool contains(const APInt &Val) const;
H A DModule.h186 Value *Val; member in struct:llvm::Module::ModuleFlagEntry
188 : Behavior(B), Key(K), Val(V) {}
440 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Value *Val);
441 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
H A DDebugInfo.h237 /// Val can be either a MDNode or a MDString, in the latter,
239 const Value *Val; member in class:llvm::DIRef
245 operator Value *() const { return const_cast<Value *>(Val); }
250 if (!Val)
253 if (const MDNode *MD = dyn_cast<MDNode>(Val))
256 const MDString *MS = cast<MDString>(Val);
266 if (!Val)
269 if (const MDNode *MD = dyn_cast<MDNode>(Val))
272 const MDString *MS = cast<MDString>(Val);
/external/llvm/include/llvm/Support/
H A DGCOV.h190 bool readInt(uint32_t &Val) { argument
197 Val = *(const uint32_t *)(Str.data());
201 bool readInt64(uint64_t &Val) { argument
204 Val = ((uint64_t)Hi << 32) | Lo;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.h32 const DIEValue *Val; member in struct:llvm::DIEHash::AttrEntry
/external/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp448 Value *Val = MFE.Val; local
451 VersionVal = cast<ConstantInt>(Val)->getZExtValue();
455 ImageInfoFlags |= cast<ConstantInt>(Val)->getZExtValue();
457 SectionVal = cast<MDString>(Val)->getString();
459 LinkerOptions = cast<MDNode>(Val);
925 Value *Val = MFE.Val; local
927 LinkerOptions = cast<MDNode>(Val);
H A DMachineFunction.cpp828 return Val.MachineCPVal->getType();
829 return Val.ConstVal->getType();
835 return Val.MachineCPVal->getRelocationInfo();
836 return Val.ConstVal->getRelocationInfo();
842 delete Constants[i].Val.MachineCPVal;
906 CanShareConstantPoolEntry(Constants[i].Val.ConstVal, C,
942 Constants[i].Val.MachineCPVal->print(OS);
944 Constants[i].Val.ConstVal->printAsOperand(OS, /*PrintType=*/false);
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp97 /// isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s
101 static bool isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME);
346 bool PPCDAGToDAGISel::isRunOfOnes(unsigned Val, unsigned &MB, unsigned &ME) { argument
347 if (!Val)
350 if (isShiftedMask_32(Val)) {
352 MB = countLeadingZeros(Val);
354 ME = countLeadingZeros((Val - 1) ^ Val);
357 Val = ~Val; // inver
1154 SDValue Val = N->getOperand(0).getOperand(0); local
1163 SDValue Val = N->getOperand(0); local
1170 SDValue Val = N->getOperand(0); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp663 unsigned Val = cast<ConstantInt>(MSI->getValue())->getZExtValue(); local
666 APInt APVal(NumBytes*8, Val);
669 if (Val)
1928 Value *Val = SI->getOperand(0); local
1929 Type *SIType = Val->getType();
1941 Value *Extract = Builder.CreateExtractValue(Val, i, Val->getName());
1991 Instruction *Val = NewElts[Idx]; local
1992 if (Val->getType() != BC->getDestTy()) {
1993 Val
2083 Instruction *Val = NewElts[Idx]; local
[all...]
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp101 /// RemoveFromReverseMap - This is a helper function that removes Val from
106 Instruction *Inst, KeyTy Val) {
110 bool Found = InstIt->second.erase(Val);
876 NonLocalDepEntry Val = Cache.back(); local
879 std::upper_bound(Cache.begin(), Cache.end()-1, Val);
880 Cache.insert(Entry, Val);
886 NonLocalDepEntry Val = Cache.back(); local
889 std::upper_bound(Cache.begin(), Cache.end(), Val);
890 Cache.insert(Entry, Val);
1499 const NonLocalDepInfo &Val local
104 RemoveFromReverseMap(DenseMap<Instruction*, SmallPtrSet<KeyTy, 4> > &ReverseMap, Instruction *Inst, KeyTy Val) argument
[all...]
/external/llvm/lib/Support/
H A DCommandLine.cpp280 StringRef Val(Value);
281 StringRef::size_type Pos = Val.find(',');
285 if (Handler->addOccurrence(pos, ArgName, Val.substr(0, Pos), MultiArg))
288 Val = Val.substr(Pos+1);
291 Pos = Val.find(',');
294 Value = Val;
1240 StringRef Arg, double &Val) {
1241 return parseDouble(O, Arg, Val);
1245 StringRef Arg, float &Val) {
1239 parse(Option &O, StringRef ArgName, StringRef Arg, double &Val) argument
1244 parse(Option &O, StringRef ArgName, StringRef Arg, float &Val) argument
[all...]
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp94 unsigned getVectorInstrCost(unsigned Opcode, Type *Val,
739 unsigned X86TTI::getVectorInstrCost(unsigned Opcode, Type *Val, argument
741 assert(Val->isVectorTy() && "This must be a vector type");
745 std::pair<unsigned, MVT> LT = TLI->getTypeLegalizationCost(Val);
756 if (Val->getScalarType()->isFloatingPointTy() && Index == 0)
760 return TargetTransformInfo::getVectorInstrCost(Opcode, Val, Index);
920 unsigned X86TTI::getIntImmCost(int64_t Val) const {
921 if (Val == 0)
924 if (isInt<32>(Val))
957 int64_t Val local
[all...]
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.h829 int64_t Val; member in class:llvm::EmitIntegerMatcher
833 : Matcher(EmitInteger), Val(val), VT(vt) {}
835 int64_t getValue() const { return Val; }
845 return cast<EmitIntegerMatcher>(M)->Val == Val &&
848 unsigned getHashImpl() const override { return (Val << 4) | VT; }
854 std::string Val; member in class:llvm::EmitStringIntegerMatcher
858 : Matcher(EmitStringInteger), Val(val), VT(vt) {}
860 const std::string &getValue() const { return Val; }
870 return cast<EmitStringIntegerMatcher>(M)->Val
[all...]
/external/llvm/lib/IR/
H A DConstantFold.cpp577 APFloat Val = FPC->getValueAPF(); local
578 Val.convert(DestTy->isHalfTy() ? APFloat::IEEEhalf :
586 return ConstantFP::get(V->getContext(), Val);
598 APInt Val(DestBitWidth, x);
599 return ConstantInt::get(FPC->getContext(), Val);
755 Constant *llvm::ConstantFoldExtractElementInstruction(Constant *Val, argument
757 if (isa<UndefValue>(Val)) // ee(undef, x) -> undef
758 return UndefValue::get(Val->getType()->getVectorElementType());
759 if (Val->isNullValue()) // ee(zero, x) -> zero
760 return Constant::getNullValue(Val
775 ConstantFoldInsertElementInstruction(Constant *Val, Constant *Elt, Constant *Idx) argument
851 ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val, ArrayRef<unsigned> Idxs) argument
[all...]
H A DIRBuilder.cpp64 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, argument
67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
/external/bison/lib/
H A Dstrtol.c31 # define __set_errno(Val) errno = (Val)
/external/llvm/include/llvm/ADT/
H A DEquivalenceClasses.h109 bool operator<(const T &Val) const { return Data < Val; }
/external/llvm/lib/TableGen/
H A DTGParser.h123 IterRecord(VarInit *Var, Init *Val) : IterVar(Var), IterValue(Val) {} argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp246 // (Val ashr C1) & C2 -> (Val lshr C1) & C2
306 // isRunOfOnes - Returns true iff Val consists of one contiguous run of 1s with
310 static bool isRunOfOnes(ConstantInt *Val, uint32_t &MB, uint32_t &ME) { argument
311 const APInt& V = Val->getValue();
312 uint32_t BitWidth = Val->getType()->getBitWidth();
813 Value *Val = LHS->getOperand(0), *Val2 = RHS->getOperand(0);
823 Value *NewOr = Builder->CreateOr(Val, Val2);
829 Value *NewOr = Builder->CreateOr(Val, Val2);
845 match(Val, m_An
[all...]
H A DInstCombineLoadStoreAlloca.cpp598 Value *Val = SI.getOperand(0); local
604 getOrEnforceKnownAlignment(Ptr, DL->getPrefTypeAlignment(Val->getType()),
608 DL->getABITypeAlignment(Val->getType());
664 if (LI == Val && equivalentAddressValues(LI->getOperand(0), Ptr) &&
680 if (!isa<UndefValue>(Val)) {
681 SI.setOperand(0, UndefValue::get(Val->getType()));
682 if (Instruction *U = dyn_cast<Instruction>(Val))
689 if (isa<UndefValue>(Val))

Completed in 2231 milliseconds

1234567891011>>