OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NewAtom
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/MC/
MCModule.cpp
21
void MCModule::map(MCAtom *
NewAtom
) {
22
uint64_t Begin =
NewAtom
->Begin;
24
assert(Begin <=
NewAtom
->End && "Creating MCAtom with endpoints reversed?");
29
assert((I == atom_end() || (*I)->getBeginAddr() >
NewAtom
->End)
33
Atoms.insert(I,
NewAtom
);
37
MCTextAtom *
NewAtom
= new MCTextAtom(this, Begin, End);
38
map(
NewAtom
);
39
return
NewAtom
;
43
MCDataAtom *
NewAtom
= new MCDataAtom(this, Begin, End);
44
map(
NewAtom
);
[
all
...]
MCObjectDisassembler.cpp
151
MCTextAtom *
NewAtom
= TA->split(*SI);
152
BBInfos[
NewAtom
->getBeginAddr()].Atom =
NewAtom
;
155
NewAtom
->setName((BBName + ":" + utohexstr(*SI)).str());
Completed in 36 milliseconds