HomeSort by relevance Sort by last modified time
    Searched refs:AI (Results 101 - 125 of 174) sorted by null

1 2 3 45 6 7

  /external/llvm/lib/CodeGen/
StackColoring.cpp 522 const AllocaInst *AI = dyn_cast_or_null<AllocaInst>(MMO->getValue());
523 if (!AI)
526 if (!Allocas.count(AI))
529 MMO->setValue(Allocas[AI]);
GCStrategy.cpp 182 if (AllocaInst *AI =
184 InitedRoots.insert(AI);
  /external/llvm/lib/IR/
AsmWriter.cpp 504 for(Function::const_arg_iterator AI = TheFunction->arg_begin(),
505 AE = TheFunction->arg_end(); AI != AE; ++AI)
506 if (!AI->hasName())
507 CreateFunctionSlot(AI);
606 as_iterator AI = asMap.find(AS);
607 return AI == asMap.end() ? -1 : (int)AI->second;
    [all...]
AttributeImpl.h 65 bool operator<(const AttributeImpl &AI) const;
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 57 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
58 if (isa<ConstantInt>(AI->getArraySize()))
346 if (const AllocaInst *AI = dyn_cast<AllocaInst>(II)) {
347 if (isa<ConstantInt>(AI->getArraySize()))
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 523 for (Module::const_alias_iterator AI = M->alias_begin(), E = M->alias_end();
524 AI != E; ++AI) {
526 Vals.push_back(VE.getTypeID(AI->getType()));
527 Vals.push_back(VE.getValueID(AI->getAliasee()));
528 Vals.push_back(getEncodedLinkage(AI));
529 Vals.push_back(getEncodedVisibility(AI));
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 939 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
940 ++AI, ++Idx)
941 AI->setName(Args[Idx]);
949 Function::arg_iterator AI = F->arg_begin();
950 for (unsigned Idx = 0, e = Args.size(); Idx != e; ++Idx, ++AI) {
955 Builder.CreateStore(AI, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 963 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
964 ++AI, ++Idx)
965 AI->setName(Args[Idx]);
973 Function::arg_iterator AI = F->arg_begin();
974 for (unsigned Idx = 0, e = Args.size(); Idx != e; ++Idx, ++AI) {
979 Builder.CreateStore(AI, Alloca);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 945 for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size();
946 ++AI, ++Idx)
947 AI->setName(Args[Idx]);
955 Function::arg_iterator AI = F->arg_begin();
956 for (unsigned Idx = 0, e = Args.size(); Idx != e; ++Idx, ++AI) {
961 Builder.CreateStore(AI, Alloca);
    [all...]
toy.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 258 if (AllocaInst *AI = dyn_cast<AllocaInst>(L->getOperand(0))) {
260 for (User *U : AI->users()) {
264 if (SI->getOperand(1) == AI) continue;
270 if (!isAddressTaken && AI->isStaticAlloca())
280 if (AllocaInst *AI = dyn_cast<AllocaInst>(GEP->getOperand(0)))
281 if (AI->isStaticAlloca() && GEP->hasAllConstantIndices())
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 222 llvm::Function::arg_iterator AI = ExpandedFunction->arg_begin();
224 (AI++)->setName("p");
225 (AI++)->setName("x1");
226 (AI++)->setName("x2");
227 (AI++)->setName("arg_instep");
228 (AI++)->setName("arg_outstep");
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 500 for (Function::arg_iterator ai = NewF->arg_begin(); n != 0; ++ai, --n)
501 Args.push_back(&*ai);
520 Function::arg_iterator AI = F->arg_begin(); ++AI;
521 for (unsigned N = FT->getNumParams(); N != 0; ++AI, --N)
522 Args.push_back(&*AI);
532 Function::arg_iterator ValAI = F->arg_begin(), ShadowAI = AI; ++ValAI;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
StructurizeCFG.cpp 526 for (BB2BBVecMap::iterator AI = AddedPhis.begin(), AE = AddedPhis.end();
527 AI != AE; ++AI) {
529 BasicBlock *To = AI->first;
530 BBVector &From = AI->second;
  /external/clang/lib/CodeGen/
CGDebugInfo.h 250 void EmitDeclareOfAutoVariable(const VarDecl *Decl, llvm::Value *AI,
262 void EmitDeclareOfArgVariable(const VarDecl *Decl, llvm::Value *AI,
308 llvm::Value *AI, unsigned ArgNo, CGBuilderTy &Builder);
CGExprCXX.cpp     [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.cpp 299 RelocAddrMap::const_iterator AI = RMap->find(*offset_ptr);
300 if (AI != RMap->end()) {
301 const std::pair<uint8_t, int64_t> &R = AI->second;
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 208 } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
209 ret = AI;
  /external/llvm/lib/Transforms/IPO/
FunctionAttrs.cpp 356 Function::arg_iterator AI = F->arg_begin(), AE = F->arg_end();
358 PI != PE; ++PI, ++AI) {
359 if (AI == AE) {
365 Uses.push_back(AI);
480 Function::arg_iterator AI = F->arg_begin(), AE = F->arg_end();
482 for (CallSite::arg_iterator A = B; A != E; ++A, ++AI) {
484 if (AI == AE) {
490 if (SCCNodes.count(AI))
    [all...]
  /external/llvm/utils/TableGen/
SubtargetEmitter.cpp 680 for (RecIter AI = SchedWrite.Aliases.begin(), AE = SchedWrite.Aliases.end();
681 AI != AE; ++AI) {
683 SchedModels.getSchedRW((*AI)->getValueAsDef("AliasRW"));
734 for (RecIter AI = SchedRead.Aliases.begin(), AE = SchedRead.Aliases.end();
735 AI != AE; ++AI) {
737 SchedModels.getSchedRW((*AI)->getValueAsDef("AliasRW"));
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 208 } else if (const AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
209 ret = AI;

Completed in 1606 milliseconds

1 2 3 45 6 7