Searched refs:Val (Results 1 - 25 of 269) sorted by relevance

1234567891011

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DTinyPtrVector.h33 llvm::PointerUnion<EltTy, VecTy*> Val; member in class:llvm::TinyPtrVector
37 if (VecTy *V = Val.template dyn_cast<VecTy*>())
41 TinyPtrVector(const TinyPtrVector &RHS) : Val(RHS.Val) {
42 if (VecTy *V = Val.template dyn_cast<VecTy*>())
43 Val = new VecTy(*V);
55 if (Val.template is<EltTy>()) {
57 Val = RHS.front();
59 Val = new VecTy(*RHS.Val
[all...]
H A DDenseMapInfo.h26 //static unsigned getHashValue(const T &Val);
34 uintptr_t Val = static_cast<uintptr_t>(-1); local
35 Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
36 return reinterpret_cast<T*>(Val);
39 uintptr_t Val = static_cast<uintptr_t>(-2); local
40 Val <<= PointerLikeTypeTraits<T*>::NumLowBitsAvailable;
41 return reinterpret_cast<T*>(Val);
54 static unsigned getHashValue(const char& Val) { return Val * 37U; } argument
64 static unsigned getHashValue(const unsigned& Val) { retur argument
74 getHashValue(const unsigned long& Val) argument
86 getHashValue(const unsigned long long& Val) argument
99 getHashValue(const int& Val) argument
111 getHashValue(const long& Val) argument
123 getHashValue(const long long& Val) argument
[all...]
H A DUniqueVector.h38 unsigned &Val = Map[Entry]; local
41 if (Val) return Val;
44 Val = static_cast<unsigned>(Vector.size()) + 1;
48 return Val;
H A DPointerUnion.h84 ValTy Val;
99 Val.setPointer(
101 Val.setInt(0);
104 Val.setPointer(
106 Val.setInt(1);
114 return !PointerLikeTypeTraits<PT1>::getFromVoidPointer(Val.getPointer());
126 return static_cast<int>(Val.getInt()) == TyNo;
134 return PointerLikeTypeTraits<T>::getFromVoidPointer(Val.getPointer());
154 assert(is<PT1>() && "Val is not the first pointer");
155 assert(get<PT1>() == Val
214 ValTy Val; member in class:llvm::PointerUnion3
217 ValTy Val; member in struct:llvm::PointerUnion3::IsInnerUnion
231 ValTy Val; member in struct:llvm::PointerUnion3::IsPT3
347 ValTy Val; member in class:llvm::PointerUnion4
[all...]
H A DTwine.h289 explicit Twine(char Val) argument
291 LHS.character = Val;
295 explicit Twine(signed char Val) argument
297 LHS.character = static_cast<char>(Val);
301 explicit Twine(unsigned char Val) argument
303 LHS.character = static_cast<char>(Val);
306 /// Construct a twine to print \p Val as an unsigned decimal integer.
307 explicit Twine(unsigned Val) argument
309 LHS.decUI = Val;
312 /// Construct a twine to print \p Val a
313 Twine(int Val) argument
319 Twine(const unsigned long &Val) argument
325 Twine(const long &Val) argument
331 Twine(const unsigned long long &Val) argument
337 Twine(const long long &Val) argument
374 utohexstr(const uint64_t &Val) argument
[all...]
H A DPointerIntPair.h106 void setFromOpaqueValue(void *Val) { Value = reinterpret_cast<intptr_t>(Val);}
138 uintptr_t Val = static_cast<uintptr_t>(-1);
139 Val <<= PointerLikeTypeTraits<PointerTy>::NumLowBitsAvailable;
140 return Ty(reinterpret_cast<PointerTy>(Val), IntType((1 << IntBits)-1));
143 uintptr_t Val = static_cast<uintptr_t>(-2);
144 Val <<= PointerLikeTypeTraits<PointerTy>::NumLowBitsAvailable;
145 return Ty(reinterpret_cast<PointerTy>(Val), IntType(0));
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DCasting.h34 static SimpleType &getSimplifiedValue(From &Val) { return Val; } argument
39 static SimpleType &getSimplifiedValue(const From &Val) { argument
40 return simplify_type<From>::getSimplifiedValue(static_cast<From&>(Val));
49 static inline bool doit(const From &Val) { argument
50 return To::classof(&Val);
55 static inline bool doit(const From &Val) { argument
56 return isa_impl<To, From>::doit(Val);
61 static inline bool doit(const From &Val) { argument
62 return isa_impl<To, From>::doit(Val);
67 doit(const From *Val) argument
74 doit(const From *Val) argument
81 doit(const From *Val) argument
91 doit(const From &Val) argument
101 doit(const FromTy &Val) argument
112 isa(const Y &Val) argument
170 doit(const From &Val) argument
179 doit(const FromTy &Val) argument
196 cast(const Y &Val) argument
206 cast_or_null(Y *Val) argument
222 dyn_cast(const Y &Val) argument
230 dyn_cast_or_null(Y *Val) argument
[all...]
/macosx-10.9.5/curl-78.94.1/curl/include/curl/
H A Dcurlrules.h222 # define CURL_OFF_T_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \
224 # define CURL_OFF_TU_C(Val) __CURL_OFF_T_C_HLPR1(Val) ## \
228 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix
230 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix
232 # define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffi
[all...]
/macosx-10.9.5/objc4-551.1/runtime/
H A Dllvm-DenseMapInfo.h28 //static unsigned getHashValue(const T &Val);
36 uintptr_t Val = static_cast<uintptr_t>(-1); local
37 return reinterpret_cast<T*>(Val);
40 uintptr_t Val = static_cast<uintptr_t>(-2); local
41 return reinterpret_cast<T*>(Val);
58 static unsigned getHashValue(const char* const &Val) { argument
59 return _objc_strhash(Val);
70 static unsigned getHashValue(const char& Val) { return Val * 37U; } argument
80 static unsigned getHashValue(const unsigned& Val) { retur argument
90 getHashValue(const unsigned long& Val) argument
102 getHashValue(const unsigned long long& Val) argument
115 getHashValue(const int& Val) argument
127 getHashValue(const long& Val) argument
139 getHashValue(const long long& Val) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DLowerAtomic.cpp27 Value *Val = CXI->getNewValOperand(); local
31 Value *Res = Builder.CreateSelect(Equal, Val, Orig);
42 Value *Val = RMWI->getValOperand(); local
50 Res = Val;
53 Res = Builder.CreateAdd(Orig, Val);
56 Res = Builder.CreateSub(Orig, Val);
59 Res = Builder.CreateAnd(Orig, Val);
62 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val));
65 Res = Builder.CreateOr(Orig, Val);
68 Res = Builder.CreateXor(Orig, Val);
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/MC/
H A DMCInst.h78 void setImm(int64_t Val) { argument
80 ImmVal = Val;
88 void setFPImm(double Val) { argument
90 FPImmVal = Val;
97 void setExpr(const MCExpr *Val) { argument
99 ExprVal = Val;
106 void setInst(const MCInst *Val) { argument
108 InstVal = Val;
117 static MCOperand CreateImm(int64_t Val) { argument
120 Op.ImmVal = Val;
123 CreateFPImm(double Val) argument
129 CreateExpr(const MCExpr *Val) argument
135 CreateInst(const MCInst *Val) argument
[all...]
H A DMCValue.h56 int64_t Val = 0) {
59 R.Cst = Val;
65 static MCValue get(int64_t Val) { argument
67 R.Cst = Val;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DValue.h331 if (Val) removeFromList();
332 Val = V;
341 static inline bool doit(const Value &Val) { argument
342 return Val.getValueID() >= Value::ConstantFirstVal &&
343 Val.getValueID() <= Value::ConstantLastVal;
348 static inline bool doit (const Value &Val) { argument
349 return Val.getValueID() == Value::ArgumentVal;
354 static inline bool doit(const Value &Val) { argument
355 return Val.getValueID() == Value::InlineAsmVal;
360 static inline bool doit(const Value &Val) { argument
366 doit(const Value &Val) argument
372 doit(const Value &Val) argument
378 doit(const Value &Val) argument
384 doit(const Value &Val) argument
390 doit(const Value &Val) argument
397 doit(const Value &Val) argument
[all...]
H A DUse.h74 if (Val) removeFromList();
83 Use(PrevPtrTag tag) : Val(0) {
89 operator Value*() const { return Val; }
93 Value *get() const { return Val; }
99 inline void set(Value *Val);
106 set(RHS.Val);
110 Value *operator->() { return Val; }
111 const Value *operator->() const { return Val; }
127 Value *Val; member in class:llvm::Use
153 static SimpleType getSimplifiedValue(const Use &Val) { argument
159 getSimplifiedValue(const Use &Val) argument
[all...]
H A DGlobalVariable.h146 void setConstant(bool Val) { isConstantGlobal = Val; } argument
150 void setThreadLocal(bool Val) { argument
151 threadLocalMode = Val ? GeneralDynamicTLSModel : NotThreadLocal;
153 void setThreadLocalMode(ThreadLocalMode Val) { threadLocalMode = Val; } argument
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DUse.cpp24 Value *V1(Val);
25 Value *V2(RHS.Val);
33 Val = V2;
36 Val = 0;
40 RHS.Val = V1;
43 RHS.Val = 0;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DLazyValueInfo.cpp78 /// Val: This stores the current lattice value along with the Constant* for
81 Constant *Val; member in class:__anon10083::LVILatticeVal
85 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {}
113 return Val;
118 return Val;
147 Val = V;
165 Val = V;
197 Val = RHS.Val;
204 if (Val
277 operator <<(raw_ostream &OS, const LVILatticeVal &Val) argument
347 Value *Val; member in struct:__anon10085::LazyValueInfoCache::OverDefinedCacheUpdater
467 hasBlockValue(Value *Val, BasicBlock *BB) argument
479 getBlockValue(Value *Val, BasicBlock *BB) argument
488 solveBlockValue(Value *Val, BasicBlock *BB) argument
586 solveBlockValueNonLocal(LVILatticeVal &BBLV, Value *Val, BasicBlock *BB) argument
775 getEdgeValueLocal(Value *Val, BasicBlock *BBFrom, BasicBlock *BBTo, LVILatticeVal &Result) argument
866 getEdgeValue(Value *Val, BasicBlock *BBFrom, BasicBlock *BBTo, LVILatticeVal &Result) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DMachineOperand.h173 } Val; member in struct:llvm::MachineOperand::__anon9929::__anon9931
355 void setIsUse(bool Val = true) { setIsDef(!Val); }
357 void setIsDef(bool Val = true);
359 void setImplicit(bool Val = true) {
361 IsImp = Val;
364 void setIsKill(bool Val = true) {
366 assert((!Val || !isDebug()) && "Marking a debug operation as kill");
367 IsKill = Val;
370 void setIsDead(bool Val
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp53 void AsmPrinter::EmitCFAByte(unsigned Val) const {
55 if (Val >= dwarf::DW_CFA_offset && Val < dwarf::DW_CFA_offset+64)
57 Twine(Val-dwarf::DW_CFA_offset) + ")");
59 OutStreamer.AddComment(dwarf::CallFrameString(Val));
61 OutStreamer.EmitIntValue(Val, 1, 0/*addrspace*/);
95 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const { argument
99 Twine(DecodeDWARFEncoding(Val)));
102 DecodeDWARFEncoding(Val));
105 OutStreamer.EmitIntValue(Val,
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Bitcode/
H A DBitCodes.h86 uint64_t Val; // A literal value or data for an encoding. member in class:llvm::BitCodeAbbrevOp
91 Fixed = 1, // A fixed width field, Val specifies number of bits.
92 VBR = 2, // A VBR field where Val specifies the width of each chunk.
98 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
100 : Val(Data), IsLiteral(false), Enc(E) {}
106 uint64_t getLiteralValue() const { assert(isLiteral()); return Val; }
112 return Val;
H A DBitstreamWriter.h121 void Emit(uint32_t Val, unsigned NumBits) { argument
123 assert((Val & ~(~0U >> (32-NumBits))) == 0 && "High bits set!");
124 CurValue |= Val << CurBit;
134 CurValue = Val >> (32-CurBit);
140 void Emit64(uint64_t Val, unsigned NumBits) { argument
142 Emit((uint32_t)Val, NumBits);
144 Emit((uint32_t)Val, 32);
145 Emit((uint32_t)(Val >> 32), NumBits-32);
157 void EmitVBR(uint32_t Val, unsigned NumBits) { argument
162 while (Val >
170 EmitVBR64(uint64_t Val, unsigned NumBits) argument
188 EmitCode(unsigned Val) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DLowerSwitch.cpp63 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
65 BasicBlock* newLeafBlock(CaseRange& Leaf, Value* Val,
119 Value* Val, BasicBlock* OrigBlock,
125 return newLeafBlock(*Begin, Val, OrigBlock, Default);
138 BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val,
140 BasicBlock* RBranch = switchConvert(RHS.begin(), RHS.end(), Val,
146 BasicBlock* NewNode = BasicBlock::Create(Val->getContext(), "NodeBlock");
151 Val, Pivot.Low, "Pivot");
163 BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val, argument
168 BasicBlock* NewLeaf = BasicBlock::Create(Val
118 switchConvert(CaseItr Begin, CaseItr End, Value* Val, BasicBlock* OrigBlock, BasicBlock* Default) argument
262 Value *Val = SI->getCondition(); // The value we are switching on... local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DThumb2RegisterInfo.cpp39 int Val,
45 Type::getInt32Ty(MBB.getParent()->getFunction()->getContext()), Val);
35 emitLoadConstPool(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val, ARMCC::CondCodes Pred, unsigned PredReg, unsigned MIFlags) const argument
H A DThumb2RegisterInfo.h35 unsigned DestReg, unsigned SubIdx, int Val,
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DDebug.cpp58 void operator=(const std::string &Val) const {
59 DebugFlag |= !Val.empty();
60 CurrentDebugType = Val;

Completed in 446 milliseconds

1234567891011