HomeSort by relevance Sort by last modified time
    Searched refs:InitVal (Results 1 - 22 of 22) sorted by null

  /external/llvm/lib/IR/
Globals.cpp 143 Constant *InitVal, const Twine &Name,
148 InitVal != nullptr, Link, Name),
152 if (InitVal) {
153 assert(InitVal->getType() == Ty &&
155 Op<0>() = InitVal;
160 LinkageTypes Link, Constant *InitVal,
166 InitVal != nullptr, Link, Name),
170 if (InitVal) {
171 assert(InitVal->getType() == Ty &&
173 Op<0>() = InitVal;
    [all...]
  /external/llvm/include/llvm/IR/
GlobalVariable.h 136 /// any existing initializer if InitVal==NULL. If this GV has type T*, the
138 void setInitializer(Constant *InitVal);
  /external/llvm/include/llvm/ADT/
StringMap.h 144 InitType &&InitVal) {
157 new (NewItem) StringMapEntry(KeyLength, std::forward<InitType>(InitVal));
173 static StringMapEntry *Create(StringRef Key, InitType &&InitVal) {
175 return Create(Key, A, std::forward<InitType>(InitVal));
  /external/llvm/include/llvm/CodeGen/PBQP/
Math.h 36 Vector(unsigned Length, PBQPNum InitVal)
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/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 471 SVal InitVal = state->getSVal(InitEx, LC);
483 InitVal.getAs<loc::MemRegionVal>()) {
484 InitVal = state->getSVal(M->getRegion());
485 assert(InitVal.getAs<nonloc::LazyCompoundVal>());
491 if (InitVal.isUnknown()) {
497 InitVal = svalBuilder.conjureSymbolVal(nullptr, InitEx, LC, Ty,
504 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true);
    [all...]
ExprEngine.cpp 489 SVal InitVal;
499 InitVal = State->getSVal(*LValueLoc);
502 if (InitVal.isUnknownOrUndef()) {
504 InitVal = SVB.conjureSymbolVal(BMI->getInit(), stackFrame,
509 InitVal = State->getSVal(BMI->getInit(), stackFrame);
517 evalBind(Tmp, Init, Pred, FieldLoc, InitVal, /*isInit=*/true, &PP);
    [all...]
  /external/llvm/include/llvm/MC/
MCRegisterInfo.h 199 /// init - Point the iterator to InitVal, decoding subsequent values from
200 /// DiffList. The iterator will initially point to InitVal, sub-classes are
202 void init(MCPhysReg InitVal, const MCPhysReg *DiffList) {
203 Val = InitVal;
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 954 Value *InitVal;
956 InitVal = Init->Codegen();
957 if (InitVal == 0)
960 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
964 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 1155 Value *InitVal;
1157 InitVal = Init->Codegen();
1158 if (InitVal == 0)
1161 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
1165 Builder.CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 903 Value *InitVal;
905 InitVal = Init->Codegen();
906 if (InitVal == 0) return 0;
908 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
912 Builder.CreateStore(InitVal, Alloca);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 885 Value *InitVal;
887 InitVal = Init->Codegen();
888 if (InitVal == 0) return 0;
890 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
894 Builder.CreateStore(InitVal, Alloca);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 1011 Value *InitVal;
1013 InitVal = Init->IRGen(C);
1014 if (!InitVal) return nullptr;
1016 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
1019 C.getBuilder().CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 1010 Value *InitVal;
1012 InitVal = Init->IRGen(C);
1013 if (!InitVal) return nullptr;
1015 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
1018 C.getBuilder().CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 1010 Value *InitVal;
1012 InitVal = Init->IRGen(C);
1013 if (!InitVal) return nullptr;
1015 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
1018 C.getBuilder().CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 1010 Value *InitVal;
1012 InitVal = Init->IRGen(C);
1013 if (!InitVal) return nullptr;
1015 InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0));
1018 C.getBuilder().CreateStore(InitVal, Alloca);
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 564 // out[0] = InitVal;
576 DiffVec &diffEncode(DiffVec &V, unsigned InitVal, SparseBitVector<> List) {
578 uint16_t Val = uint16_t(InitVal);
589 DiffVec &diffEncode(DiffVec &V, unsigned InitVal, Iter Begin, Iter End) {
591 uint16_t Val = uint16_t(InitVal);
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 511 milliseconds