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

1 2 3

  /external/llvm/lib/Target/Hexagon/
RDFDeadCode.cpp 71 void DeadCodeElimination::scanInstr(NodeAddr<InstrNode*> IA,
73 if (!DFG.IsCode<NodeAttrs::Stmt>(IA))
75 if (!isLiveInstr(NodeAddr<StmtNode*>(IA).Addr->getCode()))
77 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG)) {
85 NodeAddr<InstrNode*> IA = DA.Addr->getOwner(DFG);
86 for (NodeAddr<UseNode*> UA : IA.Addr->members_if(DFG.IsUse, DFG)) {
90 for (NodeAddr<DefNode*> TA : DFG.getRelatedRefs(IA, DA))
118 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG))
119 scanInstr(IA, WorkQ);
139 auto IsDead = [this] (NodeAddr<InstrNode*> IA) -> bool
    [all...]
RDFCopy.cpp 92 void CopyPropagation::updateMap(NodeAddr<InstrNode*> IA) {
94 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG))
112 R.second[IA.Id] = F->second.top()->Id;
122 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) {
123 if (DFG.IsCode<NodeAttrs::Stmt>(IA)) {
124 NodeAddr<StmtNode*> SA = IA;
130 updateMap(IA);
131 DFG.pushDefs(IA, DefM);
203 NodeAddr<InstrNode*> IA = UA.Addr->getOwner(DFG);
204 assert(DFG.IsCode<NodeAttrs::Stmt>(IA));
    [all...]
HexagonOptAddrMode.cpp 88 void updateMap(NodeAddr<InstrNode *> IA);
160 NodeAddr<InstrNode *> IA = UA.Addr->getOwner(*DFG);
162 RDefMap[OffsetRR][IA.Id] != OffsetRegRD)
165 MachineInstr *UseMI = NodeAddr<StmtNode *>(IA).Addr->getCode();
509 for (auto IA : BA.Addr->members(*DFG)) {
510 if (!DFG->IsCode<NodeAttrs::Stmt>(IA))
513 NodeAddr<StmtNode *> SA = IA;
520 DEBUG(dbgs() << "\t[InstrNode]: " << Print<NodeAddr<InstrNode *>>(IA, *DFG)
575 void HexagonOptAddrMode::updateMap(NodeAddr<InstrNode *> IA) {
577 for (NodeAddr<RefNode *> RA : IA.Addr->members(*DFG)
    [all...]
RDFLiveness.cpp 137 auto Block = [this] (NodeAddr<InstrNode*> IA) -> MachineBasicBlock* {
138 if (IA.Addr->getKind() == NodeAttrs::Stmt)
139 return NodeAddr<StmtNode*>(IA).Addr->getCode()->getParent();
140 assert(IA.Addr->getKind() == NodeAttrs::Phi);
141 NodeAddr<PhiNode*> PA = IA;
532 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) {
533 for (NodeAddr<RefNode*> RA : IA.Addr->members(DFG))
535 NBMap.insert(std::make_pair(IA.Id, BB));
732 bool Liveness::isRestricted(NodeAddr<InstrNode*> IA, NodeAddr<RefNode*> RA,
735 for (NodeAddr<RefNode*> TA = DFG.getNextShadow(IA, RA)
    [all...]
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 181 MSInheritanceAttr *IA = getAttr<MSInheritanceAttr>();
182 assert(IA && "Expected MSInheritanceAttr on the CXXRecordDecl!");
183 return IA->getSemanticSpelling();
  /external/clang/test/Layout/
ms-x86-vtordisp.cpp 419 struct IA {
422 struct __declspec(dllexport) IB : virtual IA {
431 // CHECK-NEXT: 4 | struct IA (virtual base)
432 // CHECK-NEXT: 4 | (IA vftable pointer)
439 // CHECK-X64-NEXT: 8 | struct IA (virtual base)
440 // CHECK-X64-NEXT: 8 | (IA vftable pointer)
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
ValueEnumerator.cpp 98 MDNode *Scope, *IA;
99 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
101 if (IA) EnumerateMetadata(IA);
BitcodeWriter.cpp 768 if (const InlineAsm *IA = dyn_cast<InlineAsm>(V)) {
769 Record.push_back(unsigned(IA->hasSideEffects()) |
770 unsigned(IA->isAlignStack()) << 1);
773 const std::string &AsmStr = IA->getAsmString();
779 const std::string &ConstraintStr = IA->getConstraintString();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
AddrModeMatcher.cpp 381 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal,
435 InlineAsm *IA = dyn_cast<InlineAsm>(CI->getCalledValue());
436 if (!IA) return true;
439 if (!IsOperandAMemoryOperand(CI, IA, I, TLI))
  /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
389 // CHECK: 0 | class IA
390 // CHECK-NEXT: 0 | (IA vftable pointer)
397 // CHECK-NEXT: 8 | (vtordisp for vbase IA)
398 // CHECK-NEXT: 12 | class IA (virtual base)
399 // CHECK-NEXT: 12 | (IA vftable pointer
    [all...]
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 132 const driver::InputAction *IA = cast<driver::InputAction>(A);
133 Inputs.push_back(IA->getInputArg().getSpelling());
  /external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp 68 IsAmbiguous IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because field 'IA' has a deleted copy constructor}}
p11.0x.move.cpp 61 // 'IA' is deleted, but we select the copy constructor (we ignore the move
63 IsAmbiguous IA; // expected-note{{deleted because field 'IA' has a deleted move constructor}}
  /external/guice/extensions/grapher/test/com/google/inject/grapher/
AbstractInjectorGrapherTest.java 91 private static interface IA {}
92 private static class A implements IA {
95 private static class A2 implements IA {
116 iaNode = new InterfaceNode(NodeId.newTypeId(Key.get(IA.class)), null);
117 iaAnnNode = new InterfaceNode(NodeId.newTypeId(Key.get(IA.class, Ann.class)), null);
126 bind(IA.class).to(A.class);
127 bind(IA.class).annotatedWith(Ann.class).to(A.class);
149 bind(IA.class).toProvider(wrapper.value);
155 Node a2ProviderNode = new InstanceNode(NodeId.newInstanceId(Key.get(IA.class)), null,
172 bind(IA.class).to(A.class)
    [all...]
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 434 int IA = PathA.size() - 1;
438 while (IA >= 0 && IB >= 0) {
439 if (PathA[IA] == PathB[IB])
440 Ret = PathA[IA];
443 --IA;
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 454 InlineAsm *IA = InlineAsm::get(
459 CallInst::Create(IA, "", Inst);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
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/swiftshader/third_party/subzero/src/
IceAssemblerARM32.h 696 IA = (0 | 4 | 0) << 21, // increment after
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
ReflectionBenchmark.java 229 interface IA {
232 interface IB extends IA {
  /art/runtime/mirror/
object_test.cc 634 Class* IA = class_linker_->FindSystemClass(soa.Self(), "[I");
635 ASSERT_TRUE(IA != nullptr);
649 EXPECT_FALSE(IA->IsAssignableFrom(OA));
650 EXPECT_FALSE(OA->IsAssignableFrom(IA));
651 EXPECT_TRUE(O->IsAssignableFrom(IA));
  /external/llvm/lib/Target/Mips/
Mips16HardFloat.cpp 49 llvm::InlineAsm *IA =
52 CallInst::Create(IA, AsmArgs, "", BB);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 452 const DILocation *IA = Scope->getInlinedAt();
454 getOrCreateSourceID(IA->getFilename(), IA->getDirectory()));
455 addUInt(*ScopeDIE, dwarf::DW_AT_call_line, None, IA->getLine());
456 if (IA->getDiscriminator())
458 IA->getDiscriminator());
    [all...]
DwarfDebug.h 65 const DILocation *IA; /// Inlined at location.
77 DbgVariable(const DILocalVariable *V, const DILocation *IA)
78 : Var(V), IA(IA) {}
100 assert(IA == DbgValue->getDebugLoc()->getInlinedAt() && "Wrong inlined-at");
110 const DILocation *getInlinedAt() const { return IA; }
128 assert(V.IA == IA && "conflicting inlined-at location");
  /external/swiftshader/third_party/subzero/src/DartARM32/
assembler_arm.h 238 IA = (0|4|0) << 21, // increment after
    [all...]
  /system/core/libpixelflinger/codeflinger/
ARMAssemblerInterface.h 47 IB, IA, DB, DA

Completed in 1037 milliseconds

1 2 3