HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 176 - 200 of 580) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/include/llvm/IR/
GlobalObject.h 56 void setGlobalObjectSubClassData(unsigned Val);
Module.h 152 Metadata *Val;
154 : Behavior(B), Key(K), Val(V) {}
423 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Metadata *Val);
424 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Constant *Val);
425 void addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val);
PatternMatch.h 41 template <typename Val, typename Pattern> bool match(Val *V, const Pattern &P) {
182 template <int64_t Val> struct constantint_match {
186 if (Val >= 0)
187 return CIV == static_cast<uint64_t>(Val);
188 // If Val is negative, and CI is shorter than it, truncate to the right
191 return -CIV == -Val;
198 template <int64_t Val> inline constantint_match<Val> m_ConstantInt() {
199 return constantint_match<Val>();
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 104 void AsmPrinter::EmitEncodingByte(unsigned Val, const char *Desc) const {
108 Twine(DecodeDWARFEncoding(Val)));
110 OutStreamer->AddComment(Twine("Encoding = ") + DecodeDWARFEncoding(Val));
113 OutStreamer->EmitIntValue(Val, 1);
  /external/llvm/lib/IR/
DiagnosticInfo.cpp 42 void operator=(const std::string &Val) {
44 if (!Val.empty()) {
45 Pattern = std::make_shared<Regex>(Val);
48 report_fatal_error("Invalid regular expression '" + Val +
Constants.cpp 306 case Value::Name##Val: \
525 : Constant(Ty, ConstantIntVal, nullptr, 0), Val(V) {
752 : Constant(Ty, ConstantFPVal, nullptr, 0), Val(V) {
758 return Val.bitwiseIsEqual(V);
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZConstantPoolValue.cpp 37 static_cast<SystemZConstantPoolValue *>(Constants[I].Val.MachineCPVal);
  /external/llvm/lib/Transforms/Utils/
BypassSlowDivision.cpp 64 static unsigned getHashValue(const DivOpInfo &Val) {
65 return (unsigned)(reinterpret_cast<uintptr_t>(Val.Dividend) ^
66 reinterpret_cast<uintptr_t>(Val.Divisor)) ^
67 (unsigned)Val.SignedOp;
SSAUpdater.cpp 274 static void AddPHIOperand(PHINode *PHI, Value *Val, BasicBlock *Pred) {
275 PHI->addIncoming(Val, Pred);
286 static PHINode *ValueIsPHI(Value *Val, SSAUpdater *Updater) {
287 return dyn_cast<PHINode>(Val);
292 static PHINode *ValueIsNewPHI(Value *Val, SSAUpdater *Updater) {
293 PHINode *PHI = ValueIsPHI(Val, Updater);
  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 120 static unsigned GetVBRSize(unsigned Val) {
121 if (Val <= 127) return 1;
124 while (Val >= 128) {
125 Val >>= 7;
133 static uint64_t EmitVBRValue(uint64_t Val, raw_ostream &OS) {
134 if (Val <= 127) {
135 OS << Val << ", ";
139 uint64_t InVal = Val;
141 while (Val >= 128) {
142 OS << (Val&127) << "|128,"
    [all...]
  /external/lzma/CPP/7zip/UI/GUI/
ExtractDialog.h 108 ElimDup.Val = true;
  /frameworks/compile/slang/
slang_rs_reflection.h 181 const clang::APValue &Val);
183 const clang::APValue &Val);
185 const clang::APValue &Val);
186 void genInitValue(const clang::APValue &Val, bool asBool);
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 430 SDValue getConstant(uint64_t Val, SDLoc DL, EVT VT, bool isTarget = false,
432 SDValue getConstant(const APInt &Val, SDLoc DL, EVT VT, bool isTarget = false,
434 SDValue getConstant(const ConstantInt &Val, SDLoc DL, EVT VT,
436 SDValue getIntPtrConstant(uint64_t Val, SDLoc DL, bool isTarget = false);
437 SDValue getTargetConstant(uint64_t Val, SDLoc DL, EVT VT,
439 return getConstant(Val, DL, VT, true, isOpaque);
441 SDValue getTargetConstant(const APInt &Val, SDLoc DL, EVT VT,
443 return getConstant(Val, DL, VT, true, isOpaque);
445 SDValue getTargetConstant(const ConstantInt &Val, SDLoc DL, EVT VT,
447 return getConstant(Val, DL, VT, true, isOpaque)
    [all...]
MachineInstrBuilder.h 83 const MachineInstrBuilder &addImm(int64_t Val) const {
84 MI->addOperand(*MF, MachineOperand::CreateImm(Val));
88 const MachineInstrBuilder &addCImm(const ConstantInt *Val) const {
89 MI->addOperand(*MF, MachineOperand::CreateCImm(Val));
93 const MachineInstrBuilder &addFPImm(const ConstantFP *Val) const {
94 MI->addOperand(*MF, MachineOperand::CreateFPImm(Val));
  /external/llvm/lib/TableGen/
Record.cpp 68 static unsigned getHashValue(const TableGenStringKey& Val) {
70 return hash_value(Val);
419 int64_t Val = getValue();
420 if (Val != 0 && Val != 1) return nullptr; // Only accept 0 or 1 for a bit!
421 return BitInit::get(Val != 0);
937 Init *Val = MHSd->getOperator();
938 if (Init *Result = EvaluateOperation(RHSo, LHS, Val,
940 Val = Result;
956 return DagInit::get(Val, "", args)
    [all...]
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 192 uint16_t Val;
197 DiffListIterator() : Val(0), List(nullptr) {}
203 Val = InitVal;
213 Val += D;
223 unsigned operator*() const { return Val; }
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 427 void EmitConstant(uint64_t Val, unsigned Size, raw_ostream &OS) const {
431 EmitByte((Val >> Shift) & 0xff, OS);
764 unsigned Val = 0;
770 Val = MO.getImm() >> 1;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bits.h 311 virtual HRESULT WINAPI SetDisplayName(LPCWSTR Val) = 0;
313 virtual HRESULT WINAPI SetDescription(LPCWSTR Val) = 0;
315 virtual HRESULT WINAPI SetPriority(BG_JOB_PRIORITY Val) = 0;
317 virtual HRESULT WINAPI SetNotifyFlags(ULONG Val) = 0;
319 virtual HRESULT WINAPI SetNotifyInterface(IUnknown *Val) = 0;
350 HRESULT (WINAPI *SetDisplayName)(IBackgroundCopyJob *This,LPCWSTR Val);
352 HRESULT (WINAPI *SetDescription)(IBackgroundCopyJob *This,LPCWSTR Val);
354 HRESULT (WINAPI *SetPriority)(IBackgroundCopyJob *This,BG_JOB_PRIORITY Val);
356 HRESULT (WINAPI *SetNotifyFlags)(IBackgroundCopyJob *This,ULONG Val);
358 HRESULT (WINAPI *SetNotifyInterface)(IBackgroundCopyJob *This,IUnknown *Val);
    [all...]
  /external/llvm/lib/Analysis/
VectorUtils.cpp 404 Value *Val = nullptr; Constant *Con = nullptr;
405 if (match(V, m_Add(m_Value(Val), m_Constant(Con))))
408 return findScalarElement(Val, EltNo);
486 Value *Val = Worklist.pop_back_val();
487 Value *Leader = ECs.getOrInsertLeaderValue(Val);
489 if (Visited.count(Val))
491 Visited.insert(Val);
494 if (!isa<Instruction>(Val))
496 Instruction *I = cast<Instruction>(Val);
  /external/clang/lib/CodeGen/
CGBuilder.h 121 llvm::StoreInst *CreateStore(llvm::Value *Val, Address Addr,
123 return CreateAlignedStore(Val, Addr.getPointer(),
128 llvm::StoreInst *CreateAlignedStore(llvm::Value *Val, llvm::Value *Addr,
130 return CreateAlignedStore(Val, Addr, Align.getQuantity(), IsVolatile);
148 llvm::StoreInst *CreateDefaultAlignedStore(llvm::Value *Val,
151 return CGBuilderBaseTy::CreateStore(Val, Addr, IsVolatile);
  /external/llvm/include/llvm/ADT/
SparseMultiSet.h 127 unsigned sparseIndex(const ValueT &Val) const {
128 assert(ValIndexOf(Val) < Universe &&
130 return ValIndexOf(Val);
415 iterator insert(const ValueT &Val) {
416 unsigned Idx = sparseIndex(Val);
419 unsigned NodeIdx = addValue(Val, SMSNode::INVALID, SMSNode::INVALID);
  /external/llvm/lib/CodeGen/
ShadowStackGCLowering.cpp 357 Value *Val = B.CreateGEP(Ty, BasePtr, Indices, Name);
359 assert(isa<GetElementPtrInst>(Val) && "Unexpected folded constant");
361 return dyn_cast<GetElementPtrInst>(Val);
369 Value *Val = B.CreateGEP(Ty, BasePtr, Indices, Name);
371 assert(isa<GetElementPtrInst>(Val) && "Unexpected folded constant");
373 return dyn_cast<GetElementPtrInst>(Val);
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 111 int Val = std::stol(Str);
112 *FlagDescriptions[F].IntFlag = Val;
114 Printf("Flag: %s %d\n", Name, Val);;
117 unsigned int Val = std::stoul(Str);
118 *FlagDescriptions[F].UIntFlag = Val;
120 Printf("Flag: %s %u\n", Name, Val);
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 102 void pushOperand(InfixCalculatorTok Op, int64_t Val = 0) {
105 PostfixStack.push_back(std::make_pair(Op, Val));
177 int64_t Val;
185 Val = Op1.second + Op2.second;
186 OperandStack.push_back(std::make_pair(IC_IMM, Val));
189 Val = Op1.second - Op2.second;
190 OperandStack.push_back(std::make_pair(IC_IMM, Val));
195 Val = Op1.second * Op2.second;
196 OperandStack.push_back(std::make_pair(IC_IMM, Val));
202 Val = Op1.second / Op2.second
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 95 APFloat createAPFloatFromInt(const fltSemantics &Sem, int Val);
118 FAddend() : Val(nullptr) {}
120 Value *getSymVal() const { return Val; }
123 bool isConstant() const { return Val == nullptr; }
126 void set(short Coefficient, Value *V) { Coeff.set(Coefficient), Val = V; }
128 { Coeff.set(Coefficient); Val = V; }
130 { Coeff.set(Coefficient->getValueAPF()); Val = V; }
143 assert((Val == T.Val) && "Symbolic-values disagree");
150 // This addend has the value of "Coeff * Val"
    [all...]

Completed in 601 milliseconds

1 2 3 4 5 6 78 91011>>