• Home
  • Raw
  • Download

Lines Matching full:value

26 	class Value;
58 static Value *allocateStackVariable(Type *type, int arraySize = 0);
64 static Value *getArgument(unsigned int index);
68 static void createRet(Value *V);
70 static void createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse);
73 static Value *createAdd(Value *lhs, Value *rhs);
74 static Value *createSub(Value *lhs, Value *rhs);
75 static Value *createMul(Value *lhs, Value *rhs);
76 static Value *createUDiv(Value *lhs, Value *rhs);
77 static Value *createSDiv(Value *lhs, Value *rhs);
78 static Value *createFAdd(Value *lhs, Value *rhs);
79 static Value *createFSub(Value *lhs, Value *rhs);
80 static Value *createFMul(Value *lhs, Value *rhs);
81 static Value *createFDiv(Value *lhs, Value *rhs);
82 static Value *createURem(Value *lhs, Value *rhs);
83 static Value *createSRem(Value *lhs, Value *rhs);
84 static Value *createFRem(Value *lhs, Value *rhs);
85 static Value *createShl(Value *lhs, Value *rhs);
86 static Value *createLShr(Value *lhs, Value *rhs);
87 static Value *createAShr(Value *lhs, Value *rhs);
88 static Value *createAnd(Value *lhs, Value *rhs);
89 static Value *createOr(Value *lhs, Value *rhs);
90 static Value *createXor(Value *lhs, Value *rhs);
93 static Value *createNeg(Value *V);
94 static Value *createFNeg(Value *V);
95 static Value *createNot(Value *V);
98 static Value *createLoad(Value *ptr, Type *type, bool isVolatile = false, unsigned int align = 0);
99 …static Value *createStore(Value *value, Value *ptr, Type *type, bool isVolatile = false, unsigned …
100 static Value *createGEP(Value *ptr, Type *type, Value *index, bool unsignedIndex);
103 static Value *createAtomicAdd(Value *ptr, Value *value);
106 static Value *createTrunc(Value *V, Type *destType);
107 static Value *createZExt(Value *V, Type *destType);
108 static Value *createSExt(Value *V, Type *destType);
109 static Value *createFPToSI(Value *V, Type *destType);
110 static Value *createSIToFP(Value *V, Type *destType);
111 static Value *createFPTrunc(Value *V, Type *destType);
112 static Value *createFPExt(Value *V, Type *destType);
113 static Value *createBitCast(Value *V, Type *destType);
116 static Value *createICmpEQ(Value *lhs, Value *rhs);
117 static Value *createICmpNE(Value *lhs, Value *rhs);
118 static Value *createICmpUGT(Value *lhs, Value *rhs);
119 static Value *createICmpUGE(Value *lhs, Value *rhs);
120 static Value *createICmpULT(Value *lhs, Value *rhs);
121 static Value *createICmpULE(Value *lhs, Value *rhs);
122 static Value *createICmpSGT(Value *lhs, Value *rhs);
123 static Value *createICmpSGE(Value *lhs, Value *rhs);
124 static Value *createICmpSLT(Value *lhs, Value *rhs);
125 static Value *createICmpSLE(Value *lhs, Value *rhs);
126 static Value *createFCmpOEQ(Value *lhs, Value *rhs);
127 static Value *createFCmpOGT(Value *lhs, Value *rhs);
128 static Value *createFCmpOGE(Value *lhs, Value *rhs);
129 static Value *createFCmpOLT(Value *lhs, Value *rhs);
130 static Value *createFCmpOLE(Value *lhs, Value *rhs);
131 static Value *createFCmpONE(Value *lhs, Value *rhs);
132 static Value *createFCmpORD(Value *lhs, Value *rhs);
133 static Value *createFCmpUNO(Value *lhs, Value *rhs);
134 static Value *createFCmpUEQ(Value *lhs, Value *rhs);
135 static Value *createFCmpUGT(Value *lhs, Value *rhs);
136 static Value *createFCmpUGE(Value *lhs, Value *rhs);
137 static Value *createFCmpULT(Value *lhs, Value *rhs);
138 static Value *createFCmpULE(Value *lhs, Value *rhs);
139 static Value *createFCmpUNE(Value *lhs, Value *rhs);
142 static Value *createExtractElement(Value *vector, Type *type, int index);
143 static Value *createInsertElement(Value *vector, Value *element, int index);
144 static Value *createShuffleVector(Value *V1, Value *V2, const int *select);
147 static Value *createSelect(Value *C, Value *ifTrue, Value *ifFalse);
148 static SwitchCases *createSwitch(Value *control, BasicBlock *defaultBranch, unsigned numCases);
153 static Value *createNullValue(Type *type);
154 static Value *createConstantLong(int64_t i);
155 static Value *createConstantInt(int i);
156 static Value *createConstantInt(unsigned int i);
157 static Value *createConstantBool(bool b);
158 static Value *createConstantByte(signed char i);
159 static Value *createConstantByte(unsigned char i);
160 static Value *createConstantShort(short i);
161 static Value *createConstantShort(unsigned short i);
162 static Value *createConstantFloat(float x);
163 static Value *createNullPointer(Type *type);
164 static Value *createConstantVector(const int64_t *constants, Type *type);
165 static Value *createConstantVector(const double *constants, Type *type);