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

1 2 3 4

  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 102 CallInst *CI;
108 bool fold(CallInst *CI, const TargetData *TD);
  /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/Frontend/
ASTMerge.cpp 19 ASTConsumer *ASTMergeAction::CreateASTConsumer(CompilerInstance &CI,
21 return AdaptedAction->CreateASTConsumer(CI, InFile);
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI,
30 AdaptedAction->setCompilerInstance(&CI);
31 return AdaptedAction->BeginSourceFileAction(CI, Filename);
35 CompilerInstance &CI = getCompilerInstance();
36 CI.getDiagnostics().getClient()->BeginSourceFile(
37 CI.getASTContext().getLangOpts());
38 CI.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
39 &CI.getASTContext())
    [all...]
FrontendActions.cpp 35 ASTConsumer *InitOnlyAction::CreateASTConsumer(CompilerInstance &CI,
47 ASTConsumer *ASTPrintAction::CreateASTConsumer(CompilerInstance &CI,
49 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
54 ASTConsumer *ASTDumpAction::CreateASTConsumer(CompilerInstance &CI,
59 ASTConsumer *ASTDumpXMLAction::CreateASTConsumer(CompilerInstance &CI,
62 if (CI.getFrontendOpts().OutputFile.empty())
65 OS = CI.createDefaultOutputFile(false, InFile);
70 ASTConsumer *ASTViewAction::CreateASTConsumer(CompilerInstance &CI,
75 ASTConsumer *DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI,
80 ASTConsumer *GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI,
    [all...]
FrontendAction.cpp 125 ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
127 ASTConsumer* Consumer = CreateASTConsumer(CI, InFile);
131 if (CI.getFrontendOpts().AddPluginActions.size() == 0)
138 for (size_t i = 0, e = CI.getFrontendOpts().AddPluginActions.size();
146 if (it->getName() == CI.getFrontendOpts().AddPluginActions[i]) {
149 if (P->ParseArgs(CI, CI.getFrontendOpts().AddPluginArgs[i]))
150 Consumers.push_back(c->CreateASTConsumer(CI, InFile));
158 bool FrontendAction::BeginSourceFile(CompilerInstance &CI,
163 setCompilerInstance(&CI);
    [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();
110 CallInst *CI = dyn_cast<CallInst>(CmpI->getOperand(0));
111 if (!CI)
114 Function *Fn = CI->getCalledFunction();
118 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 98 PPConditionalInfo CI;
99 CI.IfLoc = DirectiveStart;
100 CI.WasSkipping = WasSkipping;
101 CI.FoundNonSkip = FoundNonSkip;
102 CI.FoundElse = FoundElse;
103 ConditionalStack.push_back(CI);
105 void pushConditionalLevel(const PPConditionalInfo &CI) {
106 ConditionalStack.push_back(CI);
112 bool popConditionalLevel(PPConditionalInfo &CI) {
114 CI = ConditionalStack.back()
    [all...]
  /external/clang/lib/Rewrite/
FrontendActions.cpp 33 ASTConsumer *HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI,
35 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
36 return CreateHTMLPrinter(OS, CI.getPreprocessor());
43 ASTConsumer *FixItAction::CreateASTConsumer(CompilerInstance &CI,
89 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI,
99 Rewriter.reset(new FixItRewriter(CI.getDiagnostics(), CI.getSourceManager(),
100 CI.getLangOpts(), FixItOpts.get()));
109 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) {
114 const FrontendOptions &FEOpts = CI.getFrontendOpts()
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 133 InlineAsm::ConstraintInfo &CI = CInfos[i];
134 for (unsigned j = 0, ee = CI.Codes.size(); j != ee; ++j) {
135 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]);
141 if (CI.isIndirect)
DwarfEHPrepare.cpp 145 CallInst *CI = CallInst::Create(RewindFunction, ExnObj, "", UnwindBB);
146 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
172 CallInst *CI = CallInst::Create(RewindFunction, PN, "", UnwindBB);
173 CI->setCallingConv(TLI->getLibcallCallingConv(RTLIB::UNWIND_RESUME));
MachineCopyPropagation.cpp 158 DenseMap<unsigned, MachineInstr*>::iterator CI = AvailCopyMap.find(Src);
159 if (CI != AvailCopyMap.end()) {
160 MachineInstr *CopyMI = CI->second;
191 CI = CopyMap.find(Src);
192 if (CI != CopyMap.end())
193 MaybeDeadCopies.remove(CI->second);
195 CI = CopyMap.find(*AS);
196 if (CI != CopyMap.end())
197 MaybeDeadCopies.remove(CI->second);
259 DenseMap<unsigned, MachineInstr*>::iterator CI = CopyMap.find(Reg)
    [all...]
  /external/clang/test/Sema/
c89.c 102 typedef const int CI;
104 const CI mine1[5][5]; /* expected-warning {{duplicate 'const' declaration specifier}} */
106 typedef CI array_of_CI[5];
109 typedef CI *array_of_pointer_to_CI[5];
  /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/llvm/unittests/VMCore/
MetadataTest.cpp 83 ConstantInt *CI = ConstantInt::get(getGlobalContext(), APInt(8, 0));
87 V.push_back(CI);
110 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/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 427 llvm::CallInst *CI = Builder.CreateCall(Callee,
431 CI->setCallingConv(F->getCallingConv());
  /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 if (!CompilerInvocation::CreateFromArgs(CI, Args.begin(), Args.end(), *Diags))
124 if (CI.getFrontendOpts().Inputs.empty()) {
129 if (!CI.getLangOpts()->ObjC1)
132 arcmt::checkForManualIssues(CI, CI.getFrontendOpts().Inputs[0],

Completed in 1323 milliseconds

1 2 3 4