HomeSort by relevance Sort by last modified time
    Searched defs:CI (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 100 CallInst *CI;
106 bool fold(CallInst *CI, const TargetData *TD);
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 83 CompilerInvocation *CI = new CompilerInvocation();
84 CompilerInvocation::CreateFromArgs(*CI,
89 return CI;
ASTMerge.cpp 19 ASTConsumer *ASTMergeAction::CreateASTConsumer(CompilerInstance &CI,
21 return AdaptedAction->CreateASTConsumer(CI, InFile);
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI,
31 AdaptedAction->setCompilerInstance(&CI);
32 return AdaptedAction->BeginSourceFileAction(CI, Filename);
36 CompilerInstance &CI = getCompilerInstance();
37 CI.getDiagnostics().getClient()->BeginSourceFile(
38 CI.getASTContext().getLangOptions());
39 CI.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
40 &CI.getASTContext())
    [all...]
FrontendActions.cpp 33 ASTConsumer *InitOnlyAction::CreateASTConsumer(CompilerInstance &CI,
45 ASTConsumer *ASTPrintAction::CreateASTConsumer(CompilerInstance &CI,
47 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
52 ASTConsumer *ASTDumpAction::CreateASTConsumer(CompilerInstance &CI,
57 ASTConsumer *ASTDumpXMLAction::CreateASTConsumer(CompilerInstance &CI,
60 if (CI.getFrontendOpts().OutputFile.empty())
63 OS = CI.createDefaultOutputFile(false, InFile);
68 ASTConsumer *ASTViewAction::CreateASTConsumer(CompilerInstance &CI,
73 ASTConsumer *DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI,
78 ASTConsumer *GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI,
    [all...]
FrontendAction.cpp 93 ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
95 ASTConsumer* Consumer = CreateASTConsumer(CI, InFile);
99 if (CI.getFrontendOpts().AddPluginActions.size() == 0)
106 for (size_t i = 0, e = CI.getFrontendOpts().AddPluginActions.size();
114 if (it->getName() == CI.getFrontendOpts().AddPluginActions[i]) {
117 if (P->ParseArgs(CI, CI.getFrontendOpts().AddPluginArgs[i]))
118 Consumers.push_back(c->CreateASTConsumer(CI, InFile));
126 bool FrontendAction::BeginSourceFile(CompilerInstance &CI,
132 setCompilerInstance(&CI);
    [all...]
  /external/llvm/unittests/ADT/
IntervalMapTest.cpp 45 UUMap::const_iterator CI;
46 CI = map.begin();
47 EXPECT_TRUE(CI == I);
50 EXPECT_TRUE(I2 == CI);
  /build/tools/droiddoc/test/generics/src/com/android/generics/
FooBar.java 24 public class CI extends C implements Iface
  /external/clang/lib/Rewrite/
FrontendActions.cpp 30 ASTConsumer *HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI,
32 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
33 return CreateHTMLPrinter(OS, CI.getPreprocessor());
40 ASTConsumer *FixItAction::CreateASTConsumer(CompilerInstance &CI,
69 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI,
79 Rewriter.reset(new FixItRewriter(CI.getDiagnostics(), CI.getSourceManager(),
80 CI.getLangOpts(), FixItOpts.get()));
93 ASTConsumer *RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI,
95 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile, "cpp")
    [all...]
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 33 static bool isMallocCall(const CallInst *CI) {
34 if (!CI)
37 Function *Callee = CI->getCalledFunction();
61 const CallInst *CI = dyn_cast<CallInst>(I);
62 return (isMallocCall(CI)) ? CI : NULL;
66 CallInst *CI = dyn_cast<CallInst>(I);
67 return (isMallocCall(CI)) ? CI : NULL;
91 static Value *computeArraySize(const CallInst *CI, const TargetData *TD
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 60 CallInst *CI = dyn_cast<CallInst>(SI->getCondition());
61 if (!CI)
64 Function *Fn = CI->getCalledFunction();
68 Value *ArgValue = CI->getArgOperand(0);
69 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
73 LLVMContext &Context = CI->getContext();
107 CallInst *CI = dyn_cast<CallInst>(CmpI->getOperand(0));
108 if (!CI)
111 Function *Fn = CI->getCalledFunction();
115 Value *ArgValue = CI->getArgOperand(0)
    [all...]
AddrModeMatcher.cpp 100 ConstantInt *CI = 0; Value *AddLHS = 0;
102 match(ScaleReg, m_Add(m_Value(AddLHS), m_ConstantInt(CI)))) {
104 TestAddrMode.BaseOffs += CI->getSExtValue()*TestAddrMode.Scale;
232 if (ConstantInt *CI = dyn_cast<ConstantInt>(AddrInst->getOperand(i))) {
233 ConstantOffset += CI->getSExtValue()*TypeSize;
311 if (ConstantInt *CI = dyn_cast<ConstantInt>(Addr)) {
313 AddrMode.BaseOffs += CI->getSExtValue();
316 AddrMode.BaseOffs -= CI->getSExtValue();
381 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal,
383 TargetLowering::AsmOperandInfoVector TargetConstraints = TLI.ParseConstraints(ImmutableCallSite(CI));
    [all...]
  /external/llvm/lib/VMCore/
IRBuilder.cpp 57 CallInst *CI = CallInst::Create(Callee, Ops, "");
58 Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI);
59 Builder->SetInstDebugLocation(CI);
60 return CI;
72 CallInst *CI = createCallHelper(TheFn, Ops, this);
76 CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
78 return CI;
92 CallInst *CI = createCallHelper(TheFn, Ops, this);
96 CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
98 return CI;
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java 140 public void test_codePointAt$CI() {
242 public void test_codePointBefore$CI() {
314 public void test_toCharsI$CI() {
    [all...]
StringBufferTest.java 455 public void test_getCharsII$CI() {
  /external/clang/include/clang/Lex/
PreprocessorLexer.h 97 PPConditionalInfo CI;
98 CI.IfLoc = DirectiveStart;
99 CI.WasSkipping = WasSkipping;
100 CI.FoundNonSkip = FoundNonSkip;
101 CI.FoundElse = FoundElse;
102 ConditionalStack.push_back(CI);
104 void pushConditionalLevel(const PPConditionalInfo &CI) {
105 ConditionalStack.push_back(CI);
111 bool popConditionalLevel(PPConditionalInfo &CI) {
113 CI = ConditionalStack.back()
    [all...]
  /external/llvm/lib/CodeGen/
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)
  /external/llvm/unittests/VMCore/
MetadataTest.cpp 83 ConstantInt *CI = ConstantInt::get(getGlobalContext(), APInt(8, 0));
87 V.push_back(CI);
103 EXPECT_EQ(CI, n1->getOperand(1));
ValueMapTest.cpp 82 typename ValueMap<TypeParam*, int>::const_iterator CI =
84 ASSERT_TRUE(CI != CVM.end());
85 EXPECT_EQ(this->BitcastV.get(), CI->first);
86 EXPECT_EQ(7, CI->second);
  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 245 CallInst *CI = cast<CallInst>(Declare->use_back());
246 CI->eraseFromParent();
254 CallInst *CI = cast<CallInst>(DbgVal->use_back());
255 CI->eraseFromParent();
304 CallInst *CI = cast<CallInst>(Declare->use_back());
305 Value *Arg1 = CI->getArgOperand(0);
306 Value *Arg2 = CI->getArgOperand(1);
307 assert(CI->use_empty() && "llvm.dbg intrinsic should have void result");
308 CI->eraseFromParent();
  /external/bluetooth/glib/glib/
gunidecomp.c 289 #define CI(Page, Char) \
295 (((Char >> 8) > (COMPOSE_TABLE_LAST)) ? 0 : CI((Char) >> 8, (Char) & 0xff))
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 331 llvm::CallInst *CI = Builder.CreateCall(Callee,
335 CI->setCallingConv(F->getCallingConv());
CodeGenAction.cpp 270 static raw_ostream *GetOutputStream(CompilerInstance &CI,
275 return CI.createDefaultOutputFile(false, InFile, "s");
277 return CI.createDefaultOutputFile(false, InFile, "ll");
279 return CI.createDefaultOutputFile(true, InFile, "bc");
284 return CI.createDefaultOutputFile(true, InFile, "o");
290 ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI,
293 llvm::OwningPtr<raw_ostream> OS(GetOutputStream(CI, InFile, BA));
298 new BackendConsumer(BA, CI.getDiagnostics(),
299 CI.getCodeGenOpts(), CI.getTargetOpts()
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 32 typedef constexpr int CI; // expected-error {{typedef cannot be constexpr}}
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 120 CompilerInvocation CI;
121 CompilerInvocation::CreateFromArgs(CI, Args.begin(), Args.end(), *Diags);
123 if (CI.getFrontendOpts().Inputs.empty()) {
128 if (!CI.getLangOpts().ObjC1)
131 arcmt::checkForManualIssues(CI,
132 CI.getFrontendOpts().Inputs[0].second,
133 CI.getFrontendOpts().Inputs[0].first,
139 CompilerInvocation CI;
140 remapper.applyMappings(CI);
141 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts()
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 98 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS)) {
100 const APInt &Val = CI->getValue();
112 return SelectInst::Create(ZI->getOperand(0), AddOne(CI), CI);
117 const APInt &RHSVal = CI->getValue();
292 Constant *CI =
295 ConstantExpr::getSExt(CI, I.getType()) == RHSC &&
296 WillNotOverflowSignedAdd(LHSConv->getOperand(0), CI)) {
299 CI, "addconv");
365 Constant *CI =
    [all...]

Completed in 967 milliseconds

1 2 3 4