Lines Matching refs:Val

74 static GlobalValue::LinkageTypes GetDecodedLinkage(unsigned Val) {
75 switch (Val) {
97 static GlobalValue::VisibilityTypes GetDecodedVisibility(unsigned Val) {
98 switch (Val) {
107 GetDecodedDLLStorageClass(unsigned Val) {
108 switch (Val) {
116 static GlobalVariable::ThreadLocalMode GetDecodedThreadLocalMode(unsigned Val) {
117 switch (Val) {
127 static int GetDecodedCastOpcode(unsigned Val) {
128 switch (Val) {
145 static int GetDecodedBinaryOpcode(unsigned Val, Type *Ty) {
146 switch (Val) {
169 static AtomicRMWInst::BinOp GetDecodedRMWOperation(unsigned Val) {
170 switch (Val) {
186 static AtomicOrdering GetDecodedOrdering(unsigned Val) {
187 switch (Val) {
199 static SynchronizationScope GetDecodedSynchScope(unsigned Val) {
200 switch (Val) {
207 static Comdat::SelectionKind getDecodedComdatSelectionKind(unsigned Val) {
208 switch (Val) {
223 static void UpgradeDLLImportExportLinkage(llvm::GlobalValue *GV, unsigned Val) {
224 switch (Val) {
2481 Value *Val;
2482 if (getValueTypePair(Record, OpNum, NextValueNo, Val))
2494 I = InsertValueInst::Create(Agg, Val, INSERTVALIdx);
2806 Value *Val = nullptr;
2807 if (getValueTypePair(Record, Idx, NextValueNo, Val))
2809 I = ResumeInst::Create(Val);
2864 Value *Val;
2866 if (getValueTypePair(Record, Idx, NextValueNo, Val)) {
2872 !isa<ArrayType>(Val->getType())) &&
2875 isa<ArrayType>(Val->getType())) &&
2877 LP->addClause(cast<Constant>(Val));
2934 Value *Val, *Ptr;
2937 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
2941 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1);
2948 Value *Val, *Ptr;
2951 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
2963 I = new StoreInst(Val, Ptr, Record[OpNum+1], (1 << Record[OpNum]) >> 1,
3012 Value *Ptr, *Val;
3015 cast<PointerType>(Ptr->getType())->getElementType(), Val) ||
3026 I = new AtomicRMWInst(Operation, Ptr, Val, Ordering, SynchScope);