Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:Relocate
(Results
1 - 12
of
12
) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
H
A
D
StatepointLowering.cpp
152
if (const auto *
Relocate
= dyn_cast<GCRelocateInst>(Val)) {
in findPreviousSpillSlot()
154
Builder.FuncInfo.StatepointSpillMaps[
Relocate
->getStatepoint()];
in findPreviousSpillSlot()
156
auto It = SpillMap.find(
Relocate
->getDerivedPtr());
in findPreviousSpillSlot()
607
for (const GCRelocateInst *
Relocate
: SI.GCRelocates) {
in lowerStatepointMetaArgs()
608
const Value *V =
Relocate
->getDerivedPtr();
in lowerStatepointMetaArgs()
629
if (
Relocate
->getParent() != StatepointInstr->getParent())
in lowerStatepointMetaArgs()
873
for (const GCRelocateInst *
Relocate
: ISP.getRelocates()) {
in LowerStatepoint()
874
SI.GCRelocates.push_back(
Relocate
);
in LowerStatepoint()
875
SI.Bases.push_back(
Relocate
->getBasePtr());
in LowerStatepoint()
876
SI.Ptrs.push_back(
Relocate
in LowerStatepoint()
991
visitGC
Relocate
(const GC
Relocate
Inst &
Relocate
)
visitGCRelocate()
argument
[all...]
H
A
D
SelectionDAGBuilder.h
781
void visitGCRelocate(const GCRelocateInst &
Relocate
);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H
A
D
Statepoint.h
415
if (auto *
Relocate
= dyn_cast<GCRelocateInst>(U))
in getRelocates()
416
Result.push_back(
Relocate
);
in getRelocates()
427
if (auto *
Relocate
= dyn_cast<GCRelocateInst>(LandingPadUser))
in getRelocates()
428
Result.push_back(
Relocate
);
in getRelocates()
/third_party/node/deps/v8/src/heap/cppgc/
H
A
D
compactor.cc
48
void
Relocate
(Address from, Address to);
137
void MovableReferences::
Relocate
(Address from, Address to) {
in Relocate()
function in cppgc::internal::__anon14593::MovableReferences
259
movable_references_.
Relocate
(header + sizeof(HeapObjectHeader),
in RelocateObject()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H
A
D
RewriteStatepointsForGC.cpp
1635
GCRelocateInst *
Relocate
= dyn_cast<GCRelocateInst>(U);
in insertRelocationStores()
local
1636
if (!
Relocate
)
in insertRelocationStores()
1639
Value *OriginalValue =
Relocate
->getDerivedPtr();
in insertRelocationStores()
1646
assert(
Relocate
->getNextNode() &&
in insertRelocationStores()
1648
IRBuilder<> Builder(
Relocate
->getNextNode());
in insertRelocationStores()
1650
Builder.CreateBitCast(
Relocate
,
in insertRelocationStores()
1652
suffixed_name_or(
Relocate
, ".casted", ""));
in insertRelocationStores()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H
A
D
AsmWriter.cpp
2451
void printGCRelocateComment(const GCRelocateInst &
Relocate
);
3631
void AssemblyWriter::printGCRelocateComment(const GCRelocateInst &
Relocate
) {
in printGCRelocateComment()
argument
3633
writeOperand(
Relocate
.getBasePtr(), false);
in printGCRelocateComment()
3635
writeOperand(
Relocate
.getDerivedPtr(), false);
in printGCRelocateComment()
3642
if (const auto *
Relocate
= dyn_cast<GCRelocateInst>(&V))
in printInfoComment()
3643
printGCRelocateComment(*
Relocate
);
in printInfoComment()
H
A
D
Verifier.cpp
4588
GCRelocateInst &
Relocate
= cast<GCRelocateInst>(Call);
in visitIntrinsicCall()
local
4589
Assert(
Relocate
.getDerivedPtr()->getType()->isPtrOrPtrVectorTy(),
in visitIntrinsicCall()
4593
auto DerivedType =
Relocate
.getDerivedPtr()->getType();
in visitIntrinsicCall()
/third_party/node/deps/v8/src/objects/
H
A
D
code.h
535
//
Relocate
the code by delta bytes. Called to signal that this code
537
void
Relocate
(intptr_t delta);
H
A
D
code.cc
158
void Code::
Relocate
(intptr_t delta) {
in Relocate()
function in v8::internal::Code
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H
A
D
CodeGenPrepare.cpp
1058
if (GCRelocateInst *
Relocate
= dyn_cast<GCRelocateInst>(U))
in simplifyOffsetableRelocate()
1060
AllRelocateCalls.push_back(
Relocate
);
in simplifyOffsetableRelocate()
/third_party/node/deps/v8/src/heap/
H
A
D
factory.cc
2379
new_code->
Relocate
(new_addr - old_addr);
in CopyCode()
H
A
D
mark-compact.cc
1633
code.
Relocate
(dst_addr - src_addr);
in RawMigrateObject()
Completed in 57 milliseconds