Home
last modified time | relevance | path

Searched refs:FunctionId (Results 1 – 25 of 91) sorted by relevance

1234

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DFunctionId.h18 class FunctionId {
20 FunctionId() : Index(0) {} in FunctionId() function
22 explicit FunctionId(uint32_t Index) : Index(Index) {} in FunctionId() function
30 inline bool operator==(const FunctionId &A, const FunctionId &B) {
34 inline bool operator!=(const FunctionId &A, const FunctionId &B) {
38 inline bool operator<(const FunctionId &A, const FunctionId &B) {
42 inline bool operator<=(const FunctionId &A, const FunctionId &B) {
46 inline bool operator>(const FunctionId &A, const FunctionId &B) {
50 inline bool operator>=(const FunctionId &A, const FunctionId &B) {
/external/llvm/include/llvm/DebugInfo/CodeView/
DFunctionId.h18 class FunctionId {
20 FunctionId() : Index(0) {} in FunctionId() function
22 explicit FunctionId(uint32_t Index) : Index(Index) {} in FunctionId() function
30 inline bool operator==(const FunctionId &A, const FunctionId &B) {
34 inline bool operator!=(const FunctionId &A, const FunctionId &B) {
38 inline bool operator<(const FunctionId &A, const FunctionId &B) {
42 inline bool operator<=(const FunctionId &A, const FunctionId &B) {
46 inline bool operator>(const FunctionId &A, const FunctionId &B) {
50 inline bool operator>=(const FunctionId &A, const FunctionId &B) {
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCCodeView.h33 uint32_t FunctionId; variable
44 : FunctionId(functionid), FileNum(fileNum), Line(line), Column(column), in MCCVLoc()
51 unsigned getFunctionId() const { return FunctionId; } in getFunctionId()
65 void setFunctionId(unsigned FID) { FunctionId = FID; } in setFunctionId()
186 void setCurrentCVLoc(unsigned FunctionId, unsigned FileNo, unsigned Line, in setCurrentCVLoc() argument
188 CurrentCVLoc.setFunctionId(FunctionId); in setCurrentCVLoc()
DMCObjectStreamer.h141 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
144 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *Begin,
DMCStreamer.h812 virtual bool EmitCVFuncIdDirective(unsigned FunctionId);
816 virtual bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
821 virtual void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo,
827 virtual void EmitCVLinetableDirective(unsigned FunctionId,
/external/v8/src/runtime/
Druntime.cc99 bool Runtime::NeedsExactContext(FunctionId id) { in NeedsExactContext()
150 bool Runtime::IsNonReturning(FunctionId id) { in IsNonReturning()
185 bool Runtime::MayAllocate(FunctionId id) { in MayAllocate()
195 bool Runtime::IsAllowListedForFuzzing(FunctionId id) { in IsAllowListedForFuzzing()
248 const Runtime::Function* Runtime::FunctionForId(Runtime::FunctionId id) { in FunctionForId()
263 ExternalReference::Create(static_cast<Runtime::FunctionId>(i)); in RuntimeFunctionTable()
276 std::ostream& operator<<(std::ostream& os, Runtime::FunctionId id) { in operator <<()
Druntime.h687 enum FunctionId : int32_t { in FOR_EACH_INTRINSIC_RETURN_OBJECT() enum
705 FunctionId function_id; in FOR_EACH_INTRINSIC_RETURN_OBJECT()
726 static bool NeedsExactContext(FunctionId id); in FOR_EACH_INTRINSIC_RETURN_OBJECT()
732 static bool IsNonReturning(FunctionId id); in FOR_EACH_INTRINSIC_RETURN_OBJECT()
736 static bool MayAllocate(FunctionId id); in FOR_EACH_INTRINSIC_RETURN_OBJECT()
740 static bool IsAllowListedForFuzzing(FunctionId id); in FOR_EACH_INTRINSIC_RETURN_OBJECT()
746 V8_EXPORT_PRIVATE static const Function* FunctionForId(FunctionId id); in FOR_EACH_INTRINSIC_RETURN_OBJECT()
814 V8_EXPORT_PRIVATE std::ostream& operator<<(std::ostream&, Runtime::FunctionId);
/external/v8/src/interpreter/
Dinterpreter-intrinsics.cc14 bool IntrinsicsHelper::IsSupported(Runtime::FunctionId function_id) { in IsSupported()
27 Runtime::FunctionId function_id) { in FromRuntimeId()
40 Runtime::FunctionId IntrinsicsHelper::ToRuntimeId( in ToRuntimeId()
Dinterpreter-intrinsics.h53 V8_EXPORT_PRIVATE static bool IsSupported(Runtime::FunctionId function_id);
54 static IntrinsicId FromRuntimeId(Runtime::FunctionId function_id);
55 static Runtime::FunctionId ToRuntimeId(IntrinsicId intrinsic_id);
Dbytecode-array-accessor.h120 Runtime::FunctionId GetRuntimeIdOperand(int operand_index) const;
121 Runtime::FunctionId GetIntrinsicIdOperand(int operand_index) const;
Dbytecode-array-builder.h345 BytecodeArrayBuilder& CallRuntime(Runtime::FunctionId function_id,
348 BytecodeArrayBuilder& CallRuntime(Runtime::FunctionId function_id,
351 BytecodeArrayBuilder& CallRuntime(Runtime::FunctionId function_id);
356 BytecodeArrayBuilder& CallRuntimeForPair(Runtime::FunctionId function_id,
362 BytecodeArrayBuilder& CallRuntimeForPair(Runtime::FunctionId function_id,
Dbytecode-array-accessor.cc231 Runtime::FunctionId BytecodeArrayAccessor::GetRuntimeIdOperand( in GetRuntimeIdOperand()
237 return static_cast<Runtime::FunctionId>(raw_id); in GetRuntimeIdOperand()
248 Runtime::FunctionId BytecodeArrayAccessor::GetIntrinsicIdOperand( in GetIntrinsicIdOperand()
Dbytecode-decoder.cc76 const char* NameForRuntimeId(Runtime::FunctionId idx) { in NameForRuntimeId()
156 << NameForRuntimeId(static_cast<Runtime::FunctionId>( in Decode()
/external/v8/src/profiler/
Dsampling-heap-profiler.h50 using FunctionId = uint64_t;
59 AllocationNode* FindChildNode(FunctionId id) { in FindChildNode()
64 AllocationNode* AddChildNode(FunctionId id, in AddChildNode()
69 static FunctionId function_id(int script_id, int start_position, in function_id()
89 std::map<FunctionId, std::unique_ptr<AllocationNode>> children_;
/external/llvm/include/llvm/MC/
DMCCodeView.h32 uint32_t FunctionId; variable
43 : FunctionId(functionid), FileNum(fileNum), Line(line), Column(column), in MCCVLoc()
50 unsigned getFunctionId() const { return FunctionId; } in getFunctionId()
64 void setFunctionId(unsigned FID) { FunctionId = FID; } in setFunctionId()
DMCObjectStreamer.h125 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
128 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *Begin,
/external/v8/src/builtins/
Dbuiltins-lazy-gen.h22 void GenerateTailCallToReturnedCode(Runtime::FunctionId function_id,
26 Runtime::FunctionId function_id,
Dbuiltins-lazy-gen.cc26 Runtime::FunctionId function_id, TNode<JSFunction> function) { in GenerateTailCallToReturnedCode()
34 Runtime::FunctionId function_id, TNode<JSFunction> function) { in TailCallRuntimeIfMarkerEquals()
Dbuiltins-intl-gen.cc26 Runtime::FunctionId format_func_id,
150 Runtime::FunctionId format_func_id, in ListFormatCommon()
/external/llvm/lib/MC/
DMCObjectStreamer.cpp368 void MCObjectStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
376 this->MCStreamer::EmitCVLocDirective(FunctionId, FileNo, Line, Column, in EmitCVLocDirective()
380 void MCObjectStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
383 getContext().getCVContext().emitLineTableForFunction(*this, FunctionId, Begin, in EmitCVLinetableDirective()
385 this->MCStreamer::EmitCVLinetableDirective(FunctionId, Begin, End); in EmitCVLinetableDirective()
DMCAsmStreamer.cpp219 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
222 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *FnStart,
1084 void MCAsmStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
1088 OS << "\t.cv_loc\t" << FunctionId << " " << FileNo << " " << Line << " " in EmitCVLocDirective()
1109 this->MCStreamer::EmitCVLocDirective(FunctionId, FileNo, Line, Column, in EmitCVLocDirective()
1113 void MCAsmStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
1116 OS << "\t.cv_linetable\t" << FunctionId << ", "; in EmitCVLinetableDirective()
1121 this->MCStreamer::EmitCVLinetableDirective(FunctionId, FnStart, FnEnd); in EmitCVLinetableDirective()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCStreamer.cpp252 bool MCStreamer::EmitCVFuncIdDirective(unsigned FunctionId) { in EmitCVFuncIdDirective() argument
253 return getContext().getCVContext().recordFunctionId(FunctionId); in EmitCVFuncIdDirective()
256 bool MCStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument
267 FunctionId, IAFunc, IAFile, IALine, IACol); in EmitCVInlineSiteIdDirective()
270 void MCStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
275 MCCVFunctionInfo *FI = CVC.getCVFunctionInfo(FunctionId); in EmitCVLocDirective()
288 CVC.setCurrentCVLoc(FunctionId, FileNo, Line, Column, PrologueEnd, IsStmt); in EmitCVLocDirective()
291 void MCStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
DMCAsmStreamer.cpp247 bool EmitCVInlineSiteIdDirective(unsigned FunctionId, unsigned IAFunc,
250 void EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, unsigned Line,
253 void EmitCVLinetableDirective(unsigned FunctionId, const MCSymbol *FnStart,
1286 bool MCAsmStreamer::EmitCVInlineSiteIdDirective(unsigned FunctionId, in EmitCVInlineSiteIdDirective() argument
1291 OS << "\t.cv_inline_site_id " << FunctionId << " within " << IAFunc in EmitCVInlineSiteIdDirective()
1293 return MCStreamer::EmitCVInlineSiteIdDirective(FunctionId, IAFunc, IAFile, in EmitCVInlineSiteIdDirective()
1297 void MCAsmStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
1301 OS << "\t.cv_loc\t" << FunctionId << " " << FileNo << " " << Line << " " in EmitCVLocDirective()
1322 this->MCStreamer::EmitCVLocDirective(FunctionId, FileNo, Line, Column, in EmitCVLocDirective()
1326 void MCAsmStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
[all …]
DMCObjectStreamer.cpp442 void MCObjectStreamer::EmitCVLocDirective(unsigned FunctionId, unsigned FileNo, in EmitCVLocDirective() argument
450 this->MCStreamer::EmitCVLocDirective(FunctionId, FileNo, Line, Column, in EmitCVLocDirective()
454 void MCObjectStreamer::EmitCVLinetableDirective(unsigned FunctionId, in EmitCVLinetableDirective() argument
457 getContext().getCVContext().emitLineTableForFunction(*this, FunctionId, Begin, in EmitCVLinetableDirective()
459 this->MCStreamer::EmitCVLinetableDirective(FunctionId, Begin, End); in EmitCVLinetableDirective()
/external/v8/src/codegen/
Dexternal-reference-table.cc150 static constexpr Runtime::FunctionId runtime_functions[] = { in AddRuntimeFunctions()
156 for (Runtime::FunctionId fId : runtime_functions) { in AddRuntimeFunctions()

1234