Searched refs:Start (Results 126 - 150 of 179) sorted by relevance

12345678

/freebsd-10.2-release/contrib/llvm/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp588 SlotIndex Start = LI.beginIndex(); local
589 if (Start.isBlock())
598 MachineBasicBlock *MBB1 = Indexes->getMBBFromIndex(Start);
665 // Start with a binary search of RegMaskSlots to find a starting point.
/freebsd-10.2-release/sys/boot/i386/btx/btx/
H A Dbtx.S23 .set MEM_BTX,0x1000 # Start of BTX memory
32 .set MEM_USR,0xa000 # Start of user memory
116 start: # Start of code
/freebsd-10.2-release/sys/boot/pc98/btx/btx/
H A Dbtx.S23 .set MEM_BTX,0x1000 # Start of BTX memory
32 .set MEM_USR,0xa000 # Start of user memory
112 start: # Start of code
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp225 BasicBlock::iterator &Start,
692 BasicBlock::iterator Start = BB.getFirstInsertionPt(); local
706 ShouldContinue = getCandidatePairs(BB, Start, CandidatePairs,
1166 BasicBlock::iterator &Start,
1173 if (Start == E) return false;
1176 for (BasicBlock::iterator I = Start++; I != E; ++I) {
1177 if (I == Start) IAfterStart = true;
1190 if (J == Start) JAfterStart = true;
1233 Start = llvm::next(J);
1165 getCandidatePairs(BasicBlock &BB, BasicBlock::iterator &Start, DenseMap<Value *, std::vector<Value *> > &CandidatePairs, DenseSet<ValuePair> &FixedOrderPairs, DenseMap<ValuePair, int> &CandidatePairCostSavings, std::vector<Value *> &PairableInsts, bool NonPow2Len) argument
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h497 bool matchesFirstInRange(const MatcherT &Matcher, IteratorT Start, argument
500 for (IteratorT I = Start; I != End; ++I) {
513 bool matchesFirstInPointerRange(const MatcherT &Matcher, IteratorT Start, argument
516 for (IteratorT I = Start; I != End; ++I) {
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp503 MCSymbol *Start = getLabelBeforeInsn(RI->first); local
507 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
510 TheCU->addLabelAddress(ScopeDIE, dwarf::DW_AT_low_pc, Start);
557 llvm_unreachable("Unexpected Start and End labels for an inlined scope!");
1964 // Start the size with the size of abbreviation code.
2227 // Start the debug abbrev section.
2466 // Start the dwarf pubnames section.
2532 // Start the dwarf pubtypes section.
2604 // Start the dwarf str section.
2645 // Start th
2795 const MCSymbol *Start, *End; member in struct:ArangeSpan
[all...]
H A DDwarfCompileUnit.cpp508 /// addComplexAddress - Start with the address based on the location provided,
600 /// addBlockByrefAddress - Start with the address based on the location
792 int Start = (LittleEndian ? 0 : NumBytes - 1); local
796 for (; Start != Stop; Start += Incr)
797 addUInt(Block, dwarf::DW_FORM_data1, (unsigned char)0xFF & FltPtr[Start]);
1597 // 1) Start with a constNu of the appropriate pointer size
/freebsd-10.2-release/contrib/llvm/lib/MC/
H A DMCDwarf.cpp103 // This helper routine returns an expression of End - Start + IntVal .
106 const MCSymbol &Start,
113 MCSymbolRefExpr::Create(&Start, Variant, MCOS.getContext());
624 const MCExpr *Start = MCSymbolRefExpr::Create( local
626 MCOS->EmitAbsValue(Start, AddrSize);
1162 // Range Start
1165 if (VerboseAsm) Streamer.AddComment("Range Start");
105 MakeStartMinusEndExpr(const MCStreamer &MCOS, const MCSymbol &Start, const MCSymbol &End, int IntVal) argument
/freebsd-10.2-release/contrib/llvm/lib/MC/MCParser/
H A DAsmParser.cpp700 const char *Start = getTok().getLoc().getPointer(); local
706 return StringRef(Start, End - Start);
710 const char *Start = getTok().getLoc().getPointer(); local
717 return StringRef(Start, End - Start);
4187 SMLoc Start = SMLoc::getFromPointer(SymName.data()); local
4193 AsmStrRewrites.push_back(AsmRewrite(AOK_Output, Start, SymName.size()));
4198 AsmStrRewrites.push_back(AsmRewrite(AOK_Input, Start, SymName.size()));
4251 assert(Loc >= AsmStart && "Expected Loc to be at or after Start!");
[all...]
/freebsd-10.2-release/contrib/amd/include/
H A Dam_utils.h205 Start, enumerator in enum:__anon100
/freebsd-10.2-release/sys/boot/i386/zfsboot/
H A Dzfsldr.S157 jmp start+MEM_JMP-MEM_ORG # Start BTX
/freebsd-10.2-release/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp304 const char *Start = CurPtr; local
313 StrVal.assign(Start, CurPtr-1);
/freebsd-10.2-release/contrib/gcc/config/i386/
H A Dsol2-c1.asm50 ! Start creating the initial frame by pushing a NULL value for the return
/freebsd-10.2-release/contrib/llvm/include/llvm/ADT/
H A DIntervalMap.h1531 bool canCoalesceLeft(KeyT Start, ValT x);
1607 /// @param Start New start of current interval.
1612 iterator::canCoalesceLeft(KeyT Start, ValT Value) {
1619 Traits::adjacent(Node.stop(i-1), Start);
1624 return Node.value(i-1) == Value && Traits::adjacent(Node.stop(i-1), Start);
1628 return Node.value(i) == Value && Traits::adjacent(Node.stop(i), Start);
/freebsd-10.2-release/contrib/llvm/include/llvm/TableGen/
H A DRecord.h1746 const char *Start = Rec.data(); local
1747 const char *Curr = Start;
1752 Parts.push_back(std::make_pair(isDigitPart, StringRef(Start, Len)));
1754 Start = &Curr[I];
1759 Parts.push_back(std::make_pair(isDigitPart, StringRef(Start, Len)));
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Lex/
H A DLexer.cpp95 // Start of the file is a start of line.
1561 /// isHexaLiteral - Return true if Start points to a hex constant.
1563 bool Lexer::isHexaLiteral(const char *Start, const LangOptions &LangOpts) { argument
1565 char C1 = Lexer::getCharAndSizeNoWarn(Start, Size, LangOpts);
1568 char C2 = Lexer::getCharAndSizeNoWarn(Start + Size, Size, LangOpts);
2843 // Start a new token.
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp1445 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Start location
1504 uint64_t Start = Out.tell(); (void)Start;
1542 assert(Out.tell() - Start == DataLen && "Wrong data length");
2747 uint64_t Start = Out.tell(); local
2748 assert((Start >> 32) == 0 && "Selector key offset too large");
2749 Writer.SetSelectorOffset(Sel, Start);
2761 uint64_t Start = Out.tell(); (void)Start; local
2793 assert(Out.tell() - Start
3369 uint64_t Start = Out.tell(); (void)Start; local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h711 /// EnterScope - Start a new scope.
1425 ExprResult ParseCXXNewExpression(bool UseGlobal, SourceLocation Start);
1427 SourceLocation Start);
2019 ExprResult ParseAlignArgument(SourceLocation Start,
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp1522 // For unit stride, IVCount = Start + BECount with 2's complement overflow.
1523 // For non-zero Start, compute IVCount here.
1613 const APInt &Start = cast<SCEVConstant>(ARStart)->getValue()->getValue(); local
1625 NewLimit = Start - Count;
1627 NewLimit = Start + Count;
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseExprCXX.cpp2431 /// been already parsed. If the :: was present, "UseGlobal" is true and "Start"
2432 /// is its location. Otherwise, "Start" is the location of the 'new' token.
2456 Parser::ParseCXXNewExpression(bool UseGlobal, SourceLocation Start) { argument
2561 return Actions.ActOnCXXNew(Start, UseGlobal, PlacementLParen,
2643 /// and "Start" is its location. Otherwise, "Start" is the location of the
2650 Parser::ParseCXXDeleteExpression(bool UseGlobal, SourceLocation Start) { argument
2678 return Actions.ActOnCXXDelete(Start, UseGlobal, ArrayDelete, Operand.take());
/freebsd-10.2-release/contrib/llvm/include/llvm/Analysis/
H A DScalarEvolution.h616 const SCEV *getAddRecExpr(const SCEV *Start, const SCEV *Step,
/freebsd-10.2-release/contrib/amd/libamu/
H A Dxutil.c852 if (amd_state != Start) {
/freebsd-10.2-release/sys/contrib/dev/acpica/include/
H A Daclocal.h689 UINT8 *AmlPredicateStart; /* Start of if/while predicate */
899 #define ACPI_DASM_LNOT_PREFIX 0x08 /* Start of a LNotEqual (etc.) pair of opcodes */
1153 UINT16 Start; member in struct:acpi_port_info
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprAgg.cpp330 // Start pointer.
341 LValue Start = CGF.EmitLValueForFieldInitialization(DestLV, *Field); local
346 CGF.EmitStoreThroughLValue(RValue::get(ArrayStart), Start); local
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/AST/
H A DDeclBase.cpp53 void *Start = Context.Allocate(Size + 8); local
54 void *Result = (char*)Start + 8;

Completed in 440 milliseconds

12345678