Searched refs:Def (Results 1 - 25 of 107) sorted by relevance

12345

/external/clang/test/Modules/Inputs/
H A Ddef.h11 @interface Def
/external/clang/lib/Lex/
H A DMacroInfo.cpp156 for (DefInfo Def = getDefinition(); Def; Def = Def.getPreviousDefinition()) {
157 if (Def.getLocation().isInvalid() || // For macros defined on the command line.
158 SM.isBeforeInTranslationUnit(Def.getLocation(), L))
159 return (!Def.isUndefined() ||
160 SM.isBeforeInTranslationUnit(L, Def.getUndefLocation()))
161 ? Def : DefInfo();
H A DPreprocessingRecord.cpp323 MacroDefinition *Def) {
324 MacroDefinitions[Macro] = Def;
379 else if (MacroDefinition *Def = findMacroDefinition(MI))
381 new (*this) MacroExpansion(Def, Range));
419 MacroDefinition *Def local
421 addPreprocessedEntity(Def);
422 MacroDefinitions[MI] = Def;
322 RegisterMacroDefinition(MacroInfo *Macro, MacroDefinition *Def) argument
/external/llvm/lib/IR/
H A DDominators.cpp96 // dominates - Return true if Def dominates a use in User. This performs
97 // the special checks necessary if Def and User are in the same basic block.
98 // Note that Def doesn't dominate a use in Def itself!
99 bool DominatorTree::dominates(const Instruction *Def, argument
102 const BasicBlock *DefBB = Def->getParent();
104 // Any unreachable use is dominated, even if Def == User.
113 if (Def == User)
120 if (isa<InvokeInst>(Def) || isa<PHINode>(User))
121 return dominates(Def, UseB
136 dominates(const Instruction *Def, const BasicBlock *UseBB) const argument
237 dominates(const Instruction *Def, const Use &U) const argument
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml9 | Def | Extern Constructor in type:token
H A Dtoplevel.ml18 | Token.Def ->
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml9 | Def | Extern Constructor in type:token
H A Dtoplevel.ml20 | Token.Def ->
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml9 | Def | Extern Constructor in type:token
/external/chromium/testing/gtest/test/
H A Dgtest_list_tests_unittest_.cc58 TEST(Abc, Def) {
/external/chromium_org/testing/gtest/test/
H A Dgtest_list_tests_unittest_.cc58 TEST(Abc, Def) {
/external/gtest/test/
H A Dgtest_list_tests_unittest_.cc58 TEST(Abc, Def) {
/external/llvm/lib/CodeGen/
H A DMachineCopyPropagation.cpp113 static bool isNopCopy(MachineInstr *CopyMI, unsigned Def, unsigned Src, argument
116 if (Def == SrcSrc)
118 if (TRI->isSubRegister(SrcSrc, Def)) {
120 unsigned SubIdx = TRI->getSubRegIndex(SrcSrc, Def);
141 DenseMap<unsigned, MachineInstr*> AvailCopyMap; // Def -> available copies map
142 DenseMap<unsigned, MachineInstr*> CopyMap; // Def -> copies map
143 SourceMap SrcMap; // Src -> Def map
151 unsigned Def = MI->getOperand(0).getReg(); local
154 if (TargetRegisterInfo::isVirtualRegister(Def) ||
162 if (!MRI->isReserved(Def)
[all...]
H A DLiveInterval.cpp52 VNInfo *LiveInterval::createDeadDef(SlotIndex Def, argument
54 assert(!Def.isDead() && "Cannot define a value at the dead slot");
55 iterator I = find(Def);
57 VNInfo *VNI = getNextValue(Def, VNInfoAllocator);
58 ranges.push_back(LiveRange(Def, Def.getDeadSlot(), VNI));
61 if (SlotIndex::isSameInstr(Def, I->start)) {
69 Def = std::min(Def, I->start);
70 if (Def !
162 SlotIndex Def = std::max(I->start, J->start); local
[all...]
H A DExecutionDepsFix.cpp119 int Def; member in struct:__anon21125::LiveReg
351 LiveRegs[rx].Def = -(1 << 20);
364 LiveRegs[rx].Def = -1;
382 LiveRegs[rx].Def = std::max(LiveRegs[rx].Def, fi->second[rx].Def);
422 LiveRegs[i].Def -= CurInstr;
475 unsigned Clearance = CurInstr - LiveRegs[rx].Def;
476 LiveRegs[rx].Def = CurInstr;
588 if (LR.Def <
[all...]
H A DLiveVariables.cpp199 MachineInstr *Def = PhysRegDef[SubReg]; local
200 if (!Def)
202 unsigned Dist = DistanceMap[Def];
205 LastDef = Def;
292 MachineInstr *Def = PhysRegDef[SubReg]; local
293 if (Def && Def != LastDef) {
296 unsigned Dist = DistanceMap[Def];
341 MachineInstr *Def = PhysRegDef[SubReg]; local
342 if (Def
724 const MachineInstr *Def = MRI.getVRegDef(Reg); local
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenSchedule.h61 CodeGenSchedRW(unsigned Idx, Record *Def) argument
62 : Index(Idx), TheDef(Def), IsAlias(false), IsVariadic(false) {
63 Name = Def->getName();
64 IsRead = Def->isSubClassOf("SchedRead");
65 HasVariants = Def->isSubClassOf("SchedVariant");
67 IsVariadic = Def->getValueAsBit("Variadic");
72 IsSequence = Def->isSubClassOf("WriteSequence");
302 CodeGenSchedRW &getSchedRW(Record *Def) {
303 bool IsRead = Def->isSubClassOf("SchedRead");
304 unsigned Idx = getSchedRWIdx(Def, IsRea
[all...]
/external/protobuf/gtest/test/
H A Dgtest_list_tests_unittest_.cc58 TEST(Abc, Def) {
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml9 | Def | Extern Constructor in type:token
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml9 | Def | Extern Constructor in type:token
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml9 | Def | Extern Constructor in type:token
/external/llvm/lib/Target/ARM/
H A DA15SDOptimizer.cpp210 MachineInstr *Def = Op->getParent(); local
214 if (DeadInstr.find(Def) != DeadInstr.end())
221 for (unsigned int j = 0; j < Def->getNumOperands(); ++j) {
222 MachineOperand &MODef = Def->getOperand(j);
234 if (&*II == Def)
245 DEBUG(dbgs() << "Deleting instruction " << *Def << "\n");
246 DeadInstr.insert(Def);
315 MachineInstr *Def = MRI->getVRegDef(OpReg); local
316 if (!Def)
318 if (Def
627 MachineInstr *Def = MRI->getVRegDef(*I); local
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZElimCompare.cpp40 : Def(false), Use(false), IndirectDef(false), IndirectUse(false) {}
43 Def |= Other.Def;
50 operator bool() const { return Def || Use; }
54 bool Def; member in struct:__anon21486::Reference
152 Ref.Def = true;
348 (!CCRefs.Def && adjustCCMasksForInstr(MI, Compare, CCUsers))) {
354 if (SrcRefs.Def)
357 if (CCRefs.Use && CCRefs.Def)
451 if (CCRefs.Def) {
[all...]
/external/valgrind/main/memcheck/tests/
H A Dorigin1-yes.stderr.exp57 Def 1 of 3
59 Def 2 of 3
61 Def 3 of 3
/external/clang/lib/Serialization/
H A DASTCommon.cpp103 if (const TagDecl *Def = cast<TagDecl>(DC)->getDefinition())
104 return Def;
131 if (const ObjCProtocolDecl *Def
133 return Def;

Completed in 576 milliseconds

12345