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

  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.h 109 std::vector<DIELoc *> DIELocs;
253 /// getDIELoc - Returns a fresh newly allocated DIELoc.
254 DIELoc *getDIELoc() { return new (DIEValueAllocator) DIELoc(); }
275 void addSInt(DIELoc &Die, Optional<dwarf::Form> Form, int64_t Integer);
285 void addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr);
291 void addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label);
307 void addOpAddress(DIELoc &Die, const MCSymbol *Label);
326 void addBlock(DIE &Die, dwarf::Attribute Attribute, DIELoc *Block);
362 void addRegisterOp(DIELoc &TheDie, unsigned Reg)
    [all...]
DwarfUnit.cpp 75 DIELocs[j]->~DIELoc();
197 void DwarfUnit::addSInt(DIELoc &Die, Optional<dwarf::Form> Form,
237 void DwarfUnit::addExpr(DIELoc &Die, dwarf::Form Form, const MCExpr *Expr) {
260 void DwarfUnit::addLabel(DIELoc &Die, dwarf::Form Form, const MCSymbol *Label) {
331 void DwarfUnit::addOpAddress(DIELoc &Die, const MCSymbol *Sym) {
403 void DwarfUnit::addBlock(DIE &Die, dwarf::Attribute Attribute, DIELoc *Loc) {
494 void DwarfUnit::addRegisterOp(DIELoc &TheDie, unsigned Reg) {
539 void DwarfUnit::addRegisterOffset(DIELoc &TheDie, unsigned Reg,
560 DIELoc *Loc = new (DIEValueAllocator) DIELoc();
    [all...]
DIEHash.cpp 354 } else if (isa<DIELoc>(Value)) {
355 addULEB128(cast<DIELoc>(Value)->ComputeSize(AP));
356 hashBlockData(cast<DIELoc>(Value)->getValues());
DIE.cpp 433 // DIELoc Implementation
438 unsigned DIELoc::ComputeSize(AsmPrinter *AP) const {
450 void DIELoc::EmitValue(AsmPrinter *Asm, dwarf::Form Form) const {
468 unsigned DIELoc::SizeOf(AsmPrinter *AP, dwarf::Form Form) const {
481 void DIELoc::print(raw_ostream &O) const {
DIE.h 473 /// DIELoc - Represents an expression location.
475 class DIELoc : public DIEValue, public DIE {
478 DIELoc() : DIEValue(isLoc), Size(0) {}

Completed in 260 milliseconds