HomeSort by relevance Sort by last modified time
    Searched refs:IA (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/llvm/lib/IR/
DebugLoc.cpp 49 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
52 Scope = IA = 0;
62 IA = 0;
70 IA = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].second.get();
103 MDNode *Scope, *IA;
104 getScopeAndInlinedAt(Scope, IA, Ctx);
111 Scope, IA
184 int LLVMContextImpl::getOrAddScopeInlinedAtIdxEntry(MDNode *Scope, MDNode *IA,
187 int &Idx = ScopeInlinedAtIdx[std::make_pair(Scope, IA)];
202 DebugRecVH(IA, this, Idx)))
    [all...]
  /external/clang/test/Sema/
ms_class_layout.cpp 100 class IA {
102 virtual ~IA(){}
103 virtual void ia() = 0;
106 class ICh : public virtual IA {
109 virtual void ia(){} function in class:ICh
396 // CHECK: 0 | class IA
397 // CHECK-NEXT: 0 | (IA vftable pointer)
404 // CHECK-NEXT: 8 | (vtordisp for vbase IA)
405 // CHECK-NEXT: 12 | class IA (virtual base)
406 // CHECK-NEXT: 12 | (IA vftable pointer
    [all...]
  /build/target/product/
full_x86.mk 44 PRODUCT_MODEL := AOSP on IA Emulator
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 46 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
48 FunctionType *NewTy = IA->getFunctionType();
52 if (NewTy != IA->getFunctionType())
53 V = InlineAsm::get(NewTy, IA->getAsmString(), IA->getConstraintString(),
54 IA->hasSideEffects(), IA->isAlignStack());
  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 223 for (SuperRegClassIterator IA(RCA, this, true); IA.isValid(); ++IA) {
224 unsigned FinalA = composeSubRegIndices(IA.getSubReg(), SubA);
228 firstCommonClass(IA.getMask(), IB.getMask(), this);
243 *BestPreA = IA.getSubReg();
LexicalScopes.cpp 118 MDNode *IA = NULL;
119 DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext());
128 if (IA)
129 return InlinedLexicalScopeMap.lookup(DebugLoc::getFromDILocation(IA));
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 85 if (Attr *IA = this->getAttr<MSInheritanceAttr>())
86 return MSInheritanceAttrToModel(IA->getKind());
  /external/llvm/include/llvm/Support/
DebugLoc.h 87 void getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 490 int IA = PathA.size() - 1;
494 while (IA >= 0 && IB >=0) {
495 if (PathA[IA] == PathB[IB])
496 Ret = PathA[IA];
499 --IA;
  /build/target/board/generic_x86/
BoardConfig.mk 14 # The IA emulator (qemu) uses the Goldfish devices
  /external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp 67 IsAmbiguous IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because field 'IA' has a deleted copy constructor}}
p11.0x.move.cpp 59 IsAmbiguous IA;
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 100 MDNode *Scope, *IA;
101 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
103 if (IA) EnumerateMetadata(IA);
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 102 MDNode *Scope, *IA;
103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
105 if (IA) EnumerateMetadata(IA);
BitcodeWriter.cpp 803 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
804 Record.push_back(unsigned(IA->hasSideEffects()) |
805 unsigned(IA->isAlignStack()) << 1);
808 const std::string &AsmStr = IA->getAsmString();
814 const std::string &ConstraintStr = IA->getConstraintString();
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 102 MDNode *Scope, *IA;
103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
105 if (IA) EnumerateMetadata(IA);
BitcodeWriter.cpp 757 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
758 Record.push_back(unsigned(IA->hasSideEffects()) |
759 unsigned(IA->isAlignStack()) << 1);
762 const std::string &AsmStr = IA->getAsmString();
768 const std::string &ConstraintStr = IA->getConstraintString();
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 102 MDNode *Scope, *IA;
103 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
105 if (IA) EnumerateMetadata(IA);
BitcodeWriter.cpp 826 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
827 Record.push_back(unsigned(IA->hasSideEffects()) |
828 unsigned(IA->isAlignStack()) << 1 |
829 unsigned(IA->getDialect()&1) << 2);
832 const std::string &AsmStr = IA->getAsmString();
838 const std::string &ConstraintStr = IA->getConstraintString();
    [all...]
  /art/runtime/mirror/
object_test.cc 561 Class* IA = class_linker_->FindSystemClass("[I");
562 ASSERT_TRUE(IA != NULL);
576 EXPECT_FALSE(IA->IsAssignableFrom(OA));
577 EXPECT_FALSE(OA->IsAssignableFrom(IA));
578 EXPECT_TRUE(O->IsAssignableFrom(IA));
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 28 llvm::InlineAsm *IA =
32 CallInst::Create(IA, AsmArgs, "", BB);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 394 InlineAsm *IA =
399 CallInst::Create(IA, "", Inst);
  /external/valgrind/main/VEX/auxprogs/
genoffsets.c 168 GENOFFSET(S390X,s390x,IA);
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 193 if (InlineAsm *IA = dyn_cast<InlineAsm>(CI->getCalledValue())) {
195 InlineAsm::ConstraintInfoVector CIV = IA->ParseConstraints();

Completed in 483 milliseconds

1 2 3