HomeSort by relevance Sort by last modified time
    Searched refs:CI (Results 76 - 100 of 200) sorted by null

1 2 34 5 6 7 8

  /cts/tools/vm-tests/src/dot/junit/opcodes/aget_char/d/
T_aget_char_7.d 27 .method public run([CI)C
T_aget_char_9.d 26 .method public run([CI)C
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_char/d/
T_aget_char_1.d 26 .method public run([CI)C
T_aget_char_7.d 27 .method public run([CI)C
T_aget_char_9.d 26 .method public run([CI)C
  /external/llvm/lib/Analysis/
RegionPrinter.cpp 74 GraphTraits<RegionInfo*>::ChildIteratorType CI, RegionInfo *RI) {
76 RegionNode *destNode = *CI;
TypeBasedAliasAnalysis.cpp 106 ConstantInt *CI = dyn_cast<ConstantInt>(Node->getOperand(2));
107 if (!CI)
109 return CI->getValue()[0];
LoopInfo.cpp 154 if (ConstantInt *CI =
156 if (CI->isNullValue())
161 if (ConstantInt *CI = dyn_cast<ConstantInt>(Inc->getOperand(1)))
162 if (CI->equalsInt(1))
244 if (ConstantInt *CI = dyn_cast<ConstantInt>(BO->getOperand(1)))
245 if (CI->getValue().getActiveBits() <= 5)
246 return 1u << CI->getZExtValue();
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 221 } else if (CastInst *CI = dyn_cast<CastInst>(II)) {
222 Changed |= FindSelectorAndURoR(CI, URoRInvoke, SelCalls, SeenPHIs);
523 CallInst *CI = CallInst::Create(RewindFunction, ExnValue, "", RI);
524 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
649 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(Start))
650 if (CI->getIntrinsicID() == Intrinsic::eh_exception)
709 CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB);
710 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
Analysis.cpp 132 InlineAsm::ConstraintInfo &CI = CInfos[i];
133 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
134 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
140 if (CI.isIndirect)
SjLjEHPrepare.cpp 460 if (CallInst *CI = dyn_cast<CallInst>(I)) {
461 if (CI->getCalledFunction() == SelectorFn) {
462 if (!PersonalityFn) PersonalityFn = CI->getArgOperand(1);
463 EH_Selectors.push_back(CI);
464 } else if (CI->getCalledFunction() == ExceptionFn) {
465 EH_Exceptions.push_back(CI);
466 } else if (CI->getCalledFunction() == StackRestoreFn) {
467 JmpbufUpdatePoints.push_back(CI);
678 if (CallInst *CI = dyn_cast<CallInst>(I)) {
680 Constant *Callee = CI->getCalledFunction()
    [all...]
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 134 if (CallInst *CI = dyn_cast<CallInst>(*UI))
135 InlineFunction(CI, IFI);
FunctionAttrs.cpp 139 for (CallSite::arg_iterator CI = CS.arg_begin(), CE = CS.arg_end();
140 CI != CE; ++CI) {
141 Value *Arg = *CI;
MergeFunctions.cpp 316 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
317 return CI->getPredicate() == cast<CmpInst>(I2)->getPredicate();
318 if (const CallInst *CI = dyn_cast<CallInst>(I1))
319 return CI->getCallingConv() == cast<CallInst>(I2)->getCallingConv() &&
320 CI->getAttributes() == cast<CallInst>(I2)->getAttributes();
321 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
322 return CI->getCallingConv() == cast<InvokeInst>(I2)->getCallingConv() &&
323 CI->getAttributes() == cast<InvokeInst>(I2)->getAttributes();
739 CallInst *CI = Builder.CreateCall(F, Args);
740 CI->setTailCall()
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 91 User *CI = cast<User>(LI.getOperand(0));
92 Value *CastOp = CI->getOperand(0);
94 PointerType *DestTy = cast<PointerType>(CI->getType());
133 IC.Builder->CreateLoad(CastOp, LI.isVolatile(), CI->getName());
257 User *CI = cast<User>(SI.getOperand(1));
258 Value *CastOp = CI->getOperand(0);
260 Type *DestPTy = cast<PointerType>(CI->getType())->getElementType();
307 cast<PointerType>(CI->getType())->getAddressSpace() ||
InstructionCombining.cpp 521 if (CastInst *CI = dyn_cast<CastInst>(&I)) {
522 return IC->Builder->CreateCast(CI->getOpcode(), SO, I.getType());
542 if (ICmpInst *CI = dyn_cast<ICmpInst>(&I))
543 return IC->Builder->CreateICmp(CI->getPredicate(), Op0, Op1,
545 if (FCmpInst *CI = dyn_cast<FCmpInst>(&I))
546 return IC->Builder->CreateICmp(CI->getPredicate(), Op0, Op1,
679 } else if (CmpInst *CI = dyn_cast<CmpInst>(&I)) {
684 InV = ConstantExpr::getCompare(CI->getPredicate(), InC, C);
685 else if (isa<ICmpInst>(CI))
686 InV = Builder->CreateICmp(CI->getPredicate(), PN->getIncomingValue(i)
    [all...]
  /external/llvm/include/llvm/Analysis/
DominatorInternals.h 208 for (typename InvTraits::ChildIteratorType CI =
210 E = InvTraits::child_end(W); CI != E; ++CI) {
211 typename InvTraits::NodeType *N = *CI;
  /external/llvm/include/llvm/Support/
ConstantRange.h 156 ConstantRange subtract(const APInt &CI) const;
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 62 if (const ConstantInt *CI =
64 LocCookie = CI->getZExtValue();
187 if (const ConstantInt *CI = dyn_cast<ConstantInt>(LocMD->getOperand(0))) {
188 LocCookie = CI->getZExtValue();
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 74 ConstantInt *CI = dyn_cast<ConstantInt>(C);
75 if (!CI) return false;
79 if (!CI->isOne()) std::swap(ReplaceWith, Other);
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 119 const CGIOperandList::ConstraintInfo &CI = Constraints[j];
120 if (CI.isTied()) return CI.getTiedOperand();
  /external/clang/lib/Frontend/
ASTUnit.cpp 765 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
767 CI.getPreprocessor().addPPCallbacks(
829 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
834 if (GeneratePCHAction::ComputeASTConsumerArguments(CI, InFile, Sysroot,
839 if (!CI.getFrontendOpts().RelocatablePCH)
842 CI.getPreprocessor().addPPCallbacks(
844 return new PrecompilePreambleConsumer(Unit, CI.getPreprocessor(), Sysroot,
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 131 const ConstantInt *CI; // For MO_CImmediate. Integers > 64bit.
367 return Contents.CI;
477 static MachineOperand CreateCImm(const ConstantInt *CI) {
479 Op.Contents.CI = CI;
  /external/llvm/lib/VMCore/
Value.cpp 376 ConstantInt *CI = dyn_cast<ConstantInt>(Index);
377 if (!CI)
380 if (CI->isZero())
386 if (CI->getValue().getActiveBits() > 64)
388 if (CI->getZExtValue() >= ATy->getNumElements())
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 388 CompilerInvocation CI;
389 remapper.applyMappings(CI);
390 remap = CI.getPreprocessorOpts().RemappedFiles;
422 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
424 CI.getPreprocessor().addPPCallbacks(
476 MigrationProcess::MigrationProcess(const CompilerInvocation &CI,
479 : OrigCI(CI), DiagClient(diagClient) {

Completed in 1022 milliseconds

1 2 34 5 6 7 8