HomeSort by relevance Sort by last modified time
    Searched refs:DIE (Results 101 - 121 of 121) sorted by null

1 2 3 45

  /prebuilts/go/linux-x86/src/cmd/internal/dwarf/
dwarf_defs.go 275 DW_OP_call2 = 0x98 // 1 2-byte offset of DIE
276 DW_OP_call4 = 0x99 // 1 4-byte offset of DIE
277 DW_OP_call_ref = 0x9a // 1 4- or 8-byte offset of DIE
  /prebuilts/go/linux-x86/src/debug/dwarf/
const.go 437 opCall2 = 0x98 /* 2-byte offset of DIE */
438 opCall4 = 0x99 /* 4-byte offset of DIE */
439 opCallRef = 0x9A /* 4- or 8- byte offset of DIE */
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 19 #include "llvm/CodeGen/DIE.h"
249 void AsmPrinter::emitDwarfDIE(const DIE &Die) const {
252 OutStreamer->AddComment("Abbrev [" + Twine(Die.getAbbrevNumber()) + "] 0x" +
253 Twine::utohexstr(Die.getOffset()) + ":0x" +
254 Twine::utohexstr(Die.getSize()) + " " +
255 dwarf::TagString(Die.getTag()));
256 EmitULEB128(Die.getAbbrevNumber());
258 // Emit the DIE attribute values.
259 for (const auto &V : Die.values())
    [all...]
DwarfAccelTable.cpp 20 #include "llvm/CodeGen/DIE.h"
33 void DwarfAccelTable::AddName(DwarfStringPoolEntryRef Name, const DIE *die,
36 // If the string is in the list already then add this die to the list
41 DIEs.Values.push_back(new (Allocator) HashDataContents(die, Flags));
68 return A->Die->getOffset() < B->Die->getOffset();
126 Asm->OutStreamer->AddComment("HeaderData Die Offset Base");
223 // Emit the DIE offset
224 DwarfCompileUnit *CU = D->lookupUnit(HD->Die->getUnit())
    [all...]
  /external/vboot_reference/futility/
cmd_create.c 339 DIE;
cmd_sign.c 179 DIE;
233 DIE;
878 DIE;
993 DIE;
futility.c 342 DIE;
cmd_show.c 312 DIE;
669 DIE;
  /external/replicaisland/src/com/replica/replicaisland/
AnimationComponent.java 293 parentObject.getPosition().y + 10.0f) == HotSpotSystem.HotSpotType.DIE) {
PlayerComponent.java 272 // we fell off the bottom of the screen, die.
284 parentObject.getPosition().y + 10.0f) == HotSpotSystem.HotSpotType.DIE) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/
genmk.c 15 #define DIE return 0;
18 #define DIE return 1;
382 if ( argc == 1 ) { help(); DIE; }
  /external/clang/lib/AST/
ASTImporter.cpp     [all...]
Expr.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 197 ComplexPairTy VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
199 return Visit(DIE->getExpr());
    [all...]
CGDecl.cpp 671 if (const CXXDefaultInitExpr *DIE = dyn_cast<CXXDefaultInitExpr>(init))
672 init = DIE->getExpr();
    [all...]
CGExprAgg.cpp 172 void VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
174 Visit(DIE->getExpr());
    [all...]
CGExprConstant.cpp 761 llvm::Constant *VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
764 return Visit(DIE->getExpr());
    [all...]
CGExprScalar.cpp 393 Value *VisitCXXDefaultInitExpr(CXXDefaultInitExpr *DIE) {
395 return Visit(DIE->getExpr());
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
dwarf.go 101 func newattr(die *dwarf.DWDie, attr uint16, cls int, value int64, data interface{}) *dwarf.DWAttr {
103 a.Link = die.Attr
104 die.Attr = a
112 // Each DIE (except the root ones) has at least 1 attribute: its
115 func getattr(die *dwarf.DWDie, attr uint16) *dwarf.DWAttr {
116 if die.Attr.Atr == attr {
117 return die.Attr
120 a := die.Attr
125 b.Link = die.Attr
126 die.Attr =
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
dwarf.go 101 func newattr(die *dwarf.DWDie, attr uint16, cls int, value int64, data interface{}) *dwarf.DWAttr {
103 a.Link = die.Attr
104 die.Attr = a
112 // Each DIE (except the root ones) has at least 1 attribute: its
115 func getattr(die *dwarf.DWDie, attr uint16) *dwarf.DWAttr {
116 if die.Attr.Atr == attr {
117 return die.Attr
120 a := die.Attr
125 b.Link = die.Attr
126 die.Attr =
    [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]

Completed in 1510 milliseconds

1 2 3 45