HomeSort by relevance Sort by last modified time
    Searched refs:BeginLabel (Results 1 - 11 of 11) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 311 MCSymbol *BeginLabel, MCSymbol *EndLabel);
396 void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned Site) {
397 CallSiteMap[BeginLabel] = Site;
401 unsigned getCallSiteBeginLabel(MCSymbol *BeginLabel) {
402 assert(hasCallSiteBeginLabel(BeginLabel) &&
404 return CallSiteMap[BeginLabel];
409 bool hasCallSiteBeginLabel(MCSymbol *BeginLabel) {
410 return CallSiteMap[BeginLabel] != 0;
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 200 MCSymbol *BeginLabel = LandingPad->BeginLabels[j];
201 assert(!PadMap.count(BeginLabel) && "Duplicate landing pad labels!");
203 PadMap[BeginLabel] = P;
243 MCSymbol *BeginLabel = MI.getOperand(0).getMCSymbol();
244 if (BeginLabel == LastLabel)
248 RangeMapType::const_iterator L = PadMap.find(BeginLabel);
255 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
263 CallSiteEntry Site = { LastLabel, BeginLabel, nullptr, 0 };
269 assert(BeginLabel && LastLabel && "Invalid landing pad!");
277 BeginLabel,
    [all...]
EHStreamer.h 64 // The 'try-range' is BeginLabel .. EndLabel.
65 MCSymbol *BeginLabel; // Null indicates the start of the function.
Win64Exception.cpp 231 createImageRel32(CSE.BeginLabel ? CSE.BeginLabel : EHFuncBeginSym);
321 MCSymbol *BeginLabel = MI.getOperand(0).getMCSymbol();
322 if (BeginLabel == LastLabel)
326 RangeMapType::const_iterator L = PadMap.find(BeginLabel);
333 assert(BeginLabel == LandingPad->BeginLabels[P.RangeIndex] &&
344 std::make_pair(BeginLabel, LandingPad->WinEHState));
DwarfDebug.cpp     [all...]
  /external/v8/src/compiler/
control-builders.h 103 void BeginLabel(int index, Node* condition);
control-builders.cc 85 void SwitchBuilder::BeginLabel(int index, Node* condition) {
ast-graph-builder.cc 556 compare_switch.BeginLabel(i, condition);
    [all...]
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 395 MCSymbol *BeginLabel, MCSymbol *EndLabel) {
397 LP.BeginLabels.push_back(BeginLabel);
490 MCSymbol *BeginLabel = LandingPad.BeginLabels[j];
492 if ((BeginLabel->isDefined() ||
493 (LPMap && (*LPMap)[BeginLabel] != 0)) &&
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 657 MCSymbol *BeginLabel = Asm->createTempSymbol("Barange");
670 Asm->EmitLabelDifference(EndLabel, BeginLabel, 4); // Arange length
671 Asm->OutStreamer.EmitLabel(BeginLabel);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 351 milliseconds