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:iread
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/be/
H
A
D
lower.h
88
BaseNode *LowerIread(IreadNode &
iread
)
in LowerIread()
argument
90
/* use PTY_u8 for boolean type in dread/
iread
*/
in LowerIread()
91
if (
iread
.GetPrimType() == PTY_u1) {
in LowerIread()
92
iread
.SetPrimType(PTY_u8);
in LowerIread()
94
CHECK_FATAL(
iread
.GetFieldID() == 0, "fieldID must be 0");
in LowerIread()
95
return &
iread
;
in LowerIread()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
H
A
D
mir_lower.cpp
462
IreadNode *
iread
= static_cast<IreadNode *>(x);
in FuncTypeFromFuncPtrExpr()
local
463
MIRPtrType *ptrType = static_cast<MIRPtrType *>(
iread
->GetType());
in FuncTypeFromFuncPtrExpr()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
H
A
D
lower.cpp
741
/* use PTY_u8 for boolean type in dread/
iread
*/
in LowerDread()
778
//
iread
<* u32> 0 (regread u64 %addr)
in LowerDreadToThreadLocal()
781
auto
iread
= mirModule.GetMIRBuilder()->CreateExprIread(*symbol->GetType(), *ptrType, dread.GetFieldID(), addr);
in LowerDreadToThreadLocal()
local
782
result =
iread
;
in LowerDreadToThreadLocal()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H
A
D
isel.cpp
565
auto &
iread
= static_cast<const IreadNode &>(node);
in GetFieldIdAndMirTypeFromMirNode()
local
566
fieldId =
iread
.GetFieldID();
in GetFieldIdAndMirTypeFromMirNode()
567
MIRType *type = GlobalTables::GetTypeTable().GetTypeFromTyIdx(
iread
.GetTyIdx());
in GetFieldIdAndMirTypeFromMirNode()
569
DEBUG_ASSERT(pointerType != nullptr, "expect a pointer type at
iread
node");
in GetFieldIdAndMirTypeFromMirNode()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
H
A
D
constantfold.cpp
1336
// check if truncation is redundant due to dread or
iread
having same effect
1350
IreadNode *
iread
= static_cast<IreadNode*>(opnd);
in ExtractbitsRedundant()
local
1352
dynamic_cast<MIRPtrType*>(GlobalTables::GetTypeTable().GetTypeFromTyIdx(
iread
->GetTyIdx()));
in ExtractbitsRedundant()
1429
// If the high level type of iaddrof/
iread
doesn't match
in FoldIread()
Completed in 11 milliseconds