HomeSort by relevance Sort by last modified time
    Searched defs:CI (Results 51 - 75 of 127) sorted by null

1 23 4 5 6

  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 179 Instruction *CI = BI++;
180 if (isa<PHINode>(CI) || !isSafeToSpeculativelyExecute(CI))
241 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
242 CmpInst::Predicate Predicate = CI->getPredicate();
245 CI->setPredicate(ICmpInst::getInversePredicate(Predicate));
428 Instruction *CI = BI;
429 if (isa<PHINode>(CI) || CI->mayHaveSideEffects() ||
430 !isSafeToSpeculativelyExecute(CI))
    [all...]
LoopSimplify.cpp 306 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
307 if (!CI || CI->getParent() != ExitingBlock) continue;
317 if (Inst == CI)
InlineFunction.cpp 34 bool llvm::InlineFunction(CallInst *CI, InlineFunctionInfo &IFI,
36 return InlineFunction(CallSite(CI), IFI, InsertLifetime);
193 CallInst *CI = dyn_cast<CallInst>(I);
196 if (!CI || CI->doesNotThrow())
201 BasicBlock *Split = BB->splitBasicBlock(CI, CI->getName()+".noexc");
207 ImmutableCallSite CS(CI);
209 InvokeInst *II = InvokeInst::Create(CI->getCalledValue(), Split,
211 InvokeArgs, CI->getName(), BB)
    [all...]
Local.cpp 111 ConstantInt *CI = dyn_cast<ConstantInt>(SI->getCondition());
119 if (i.getCaseValue() == CI) {
134 ConstantInt* CI = dyn_cast<ConstantInt>(MD->getOperand(MD_i));
135 assert(CI);
136 Weights.push_back(CI->getValue().getZExtValue());
161 if (CI && !TheOnlyDest) {
307 if (CallInst *CI = isFreeCall(I, TLI))
308 if (Constant *C = dyn_cast<Constant>(CI->getArgOperand(0)))
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 245 ConstantInt *CI = dyn_cast<ConstantInt>(CS->getOperand(0));
246 int Priority = CI ? CI->getSExtValue() : 0;
  /frameworks/compile/slang/
slang_rs_backend.cpp 373 llvm::CallInst *CI = IB->CreateCall(F, Params);
375 CI->setCallingConv(F->getCallingConv());
380 IB->CreateRet(CI);
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringBufferTest.java 48 public void test_getCharsII$CI() {
OldStringTest.java 114 public void test_getCharsII$CI() {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
StringBuffer2Test.java 300 public void test_getCharsII$CI() {
String2Test.java 501 public void test_getCharsII$CI() {
    [all...]
StringBuilderTest.java 643 public void test_getCharsII$CI() {
    [all...]
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 322 static raw_ostream *GetOutputStream(CompilerInstance &CI,
327 return CI.createDefaultOutputFile(false, InFile, "s");
329 return CI.createDefaultOutputFile(false, InFile, "ll");
331 return CI.createDefaultOutputFile(true, InFile, "bc");
336 return CI.createDefaultOutputFile(true, InFile, "o");
342 ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI,
345 OwningPtr<raw_ostream> OS(GetOutputStream(CI, InFile, BA));
353 const std::string &LinkBCFile = CI.getCodeGenOpts().LinkBitcodeFile;
358 CI.getFileManager().getBufferForFile(LinkBCFile, &ErrorStr);
360 CI.getDiagnostics().Report(diag::err_cannot_open_file
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 262 Optional<nonloc::ConcreteInt> CI = Whence.getAs<nonloc::ConcreteInt>();
264 if (!CI)
267 int64_t x = CI->getValue().getSExtValue();
  /external/clang/test/Analysis/
derived-to-base.cpp 77 class CI : public virtual Intermediate {
82 class DI : public BI, public CI {};
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 241 if (CallInst *CI = dyn_cast<CallInst>(I))
242 if (CI->hasFnAttr(Attribute::Cold)) {
279 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
280 if (!CI || !CI->isEquality())
283 Value *LHS = CI->getOperand(0);
288 assert(CI->getOperand(1)->getType()->isPointerTy());
295 bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE;
366 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
367 if (!CI)
    [all...]
MemoryBuiltins.cpp 200 static Value *computeArraySize(const CallInst *CI, const DataLayout *TD,
203 if (!CI)
207 Type *T = getMallocAllocatedType(CI, TLI);
217 Value *MallocArg = CI->getArgOperand(0);
232 const CallInst *CI = extractMallocCall(I, TLI);
233 Value *ArraySize = computeArraySize(CI, TD, TLI);
237 return CI;
239 // CI is a non-array malloc or we can't figure out that it is an array malloc.
248 PointerType *llvm::getMallocType(const CallInst *CI,
250 assert(isMallocLikeFn(CI, TLI) && "getMallocType and not malloc call")
    [all...]
LazyValueInfo.cpp 138 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
139 return markConstantRange(ConstantRange(CI->getValue()));
154 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
155 return markConstantRange(ConstantRange(CI->getValue()+1, CI->getValue()));
821 ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1));
822 if (CI && (ICI->getOperand(0) == Val || NegOffset)) {
824 ConstantRange CmpRange(CI->getValue());
    [all...]
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 134 if (CallInst *CI = dyn_cast<CallInst>(II))
135 if (!CI->getCalledFunction() ||
136 !CI->getCalledFunction()->getIntrinsicID())
137 Calls.push_back(CI);
161 CallInst *CI = cast<CallInst>(Calls[--I]);
164 BasicBlock *CallBB = CI->getParent();
166 CallBB->splitBasicBlock(CI, CallBB->getName() + ".cont");
170 NewBB->getInstList().remove(CI);
174 CallSite CS(CI);
177 InvokeInst *II = InvokeInst::Create(CI->getCalledValue()
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 154 const ConstantInt *CI; // For MO_CImmediate. Integers > 64bit.
409 return Contents.CI;
548 static MachineOperand CreateCImm(const ConstantInt *CI) {
550 Op.Contents.CI = CI;
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 324 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
325 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
326 if (const CallInst *CI = dyn_cast<CallInst>(I1))
327 return CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
328 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
329 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
330 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
331 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes();
745 CallInst *CI = Builder.CreateCall(F, Args);
746 CI->setTailCall()
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 49 if (CmpInst *CI = dyn_cast<CmpInst>(I))
50 if (CI->hasOneUse() &&
51 (CheapToScalarize(CI->getOperand(0), isConstant) ||
52 CheapToScalarize(CI->getOperand(1), isConstant)))
276 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
279 if (CI->hasOneUse() && (CI->getOpcode() != Instruction::BitCast)) {
280 Value *EE = Builder->CreateExtractElement(CI->getOperand(0),
283 return CastInst::Create(CI->getOpcode(), EE, EI.getType());
553 ConstantInt *CI = dyn_cast<ConstantInt>(I->getOperand(2))
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 441 Constant *CI = ConstantInt::get(I32, Ran->Rand() % (Width*2));
444 CI = UndefValue::get(I32);
445 Idxs.push_back(CI);
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 119 const CGIOperandList::ConstraintInfo &CI = Constraints[j];
120 if (CI.isTied()) return CI.getTiedOperand();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 85 bool expandBFI(CallInst *CI);
88 bool expandBFM(CallInst *CI);
92 bool isSigned24BitOps(CallInst *CI);
93 void expandSigned24BitOps(CallInst *CI);
97 bool isRWGLocalOpt(CallInst *CI);
101 bool convertAccurateDivide(CallInst *CI);
102 void expandAccurateDivide(CallInst *CI);
111 bool propagateSamplerInst(CallInst *CI);
242 CallInst *CI = isConstVec[x];
243 Constant *CV = dyn_cast<Constant>(CI->getOperand(0))
    [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]

Completed in 677 milliseconds

1 23 4 5 6