Searched refs:Val (Results 51 - 75 of 464) sorted by relevance

1234567891011>>

/external/clang/include/clang/AST/
H A DASTDiagnostic.h38 intptr_t Val,
/external/llvm/include/llvm/IR/
H A DGlobalVariable.h145 void setConstant(bool Val) { isConstantGlobal = Val; } argument
150 void setExternallyInitialized(bool Val) { argument
151 isExternallyInitializedConstant = Val;
H A DAttributes.h128 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
130 StringRef Val = StringRef());
152 bool hasAttribute(AttrKind Val) const;
155 bool hasAttribute(StringRef Val) const;
371 uintptr_t Val = static_cast<uintptr_t>(-1); local
372 Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
373 return AttributeSet(reinterpret_cast<AttributeSetImpl*>(Val));
376 uintptr_t Val = static_cast<uintptr_t>(-2); local
377 Val <<= PointerLikeTypeTraits<void*>::NumLowBitsAvailable;
378 return AttributeSet(reinterpret_cast<AttributeSetImpl*>(Val));
400 AttrBuilder(uint64_t Val) argument
[all...]
H A DUser.h94 void setOperand(unsigned i, Value *Val) {
99 OperandList[i] = Val;
179 static SimpleType getSimplifiedValue(User::op_iterator &Val) {
180 return Val->get();
185 static SimpleType getSimplifiedValue(User::const_op_iterator &Val) {
186 return Val->get();
/external/llvm/lib/Target/ARM/
H A DThumb2RegisterInfo.h32 DebugLoc dl, unsigned DestReg, unsigned SubIdx, int Val,
/external/clang/include/clang/Rewrite/Core/
H A DTokenRewriter.h59 token_iterator AddTokenBefore(token_iterator I, const char *Val);
60 token_iterator AddTokenAfter(token_iterator I, const char *Val) { argument
62 return AddTokenBefore(++I, Val);
/external/llvm/lib/IR/
H A DConstantFold.h37 Constant *ConstantFoldExtractElementInstruction(Constant *Val, Constant *Idx);
38 Constant *ConstantFoldInsertElementInstruction(Constant *Val, Constant *Elt,
44 Constant *ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val,
/external/llvm/lib/Support/
H A DDebug.cpp58 void operator=(const std::string &Val) const {
59 DebugFlag |= !Val.empty();
60 CurrentDebugType = Val;
/external/llvm/include/llvm/Support/
H A DYAMLTraits.h461 void enumCase(T &Val, const char* Str, const T ConstVal) { argument
462 if ( matchEnumScalar(Str, outputting() && Val == ConstVal) ) {
463 Val = ConstVal;
469 void enumCase(T &Val, const char* Str, const uint32_t ConstVal) { argument
470 if ( matchEnumScalar(Str, outputting() && Val == static_cast<T>(ConstVal)) ) {
471 Val = ConstVal;
476 void bitSetCase(T &Val, const char* Str, const T ConstVal) { argument
477 if ( bitSetMatch(Str, outputting() && (Val & ConstVal) == ConstVal) ) {
478 Val = Val | ConstVa
484 bitSetCase(T &Val, const char* Str, const uint32_t ConstVal) argument
491 maskedBitSetCase(T &Val, const char *Str, T ConstVal, T Mask) argument
497 maskedBitSetCase(T &Val, const char *Str, uint32_t ConstVal, uint32_t Mask) argument
507 mapRequired(const char* Key, T& Val) argument
513 mapOptional(const char* Key, T& Val) argument
521 mapOptional(const char* Key, Optional<T> &Val) argument
527 mapOptional(const char* Key, T& Val) argument
532 mapOptional(const char* Key, T& Val, const T& Default) argument
538 processKeyWithDefault(const char *Key, Optional<T> &Val, const Optional<T> &DefaultValue, bool Required) argument
558 processKeyWithDefault(const char *Key, T &Val, const T& DefaultValue, bool Required) argument
575 processKey(const char *Key, T &Val, bool Required) argument
592 yamlize(IO &io, T &Val, bool) argument
600 yamlize(IO &io, T &Val, bool) argument
613 yamlize(IO &io, T &Val, bool) argument
634 yamlize(IO &io, T &Val, bool) argument
654 yamlize(IO &io, T &Val, bool) argument
662 yamlize(IO &io, T &Val, bool) argument
[all...]
H A DErrorOr.h29 moveIfMoveConstructible(V &Val) { argument
30 return std::move(Val);
36 moveIfMoveConstructible(V &Val) { argument
37 return Val;
109 ErrorOr(T Val) : HasError(false) { argument
110 new (getStorage()) storage_type(moveIfMoveConstructible<storage_type>(Val));
233 pointer toPointer(pointer Val) { argument
234 return Val;
237 pointer toPointer(wrap *Val) { argument
238 return &Val
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h86 static inline unsigned rotr32(unsigned Val, unsigned Amt) { argument
88 return (Val >> Amt) | (Val << ((32-Amt)&31));
93 static inline unsigned rotl32(unsigned Val, unsigned Amt) { argument
95 return (Val << Amt) | (Val >> ((32-Amt)&31));
528 static inline unsigned createNEONModImm(unsigned OpCmode, unsigned Val) {
529 return (OpCmode << 8) | Val;
544 uint64_t Val = 0;
548 Val
[all...]
/external/clang/include/clang/Serialization/
H A DModule.h71 llvm::PointerIntPair<const FileEntry *, 2, unsigned> Val; member in class:clang::serialization::InputFile
84 Val.setPointerAndInt(File, intVal);
89 File.Val.setInt(NotFound);
93 const FileEntry *getFile() const { return Val.getPointer(); }
94 bool isOverridden() const { return Val.getInt() == Overridden; }
95 bool isOutOfDate() const { return Val.getInt() == OutOfDate; }
96 bool isNotFound() const { return Val.getInt() == NotFound; }
/external/llvm/include/llvm/ADT/
H A DSparseSet.h54 static unsigned getValIndex(const ValueT &Val) { argument
55 return Val.getSparseSetIndex();
65 unsigned operator()(const ValueT &Val) const {
66 return SparseSetValTraits<ValueT>::getValIndex(Val);
241 /// If Val is successfully inserted, return (I, true), where I is an iterator
244 /// If the set already contains an element with the same key as Val, return
249 std::pair<iterator, bool> insert(const ValueT &Val) {
250 unsigned Idx = ValIndexOf(Val);
255 Dense.push_back(Val);
H A DScopedHashTable.h48 V Val; member in class:llvm::ScopedHashTableVal
49 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
53 const V &getValue() const { return Val; }
54 V &getValue() { return Val; }
107 void setLastValInScope(ScopedHashTableVal<K, V> *Val) { argument
108 LastValInScope = Val;
187 void insert(const K &Key, const V &Val) { argument
188 insertIntoScope(CurScope, Key, Val);
209 void insertIntoScope(ScopeTy *S, const K &Key, const V &Val) { argument
212 KeyEntry = ValTy::Create(S->getLastValInScope(), KeyEntry, Key, Val,
[all...]
H A DStatistic.h56 const Statistic &operator=(unsigned Val) { argument
57 Value = Val;
113 const Statistic &operator=(unsigned Val) { argument
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp90 uint64_t Val = ValC->getZExtValue() & 255; local
97 Val = (Val << 8) | Val;
102 Val = (Val << 8) | Val;
103 Val = (Val << 16) | Val;
[all...]
/external/chromium_org/v8/test/cctest/compiler/
H A Dfunction-tester.h129 CheckCall(Val(expected), Val(a), Val(b));
139 CheckCall(true_value(), Val(a), Val(b));
151 CheckCall(false_value(), Val(a), Val(b));
164 Handle<String> Val(const char* string) { function in class:v8::internal::compiler::FunctionTester
168 Handle<Object> Val(double value) { function in class:v8::internal::compiler::FunctionTester
174 Handle<Object> minus_infinity() { return Val(
[all...]
H A Dtest-run-properties.cc54 T.CheckCall(T.Val(expected), T.Val(static_cast<double>(i)),
55 T.Val(static_cast<double>(j)));
123 T.CheckCall(T.Val(expected), T.Val(static_cast<double>(i)),
124 T.Val(static_cast<double>(j)));
/external/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp185 unsigned Val; member in struct:__anon25952::AArch64Operand::VectorIndexOp
189 const MCExpr *Val; member in struct:__anon25952::AArch64Operand::ImmOp
193 const MCExpr *Val; member in struct:__anon25952::AArch64Operand::ShiftedImmOp
202 unsigned Val; // Encoded 8-bit representation. member in struct:__anon25952::AArch64Operand::FPImmOp
206 unsigned Val; // Not the enum since not all values have names. member in struct:__anon25952::AArch64Operand::BarrierOp
218 unsigned Val; member in struct:__anon25952::AArch64Operand::SysCRImmOp
222 unsigned Val; member in struct:__anon25952::AArch64Operand::PrefetchOp
232 unsigned Val; member in struct:__anon25952::AArch64Operand::ExtendOp
323 return Imm.Val;
328 return ShiftedImm.Val;
1087 int64_t Val = CE->getValue(); local
1103 int64_t Val = CE->getValue(); local
1400 int64_t Val = ~MCE->getValue() & 0xFFFFFFFF; local
1619 CreateImm(const MCExpr *Val, SMLoc S, SMLoc E, MCContext &Ctx) argument
1628 CreateShiftedImm(const MCExpr *Val, unsigned ShiftAmount, SMLoc S, SMLoc E, MCContext &Ctx) argument
1649 CreateFPImm(unsigned Val, SMLoc S, MCContext &Ctx) argument
1658 CreateBarrier(unsigned Val, SMLoc S, MCContext &Ctx) argument
1678 CreateSysCR(unsigned Val, SMLoc S, SMLoc E, MCContext &Ctx) argument
1687 CreatePrefetch(unsigned Val, SMLoc S, MCContext &Ctx) argument
1697 CreateShiftExtend(AArch64_AM::ShiftExtendType ShOp, unsigned Val, bool HasExplicitAmount, SMLoc S, SMLoc E, MCContext &Ctx) argument
2118 int Val = AArch64_AM::getFP64Imm(APInt(64, IntVal)); local
2131 int64_t Val; local
2175 int64_t Val = MCE->getValue(); local
2728 int64_t Val = Tok.getIntVal(); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp193 bool UnswitchIfProfitable(Value *LoopCond, Constant *Val);
194 void UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val,
199 Constant *Val, bool isEqual);
201 void EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val,
207 bool IsTrivialUnswitchCondition(Value *Cond, Constant **Val = nullptr,
552 /// returning true, this sets Cond and Val to the condition that controls the
553 /// trivial condition: when Cond dynamically equals Val, the loop is known to
555 /// Cond == Val.
557 bool LoopUnswitch::IsTrivialUnswitchCondition(Value *Cond, Constant **Val, argument
576 if (Val) *Va
631 UnswitchIfProfitable(Value *LoopCond, Constant *Val) argument
678 EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val, BasicBlock *TrueDest, BasicBlock *FalseDest, Instruction *InsertPt) argument
706 UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val, BasicBlock *ExitBlock) argument
772 UnswitchNontrivialCondition(Value *LIC, Constant *Val, Loop *L) argument
945 RewriteLoopBodyWithConditionConstant(Loop *L, Value *LIC, Constant *Val, bool IsEqual) argument
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp70 Value *Val, BasicBlock *OrigBlock,
72 BasicBlock *newLeafBlock(CaseRange &Leaf, Value *Val, BasicBlock *OrigBlock,
136 // LowerBound and UpperBound are used to keep track of the bounds for Val
141 ConstantInt *UpperBound, Value *Val,
154 return newLeafBlock(*Begin, Val, OrigBlock, Default);
204 NewUpperBound, Val, OrigBlock, Default);
206 UpperBound, Val, OrigBlock, Default);
211 BasicBlock* NewNode = BasicBlock::Create(Val->getContext(), "NodeBlock");
216 Val, Pivot.Low, "Pivot");
228 BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val, argument
139 switchConvert(CaseItr Begin, CaseItr End, ConstantInt *LowerBound, ConstantInt *UpperBound, Value *Val, BasicBlock *OrigBlock, BasicBlock *Default) argument
334 Value *Val = SI->getCondition(); // The value we are switching on... local
[all...]
/external/clang/lib/Rewrite/Core/
H A DTokenRewriter.cpp82 TokenRewriter::AddTokenBefore(token_iterator I, const char *Val) { argument
83 unsigned Len = strlen(Val);
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
/external/llvm/bindings/ocaml/transforms/passmgr_builder/
H A Dpassmgr_builder_ocaml.c42 value Val = alloc_custom(&pmbuilder_ops, local
44 PMBuilder_val(Val) = Ref;
45 return Val;
/external/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h81 } Val; member in class:llvm::MachineConstantPoolEntry
83 /// The required alignment for this entry. The top bit is set when Val is
89 Val.ConstVal = V;
93 Val.MachineCPVal = V;
/external/llvm/include/llvm-c/
H A DCore.h669 LLVMValueRef Val);
779 void LLVMDumpType(LLVMTypeRef Val);
787 char *LLVMPrintTypeToString(LLVMTypeRef Val);
1242 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val);
1249 const char *LLVMGetValueName(LLVMValueRef Val);
1256 void LLVMSetValueName(LLVMValueRef Val, const char *Name);
1263 void LLVMDumpValue(LLVMValueRef Val);
1271 char *LLVMPrintValueToString(LLVMValueRef Val);
1283 LLVMBool LLVMIsConstant(LLVMValueRef Val);
1288 LLVMBool LLVMIsUndef(LLVMValueRef Val);
[all...]

Completed in 1944 milliseconds

1234567891011>>