Home
last modified time | relevance | path

Searched refs:Assemblr (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceAssembler.cpp33 static uintptr_t NewContents(Assembler &Assemblr, intptr_t Capacity) { in NewContents() argument
34 uintptr_t Result = Assemblr.allocateBytes(Capacity); in NewContents()
50 if (!Assemblr.getPreliminary()) in installFixup()
57 new (Assemblr.allocate<AssemblerFixup>()) AssemblerFixup(); in createFixup()
66 AssemblerTextFixup *F = new (Assemblr.allocate<AssemblerTextFixup>()) in createTextFixup()
97 AssemblerBuffer::AssemblerBuffer(Assembler &Asm) : Assemblr(Asm) { in AssemblerBuffer()
100 Contents = NewContents(Assemblr, kInitialBufferCapacity); in AssemblerBuffer()
124 uintptr_t new_contents = NewContents(Assemblr, new_capacity); in extendCapacity()
DIceAssembler.h215 Assembler &Assemblr; variable