/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | Transfer.cpp | 106 Env.setValue(*Loc, UnpackedVal); in maybeUnpackLValueExpr() 114 Env.setValue(To, *Val); in propagateValue() 168 Env.setValue(*LHSLoc, *RHSVal); in VisitBinaryOperator() 180 Env.setValue(*S, Env.makeAnd(LHSVal, RHSVal)); in VisitBinaryOperator() 182 Env.setValue(*S, Env.makeOr(LHSVal, RHSVal)); in VisitBinaryOperator() 188 Env.setValue(*S, S->getOpcode() == BO_EQ ? LHSEqRHSValue in VisitBinaryOperator() 296 Env.setValue(*S, *SubExprVal); in VisitImplicitCastExpr() 300 Env.setValue(*S, Env.makeAtomicBoolValue()); in VisitImplicitCastExpr() 311 Env.setValue(*S, *SubExprVal); in VisitImplicitCastExpr() 336 Env.setValue(*S, NullPointerVal); in VisitImplicitCastExpr() [all …]
|
H A D | RecordOps.cpp | 32 Env.setValue(*DstFieldLoc, *Val); in copyField() 45 Env.setValue(DstFieldLoc, *Val); in copySyntheticField()
|
H A D | DataflowEnvironment.cpp | 681 setValue(*Call, *CalleeEnv.ReturnVal); in popCall() 922 void Environment::setValue(const StorageLocation &Loc, Value &Val) { in setValue() function in clang::dataflow::Environment 928 void Environment::setValue(const Expr &E, Value &Val) { in setValue() function in clang::dataflow::Environment 1035 setValue(Loc, *Val); in createLocAndMaybeValue() 1057 setValue(FieldLoc, *Val); in initializeFieldsWithValues() 1130 setValue(Loc, *Val); in createObjectInternal()
|
H A D | TypeErasedDataflowAnalysis.cpp | 375 Env.setValue(*MemberLoc, *InitExprVal); in builtinTransferInitializer() 465 State.Env.setValue(*TerminatorCond, State.Env.makeAtomicBoolValue());
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.cpp | 2796 setValue(&I, Br); in visitBr() 2968 setValue(CurInst, BrCond); in visitSwitchCase() 3505 setValue(&LP, Res); in visitLandingPad() 3567 setValue(&I, UnNodeValue); in visitUnary() 3587 setValue(&I, BinNodeValue); in visitBinary() 3626 setValue(&I, Res); in visitShift() 3636 setValue(&I, DAG.getNode(ISD::SDIV, getCurSDLoc(), Op1.getValueType(), Op1, in visitSDiv() 3660 setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Opcode)); in visitICmp() 3679 setValue(&I, DAG.getSetCC(getCurSDLoc(), DestVT, Op1, Op2, Condition)); in visitFCmp() 3820 setValue(&I, DAG.getNode(ISD::MERGE_VALUES, getCurSDLoc(), in visitSelect() [all …]
|
H A D | StatepointLowering.cpp | 1107 setValue(&I, DAG.getIntPtrConstant(-1, getCurSDLoc())); in LowerStatepoint() 1115 setValue(&I, ReturnValue); in LowerStatepoint() 1170 setValue(Call, ReturnVal); in LowerCallSiteWithDeoptBundleImpl() 1191 setValue(&CI, getValue(SI)); in visitGCResult() 1204 setValue(&CI, CopyFromReg); in visitGCResult() 1237 setValue(&Relocate, SDV); in visitGCRelocate() 1251 setValue(&Relocate, Relocation); in visitGCRelocate() 1283 setValue(&Relocate, SpillLoad); in visitGCRelocate() 1293 setValue(&Relocate, DAG.getConstant(0xFEFEFEFE, SDLoc(SD), MVT::i64)); in visitGCRelocate() 1299 setValue(&Relocate, SD); in visitGCRelocate()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | PackedVector.h | 38 static void setValue(BitVectorTy &Bits, unsigned Idx, T val) { in setValue() function 57 static void setValue(BitVectorTy &Bits, unsigned Idx, T val) { in setValue() function 92 Vec.setValue(Vec.Bits, Idx, val);
|
H A D | StringMapEntry.h | 84 void setValue(const ValueTy &V) { second = V; } in setValue() function
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | EvalEmitter.cpp | 148 EvalResult.setValue(S.Stk.pop<T>().toAPValue(Ctx.getASTContext())); in emitRet() 179 EvalResult.setValue(*V); in emitRet() 184 EvalResult.setValue(Ptr.toAPValue(Ctx.getASTContext())); in emitRet() 220 EvalResult.setValue(*APV); in emitRetValue()
|
H A D | EvaluationResult.h | 58 void setValue(const APValue &V) { in setValue() function
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | DbiModuleList.cpp | 27 setValue(); in DbiModuleSourceFilesIterator() 102 setValue(); in operator +=() 118 void DbiModuleSourceFilesIterator::setValue() { in setValue() function in DbiModuleSourceFilesIterator
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | CommandLine.h | 559 template <class DT> void setValue(const DT & /*V*/) {} 592 void setValue(const DataType &V) { 627 OptionValue(const DataType &V) { this->setValue(V); } 631 this->setValue(V); 645 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); } 648 setValue(V); 662 OptionValue(const std::string &V) { this->setValue(V); } 665 setValue(V); 1345 template <class T> void setValue(const T &V, bool initial = false) { 1375 template <class T> void setValue(const T &V, bool initial = false) { [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/ |
H A D | UncheckedOptionalAccessModel.cpp | 323 Env.setValue(Expr, *Value); in forceBoolValue() 339 Env.setValue(locForHasValue(OptionalLoc), HasValueVal); in setHasValue() 351 Env.setValue(HasValueLoc, *HasValueVal); in getHasValue() 398 State.Env.setValue( in transferArrowOpCall() 414 State.Env.setValue(*CallExpr, *HasValueVal); in transferOptionalHasValueCall()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVType.h | 188 void setValue(StringRef Value) override { in setValue() function 228 void setValue(StringRef Value) override { in setValue() function
|
H A D | LVSymbol.h | 121 void setValue(StringRef Value) override { in setValue() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineMemOperand.h | 325 void setValue(const Value *NewSV) { PtrInfo.V = NewSV; } in setValue() function 326 void setValue(const PseudoSourceValue *NewSV) { PtrInfo.V = NewSV; } in setValue() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.h | 68 Other.A.setValue(InvalidAddr); in FinalizedAlloc() 95 A.setValue(InvalidAddr); in release()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | DbiModuleList.h | 55 void setValue();
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
H A D | DataflowEnvironment.h | 495 void setValue(const StorageLocation &Loc, Value &Val); 506 void setValue(const Expr &E, Value &Val);
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
H A D | LVDWARFReader.cpp | 321 CurrentElement->setValue( in processOneAttribute() 334 CurrentElement->setValue(Stream.str()); in processOneAttribute() 336 CurrentElement->setValue( in processOneAttribute() 339 CurrentElement->setValue(dwarf::toStringRef(FormValue)); in processOneAttribute()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/ |
H A D | SimpleRemoteEPCUtils.cpp | 214 TagAddr.setValue( in listenLoop()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
H A D | executor_address.h | 100 void setValue(uint64_t Addr) { this->Addr = Addr; } in setValue() function
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | ConstString.cpp | 149 GetStringMapEntryFromKeyData(mangled_ccstr).setValue(demangled_ccstr); in GetConstCStringAndSetMangledCounterPart()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Value.cpp | 356 getValueName()->setValue(this); in setNameImpl() 427 getValueName()->setValue(this); in takeName() 438 getValueName()->setValue(this); in takeName()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | StackColoring.cpp | 1004 MMO->setValue(Allocas[AI]); in remapInstructions() 1104 Ref->setValue(NewSV); in remapInstructions()
|