HomeSort by relevance Sort by last modified time
    Searched refs:CreatePHI (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/llvm/unittests/Transforms/Utils/
Local.cpp 29 PHINode *phi = builder.CreatePHI(Type::getInt32Ty(C), 2);
46 phi = builder.CreatePHI(Type::getInt32Ty(C), 0);
51 phi = builder.CreatePHI(Type::getInt32Ty(C), 0);
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 306 PHINode *Carry_1 = Builder.CreatePHI(DivTy, 2);
307 PHINode *SR_3 = Builder.CreatePHI(DivTy, 2);
308 PHINode *R_1 = Builder.CreatePHI(DivTy, 2);
309 PHINode *Q_2 = Builder.CreatePHI(DivTy, 2);
331 PHINode *Carry_2 = Builder.CreatePHI(DivTy, 2);
332 PHINode *Q_3 = Builder.CreatePHI(DivTy, 2);
341 PHINode *Q_5 = Builder.CreatePHI(DivTy, 2);
BypassSlowDivision.cpp 142 PHINode *QuoPhi = SuccessorBuilder.CreatePHI(Instr->getType(), 2);
145 PHINode *RemPhi = SuccessorBuilder.CreatePHI(Instr->getType(), 2);
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 127 PHINode *Phi = Builder.CreatePHI(Call->getType(), 2);
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerAggrCopies.cpp 57 PHINode *ind = loop.CreatePHI(indType, 0);
91 PHINode *ind = loop.CreatePHI(len->getType(), 0);
  /external/llvm/lib/Target/X86/
X86AtomicExpandPass.cpp 249 PHINode *Loaded = Builder.CreatePHI(AI->getType(), 2, "loaded");
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 555 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
597 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, VarName.c_str());
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 659 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
701 PHINode *Variable = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, VarName.c_str());
  /external/llvm/examples/BrainF/
BrainF.cpp 451 CreatePHI(PointerType::getUnqual(IntegerType::getInt8Ty(C)), 1,
  /external/llvm/lib/CodeGen/
AtomicExpandLoadLinkedPass.cpp 317 PHINode *Success = Builder.CreatePHI(Type::getInt1Ty(Ctx), 2);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 754 PHINode *SizePHI = Builder.CreatePHI(IntTy, PHI.getNumIncomingValues());
755 PHINode *OffsetPHI = Builder.CreatePHI(IntTy, PHI.getNumIncomingValues());
  /external/clang/lib/CodeGen/
CGExprCXX.cpp     [all...]
CGExprComplex.cpp 775 llvm::PHINode *RealPN = Builder.CreatePHI(LHS.first->getType(), 2, "cond.r");
780 llvm::PHINode *ImagPN = Builder.CreatePHI(LHS.first->getType(), 2, "cond.i");
    [all...]
CGExprScalar.cpp     [all...]
CGClass.cpp 221 llvm::PHINode *PHI = Builder.CreatePHI(BasePtrTy, 2, "cast.result");
278 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
    [all...]
CodeGenFunction.cpp     [all...]
CGObjCGNU.cpp     [all...]
CGVTables.cpp 100 llvm::PHINode *PHI = CGF.Builder.CreatePHI(ReturnValue->getType(), 2);
  /art/compiler/sea_ir/code_gen/
code_gen.cc 34 llvm::PHINode *llvm_phi = llvm_data_->builder_.CreatePHI(
  /art/compiler/llvm/
gbc_expander.cc 573 llvm::PHINode* new_phi = irb_.CreatePHI(phi->getType(), rewrite_pair.size());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 755 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 782 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1004 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 764 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
    [all...]
toy.cpp 1044 PHINode *PN = Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2,
    [all...]

Completed in 394 milliseconds

1 2 3