Searched refs:InitVal (Results 1 - 25 of 33) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DGlobals.cpp84 Constant *InitVal, const Twine &Name,
89 InitVal != 0, Link, Name),
91 if (InitVal) {
92 assert(InitVal->getType() == Ty &&
94 Op<0>() = InitVal;
101 LinkageTypes Link, Constant *InitVal,
108 InitVal != 0, Link, Name),
110 if (InitVal) {
111 assert(InitVal->getType() == Ty &&
113 Op<0>() = InitVal;
83 GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, Constant *InitVal, const Twine &Name, bool ThreadLocal, unsigned AddressSpace) argument
100 GlobalVariable(Module &M, Type *Ty, bool constant, LinkageTypes Link, Constant *InitVal, const Twine &Name, GlobalVariable *Before, bool ThreadLocal, unsigned AddressSpace) argument
160 setInitializer(Constant *InitVal) argument
[all...]
/external/llvm/lib/IR/
H A DGlobals.cpp221 Constant *InitVal, const Twine &Name,
226 InitVal != nullptr, Link, Name, AddressSpace),
230 if (InitVal) {
231 assert(InitVal->getType() == Ty &&
233 Op<0>() = InitVal;
238 LinkageTypes Link, Constant *InitVal,
244 InitVal != nullptr, Link, Name, AddressSpace),
248 if (InitVal) {
249 assert(InitVal->getType() == Ty &&
251 Op<0>() = InitVal;
220 GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, Constant *InitVal, const Twine &Name, ThreadLocalMode TLMode, unsigned AddressSpace, bool isExternallyInitialized) argument
237 GlobalVariable(Module &M, Type *Ty, bool constant, LinkageTypes Link, Constant *InitVal, const Twine &Name, GlobalVariable *Before, ThreadLocalMode TLMode, unsigned AddressSpace, bool isExternallyInitialized) argument
272 setInitializer(Constant *InitVal) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringMap.h36 static void Initialize(StringMapEntry<ValueTy> &T, InitTy InitVal) { argument
37 T.second = InitVal;
150 InitType InitVal) {
173 StringMapEntryInitializer<ValueTy>::Initialize(*NewItem, InitVal);
187 InitType InitVal) {
189 return Create(KeyStart, KeyEnd, A, InitVal);
148 Create(const char *KeyStart, const char *KeyEnd, AllocatorTy &Allocator, InitType InitVal) argument
186 Create(const char *KeyStart, const char *KeyEnd, InitType InitVal) argument
/external/llvm/include/llvm/IR/
H A DGlobalVariable.h132 /// any existing initializer if InitVal==NULL. If this GV has type T*, the
134 void setInitializer(Constant *InitVal);
/external/swiftshader/third_party/LLVM/include/llvm/
H A DGlobalVariable.h126 /// any existing initializer if InitVal==NULL. If this GV has type T*, the
128 void setInitializer(Constant *InitVal);
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DStringMapTest.cpp178 static void Initialize(StringMapEntry<uint32_t> &T, InitTy InitVal) { argument
179 T.second = InitVal;
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp593 SVal InitVal; local
597 InitVal = State->getSVal(InitExpr, LocCtxt);
603 InitVal = State->getSVal(SizeExpr, LocCtxt);
606 State = State->bindLoc(FieldLoc, InitVal);
H A DExprEngineC.cpp504 SVal InitVal = state->getSVal(InitEx, LC); local
519 InitVal.getAs<loc::MemRegionVal>()) {
520 InitVal = state->getSVal(M->getRegion());
521 assert(InitVal.getAs<nonloc::LazyCompoundVal>());
527 if (InitVal.isUnknown()) {
533 InitVal = svalBuilder.conjureSymbolVal(nullptr, InitEx, LC, Ty,
540 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true);
/external/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h36 Vector(unsigned Length, PBQPNum InitVal) argument
40 // << InitVal << ")\n";
41 std::fill(Data, Data + Length, InitVal);
175 Matrix(unsigned Rows, unsigned Cols, PBQPNum InitVal)
177 std::fill(Data, Data + (Rows * Cols), InitVal);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp989 Value *InitVal; local
991 InitVal = Init->codegen();
992 if (!InitVal)
995 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
999 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp989 Value *InitVal; local
991 InitVal = Init->codegen();
992 if (!InitVal)
995 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
999 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp989 Value *InitVal; local
991 InitVal = Init->codegen();
992 if (!InitVal)
995 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
999 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp978 Value *InitVal; local
980 InitVal = Init->codegen();
981 if (!InitVal)
984 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
988 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
H A Dtoy.cpp1000 Value *InitVal; local
1002 InitVal = Init->codegen();
1003 if (!InitVal)
1006 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
1010 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp990 Value *InitVal; local
992 InitVal = Init->codegen();
993 if (!InitVal)
996 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
1000 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp985 Value *InitVal; local
987 InitVal = Init->codegen();
988 if (!InitVal)
991 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
995 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp900 Value *InitVal; local
902 InitVal = Init->Codegen();
903 if (InitVal == 0) return 0;
905 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
909 Builder.CreateStore(InitVal, Alloca);
H A Dtoy.cpp1264 Value *InitVal; local
1266 InitVal = Init->Codegen();
1267 if (InitVal == 0) return 0;
1269 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
1273 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp1122 Value *InitVal; local
1124 InitVal = Init->Codegen();
1125 if (InitVal == 0) return 0;
1127 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
1131 Builder.CreateStore(InitVal, Alloca);
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp882 Value *InitVal; local
884 InitVal = Init->Codegen();
885 if (InitVal == 0) return 0;
887 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
891 Builder.CreateStore(InitVal, Alloca);
H A Dtoy.cpp1162 Value *InitVal; local
1164 InitVal = Init->Codegen();
1165 if (InitVal == 0) return 0;
1167 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
1171 Builder.CreateStore(InitVal, Alloca);
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp875 Value *InitVal; local
877 InitVal = Init->Codegen();
878 if (InitVal == 0) return 0;
880 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
884 Builder.CreateStore(InitVal, Alloca);
/external/llvm/include/llvm/ADT/
H A DStringMap.h178 static StringMapEntry *Create(StringRef Key, InitType &&... InitVal) { argument
180 return Create(Key, A, std::forward<InitType>(InitVal)...);
/external/llvm/include/llvm/MC/
H A DMCRegisterInfo.h200 /// init - Point the iterator to InitVal, decoding subsequent values from
201 /// DiffList. The iterator will initially point to InitVal, sub-classes are
203 void init(MCPhysReg InitVal, const MCPhysReg *DiffList) { argument
204 Val = InitVal;
/external/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp1171 Value *InitVal; local
1173 InitVal = Init->codegen();
1174 if (!InitVal)
1177 InitVal = ConstantFP::get(TheContext, APFloat(0.0));
1181 Builder.CreateStore(InitVal, Alloca);

Completed in 1175 milliseconds

12