HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 26 - 50 of 295) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 150 } Val;
313 void setIsUse(bool Val = true) {
315 assert((Val || !isDebug()) && "Marking a debug operation as def");
316 IsDef = !Val;
319 void setIsDef(bool Val = true) {
321 assert((!Val || !isDebug()) && "Marking a debug operation as def");
322 IsDef = Val;
325 void setImplicit(bool Val = true) {
327 IsImp = Val;
330 void setIsKill(bool Val = true)
    [all...]
MachineConstantPool.h 80 } Val;
82 /// The required alignment for this entry. The top bit is set when Val is
88 Val.ConstVal = V;
92 Val.MachineCPVal = V;
  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 66 clang::ParsedSourceLocation &Val);
72 clang::ParsedSourceLocation &Val) {
75 Val = ParsedSourceLocation::FromString(ArgValue);
76 if (Val.FileName.empty()) {
  /external/clang/test/CodeCompletion/
function-templates.cpp 6 X* dyn_cast(Y *Val);
18 // CHECK-CC1: dyn_cast<<#class X#>>(<#Y *Val#>)
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 85 uint64_t Val; // A literal value or data for an encoding.
90 Fixed = 1, // A fixed width field, Val specifies number of bits.
91 VBR = 2, // A VBR field where Val specifies the width of each chunk.
97 explicit BitCodeAbbrevOp(uint64_t V) : Val(V), IsLiteral(true) {}
99 : Val(Data), IsLiteral(false), Enc(E) {}
105 uint64_t getLiteralValue() const { assert(isLiteral()); return Val; }
111 return Val;
BitstreamWriter.h 90 void Emit(uint32_t Val, unsigned NumBits) {
92 assert((Val & ~(~0U >> (32-NumBits))) == 0 && "High bits set!");
93 CurValue |= Val << CurBit;
107 CurValue = Val >> (32-CurBit);
113 void Emit64(uint64_t Val, unsigned NumBits) {
115 Emit((uint32_t)Val, NumBits);
117 Emit((uint32_t)Val, 32);
118 Emit((uint32_t)(Val >> 32), NumBits-32);
134 void EmitVBR(uint32_t Val, unsigned NumBits) {
138 while (Val >= Threshold)
    [all...]
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 63 void insert(const value_type &Val) {
64 if (!Rep.empty() && Rep.back() == Val)
67 assert((Rep.empty() || Rep.back().first < Val.first) &&
69 Rep.push_back(Val);
111 void insert(const value_type &Val) {
112 Self.Rep.push_back(Val);
  /external/llvm/include/llvm/
User.h 90 void setOperand(unsigned i, Value *Val) {
95 OperandList[i] = Val;
147 static SimpleType getSimplifiedValue(const User::op_iterator &Val) {
148 return static_cast<SimpleType>(Val->get());
158 static SimpleType getSimplifiedValue(const User::const_op_iterator &Val) {
159 return static_cast<SimpleType>(Val->get());
GlobalVariable.h 135 void setConstant(bool Val) { isConstantGlobal = Val; }
139 void setThreadLocal(bool Val) { isThreadLocalSymbol = Val; }
Constants.h 51 APInt Val;
101 return Val;
105 unsigned getBitWidth() const { return Val.getBitWidth(); }
113 return Val.getZExtValue();
122 return Val.getSExtValue();
130 return Val == V;
152 bool isNegative() const { return Val.isNegative(); }
158 return Val == 0;
166 return Val == 1;
174 return Val.isAllOnesValue()
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 63 BasicBlock* switchConvert(CaseItr Begin, CaseItr End, Value* Val,
65 BasicBlock* newLeafBlock(CaseRange& Leaf, Value* Val,
131 Value* Val, BasicBlock* OrigBlock,
137 return newLeafBlock(*Begin, Val, OrigBlock, Default);
150 BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val,
152 BasicBlock* RBranch = switchConvert(RHS.begin(), RHS.end(), Val,
158 BasicBlock* NewNode = BasicBlock::Create(Val->getContext(), "NodeBlock");
163 Val, Pivot.Low, "Pivot");
175 BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val,
180 BasicBlock* NewLeaf = BasicBlock::Create(Val->getContext(), "LeafBlock")
    [all...]
  /external/llvm/include/llvm/ADT/
PointerIntPair.h 102 void setFromOpaqueValue(void *Val) { Value = reinterpret_cast<intptr_t>(Val);}
127 intptr_t Val = -1;
128 Val <<= PointerLikeTypeTraits<PointerTy>::NumLowBitsAvailable;
129 return Ty(reinterpret_cast<PointerTy>(Val), IntType((1 << IntBits)-1));
132 intptr_t Val = -2;
133 Val <<= PointerLikeTypeTraits<PointerTy>::NumLowBitsAvailable;
134 return Ty(reinterpret_cast<PointerTy>(Val), IntType(0));
ScopedHashTable.h 48 V Val;
49 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {}
53 const V &getValue() const { return Val; }
54 V &getValue() { return Val; }
63 const K &key, const V &val,
67 new (New) ScopedHashTableVal(key, val);
107 void setLastValInScope(ScopedHashTableVal<K, V> *Val) {
108 LastValInScope = Val;
    [all...]
SmallPtrSet.h 212 enum { Val = N };
219 Val = RoundUpToPowerOfTwo<(N|(N-1)) + 1>::Val
225 enum { Val = RoundUpToPowerOfTwoH<N, (N&(N-1)) == 0>::Val };
236 enum { SmallSizePowTwo = RoundUpToPowerOfTwo<SmallSize>::Val };
  /external/llvm/lib/Target/ARM/
Thumb2RegisterInfo.cpp 39 int Val,
45 Type::getInt32Ty(MBB.getParent()->getFunction()->getContext()), Val);
Thumb2RegisterInfo.h 36 unsigned DestReg, unsigned SubIdx, int Val,
  /external/llvm/lib/Support/
Debug.cpp 58 void operator=(const std::string &Val) const {
59 DebugFlag |= !Val.empty();
60 CurrentDebugType = Val;
  /external/llvm/lib/VMCore/
ConstantFold.h 37 Constant *ConstantFoldExtractElementInstruction(Constant *Val, Constant *Idx);
38 Constant *ConstantFoldInsertElementInstruction(Constant *Val, Constant *Elt,
44 Constant *ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 85 static inline unsigned rotr32(unsigned Val, unsigned Amt) {
87 return (Val >> Amt) | (Val << ((32-Amt)&31));
92 static inline unsigned rotl32(unsigned Val, unsigned Amt) {
94 return (Val << Amt) | (Val >> ((32-Amt)&31));
338 // out. Those should be handled directly, not with a two-part val.
527 static inline unsigned createNEONModImm(unsigned OpCmode, unsigned Val) {
528 return (OpCmode << 8) | Val;
543 uint64_t Val = 0
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 280 ARMCC::CondCodes Val;
284 unsigned Val;
288 unsigned Val;
296 ARM_MB::MemBOpt Val;
300 ARM_PROC::IFlags Val;
304 unsigned Val;
323 unsigned Val;
327 const MCExpr *Val;
331 unsigned Val; // encoded 8-bit representation
463 return CC.Val;
    [all...]
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 87 uint64_t Val = ValC->getZExtValue() & 255;
94 Val = (Val << 8) | Val;
99 Val = (Val << 8) | Val;
100 Val = (Val << 16) | Val;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 85 void AsmPrinter::EmitCFAByte(unsigned Val) const {
87 if (Val >= dwarf::DW_CFA_offset && Val < dwarf::DW_CFA_offset+64)
89 Twine(Val-dwarf::DW_CFA_offset) + ")");
91 OutStreamer.AddComment(dwarf::CallFrameString(Val));
93 OutStreamer.EmitIntValue(Val, 1, 0/*addrspace*/);
127 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const {
131 Twine(DecodeDWARFEncoding(Val)));
134 DecodeDWARFEncoding(Val));
137 OutStreamer.EmitIntValue(Val, 1, 0/*addrspace*/)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 141 bool UnswitchIfProfitable(Value *LoopCond, Constant *Val);
142 void UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val,
147 Constant *Val, bool isEqual);
149 void EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val,
158 bool IsTrivialUnswitchCondition(Value *Cond, Constant **Val = 0,
345 /// returning true, this sets Cond and Val to the condition that controls the
346 /// trivial condition: when Cond dynamically equals Val, the loop is known to
348 /// Cond == Val.
350 bool LoopUnswitch::IsTrivialUnswitchCondition(Value *Cond, Constant **Val,
369 if (Val) *Val = ConstantInt::getTrue(Context)
    [all...]
  /external/clang/include/clang/Lex/
MacroInfo.h 150 void setIsBuiltinMacro(bool Val = true) {
151 IsBuiltinMacro = Val;
156 void setIsUsed(bool Val) {
157 IsUsed = Val;
162 void setIsAllowRedefinitionsWithoutWarning(bool Val) {
163 IsAllowRedefinitionsWithoutWarning = Val;
167 void setIsWarnIfUnused(bool val) {
168 IsWarnIfUnused = val;
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 80 void EmitStoreThroughLValue(ComplexPairTy Val, LValue LV) {
82 return EmitStoreOfComplex(Val, LV.getAddress(), LV.isVolatileQualified());
85 CGF.EmitStoreThroughPropertyRefLValue(RValue::getComplex(Val), LV);
90 void EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *ResPtr, bool isVol);
92 /// EmitComplexToComplexCast - Emit a cast from complex value Val to DestType.
93 ComplexPairTy EmitComplexToComplexCast(ComplexPairTy Val, QualType SrcType,
214 ComplexPairTy &Val);
257 ComplexPairTy &Val);
302 void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, llvm::Value *Ptr,
307 Builder.CreateStore(Val.first, RealPtr, isVolatile)
    [all...]

Completed in 567 milliseconds

12 3 4 5 6 7 8 91011>>