Home
last modified time | relevance | path

Searched refs:CodeInfo (Results 1 – 25 of 197) sorted by relevance

12345678

/dports/devel/jwasm/JWasm-f0a2fdd/src/
H A Dcodegen.c191 if( CodeInfo->Ofssize >= USE32 ) CodeInfo->prefix.opsiz = TRUE; in output_opc()
194 if( CodeInfo->Ofssize == USE16 ) CodeInfo->prefix.opsiz = TRUE; in output_opc()
198 if( CodeInfo->Ofssize == USE32 ) CodeInfo->prefix.adrsiz = TRUE; in output_opc()
203 if ( CodeInfo->Ofssize != USE32) CodeInfo->prefix.adrsiz = TRUE; in output_opc()
205 if( CodeInfo->Ofssize == USE16 ) CodeInfo->prefix.adrsiz = TRUE; in output_opc()
389 ( CodeInfo->Ofssize == USE32 && CodeInfo->prefix.adrsiz == 1 ) ) in output_opc()
413 if ( CodeInfo->token == T_XLAT || CodeInfo->token == T_XLATB || in output_data()
575 output_data( CodeInfo, CodeInfo->opnd[OPND3].type, OPND3 ); in output_3rd_operand()
914 opnd1, CodeInfo->Ofssize, CodeInfo->iswide, in codegen()
915 CodeInfo->rm_byte, CodeInfo->sib, in codegen()
[all …]
H A Dparser.c549 CodeInfo->Ofssize, CodeInfo->prefix.adrsiz, CodeInfo->opnd[CurrOpnd].data32l )); in set_rm_sib()
556CodeInfo->Ofssize, CodeInfo->prefix.adrsiz, CodeInfo->opnd[CurrOpnd].data32l )); in set_rm_sib()
862 CodeInfo->prefix.opsiz = OPSIZE16( CodeInfo ); in idata_nofixup()
864 CodeInfo->prefix.opsiz = OPSIZE32( CodeInfo ); in idata_nofixup()
1099 …case 2: CodeInfo->opnd[CurrOpnd].type = OP_I16; CodeInfo->prefix.opsiz = OPSIZE16( CodeInfo ); b… in idata_fixup()
1100 …case 4: CodeInfo->opnd[CurrOpnd].type = OP_I32; CodeInfo->prefix.opsiz = OPSIZE32( CodeInfo ); b… in idata_fixup()
1120 CodeInfo->prefix.opsiz = OPSIZE32( CodeInfo ); in idata_fixup()
1236 CodeInfo->mem_type, CodeInfo->Ofssize, CodeInfo->prefix.opsiz, in idata_fixup()
1797 …opndx->type, opndx->value, CodeInfo->mem_type, CodeInfo->rm_byte, CodeInfo->opnd[CurrOpnd].type, C… in memory_operand()
1975 CodeInfo->data[OPND1] = CodeInfo->data[OPND2]; in process_const()
[all …]
H A Dbranch.c103 CodeInfo->token = T_JMP; in jumpExtend()
119 CodeInfo->mem_type = MT_NEAR; in FarCallToNear()
295 if( CodeInfo->mem_type != MT_NEAR && CodeInfo->token != T_CALL && in process_branch()
331 CodeInfo->prefix.opsiz = OPSIZE( CodeInfo->Ofssize, opndx->Ofssize ); in process_branch()
434 ( CodeInfo->isfar == TRUE || CodeInfo->mem_type == MT_FAR )) { in process_branch()
448 CodeInfo->prefix.opsiz = OPSIZE( CodeInfo->Ofssize, opndx->Ofssize ); in process_branch()
450 CodeInfo->prefix.opsiz = OPSIZE( CodeInfo->Ofssize, GetSymOfssize( sym ) ); in process_branch()
473 switch( CodeInfo->token ) { in process_branch()
512 CodeInfo->prefix.opsiz = OPSIZE( CodeInfo->Ofssize, opndx->Ofssize ); in process_branch()
561 CodeInfo->prefix.opsiz = OPSIZE( CodeInfo->Ofssize, opndx->Ofssize ); in process_branch()
[all …]
H A Dfpfixup.c66 void AddFloatingPointEmulationFixup( struct code_info *CodeInfo ) in AddFloatingPointEmulationFixup() argument
76 …FloatingPointEmulationFixup enter, token=%u, regoverride=%d\n", CodeInfo->token, CodeInfo->prefix.… in AddFloatingPointEmulationFixup()
78 if( CodeInfo->token == T_FWAIT ) { in AddFloatingPointEmulationFixup()
80 } else if ( CodeInfo->prefix.RegOverride == EMPTY ) { in AddFloatingPointEmulationFixup()
83 patch = CodeInfo->prefix.RegOverride + 2; in AddFloatingPointEmulationFixup()
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/erts/emulator/asmjit/core/
H A Dtarget.h42 class ASMJIT_DEPRECATED_STRUCT("Use Environment instead of CodeInfo") CodeInfo {
52 inline CodeInfo() noexcept in CodeInfo() function
56 …inline explicit CodeInfo(uint32_t arch, uint32_t subArch = 0, uint64_t baseAddress = Globals::kNoB…
60 …inline explicit CodeInfo(const Environment& environment, uint64_t baseAddress = Globals::kNoBaseAd…
65 inline CodeInfo(const CodeInfo& other) noexcept { init(other); } in CodeInfo() function
71 inline void init(const CodeInfo& other) noexcept { in init()
90 inline CodeInfo& operator=(const CodeInfo& other) noexcept = default;
92 …inline bool operator==(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
93 …inline bool operator!=(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
162 inline CodeInfo codeInfo() const noexcept { return CodeInfo(_environment); } in codeInfo()
/dports/emulators/mess/mame-mame0226/3rdparty/asmjit/src/asmjit/core/
H A Dtarget.h42 class ASMJIT_DEPRECATED_STRUCT("Use Environment instead of CodeInfo") CodeInfo {
52 inline CodeInfo() noexcept in CodeInfo() function
56 …inline explicit CodeInfo(uint32_t arch, uint32_t subArch = 0, uint64_t baseAddress = Globals::kNoB…
60 …inline explicit CodeInfo(const Environment& environment, uint64_t baseAddress = Globals::kNoBaseAd…
65 inline CodeInfo(const CodeInfo& other) noexcept { init(other); } in CodeInfo() function
71 inline void init(const CodeInfo& other) noexcept { in init()
90 inline CodeInfo& operator=(const CodeInfo& other) noexcept = default;
92 …inline bool operator==(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
93 …inline bool operator!=(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
162 inline CodeInfo codeInfo() const noexcept { return CodeInfo(_environment); } in codeInfo()
/dports/emulators/mame/mame-mame0226/3rdparty/asmjit/src/asmjit/core/
H A Dtarget.h42 class ASMJIT_DEPRECATED_STRUCT("Use Environment instead of CodeInfo") CodeInfo {
52 inline CodeInfo() noexcept in CodeInfo() function
56 …inline explicit CodeInfo(uint32_t arch, uint32_t subArch = 0, uint64_t baseAddress = Globals::kNoB…
60 …inline explicit CodeInfo(const Environment& environment, uint64_t baseAddress = Globals::kNoBaseAd…
65 inline CodeInfo(const CodeInfo& other) noexcept { init(other); } in CodeInfo() function
71 inline void init(const CodeInfo& other) noexcept { in init()
90 inline CodeInfo& operator=(const CodeInfo& other) noexcept = default;
92 …inline bool operator==(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
93 …inline bool operator!=(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
162 inline CodeInfo codeInfo() const noexcept { return CodeInfo(_environment); } in codeInfo()
/dports/lang/erlang-wx/otp-OTP-24.1.7/erts/emulator/asmjit/core/
H A Dtarget.h42 class ASMJIT_DEPRECATED_STRUCT("Use Environment instead of CodeInfo") CodeInfo {
52 inline CodeInfo() noexcept in CodeInfo() function
56 …inline explicit CodeInfo(uint32_t arch, uint32_t subArch = 0, uint64_t baseAddress = Globals::kNoB…
60 …inline explicit CodeInfo(const Environment& environment, uint64_t baseAddress = Globals::kNoBaseAd…
65 inline CodeInfo(const CodeInfo& other) noexcept { init(other); } in CodeInfo() function
71 inline void init(const CodeInfo& other) noexcept { in init()
90 inline CodeInfo& operator=(const CodeInfo& other) noexcept = default;
92 …inline bool operator==(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
93 …inline bool operator!=(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
162 inline CodeInfo codeInfo() const noexcept { return CodeInfo(_environment); } in codeInfo()
/dports/lang/erlang/otp-OTP-24.1.7/erts/emulator/asmjit/core/
H A Dtarget.h42 class ASMJIT_DEPRECATED_STRUCT("Use Environment instead of CodeInfo") CodeInfo {
52 inline CodeInfo() noexcept in CodeInfo() function
56 …inline explicit CodeInfo(uint32_t arch, uint32_t subArch = 0, uint64_t baseAddress = Globals::kNoB…
60 …inline explicit CodeInfo(const Environment& environment, uint64_t baseAddress = Globals::kNoBaseAd…
65 inline CodeInfo(const CodeInfo& other) noexcept { init(other); } in CodeInfo() function
71 inline void init(const CodeInfo& other) noexcept { in init()
90 inline CodeInfo& operator=(const CodeInfo& other) noexcept = default;
92 …inline bool operator==(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
93 …inline bool operator!=(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
162 inline CodeInfo codeInfo() const noexcept { return CodeInfo(_environment); } in codeInfo()
/dports/lang/erlang-java/otp-OTP-24.1.7/erts/emulator/asmjit/core/
H A Dtarget.h42 class ASMJIT_DEPRECATED_STRUCT("Use Environment instead of CodeInfo") CodeInfo {
52 inline CodeInfo() noexcept in CodeInfo() function
56 …inline explicit CodeInfo(uint32_t arch, uint32_t subArch = 0, uint64_t baseAddress = Globals::kNoB…
60 …inline explicit CodeInfo(const Environment& environment, uint64_t baseAddress = Globals::kNoBaseAd…
65 inline CodeInfo(const CodeInfo& other) noexcept { init(other); } in CodeInfo() function
71 inline void init(const CodeInfo& other) noexcept { in init()
90 inline CodeInfo& operator=(const CodeInfo& other) noexcept = default;
92 …inline bool operator==(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
93 …inline bool operator!=(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
162 inline CodeInfo codeInfo() const noexcept { return CodeInfo(_environment); } in codeInfo()
/dports/devel/py-spyder/spyder-3.2.7/spyder/utils/introspection/tests/
H A Dtest_fallback_plugin.py25 from spyder.utils.introspection.manager import CodeInfo
37 path, line = p.get_definition(CodeInfo('definition', code, len(code),
42 path, line = p.get_definition(CodeInfo('definition', code, len(code),
48 path, line = p.get_definition(CodeInfo('definition', code, len(code),
55 resp = p.get_definition(CodeInfo('definition', code, len(code),
87 comp = p.get_completions(CodeInfo('completions', code, len(code), 'dummy.py'))
95 comp = p.get_completions(CodeInfo('completions', code, len(code), 'dummy.m'))
110 path, line = p.get_definition(CodeInfo('definition', code, len(code),
115 path, line = p.get_definition(CodeInfo('definition', code, len(code),
130 path, line = p.get_definition(CodeInfo('definition', code, len(code),
[all …]
H A Dtest_jedi_plugin.py16 from spyder.utils.introspection.manager import CodeInfo
41 docs = p.get_info(CodeInfo('info', source_code, len(source_code)))
47 completions = p.get_completions(CodeInfo('completions', source_code,
54 path, line_nr = p.get_definition(CodeInfo('definition', source_code,
61 path, line_nr = p.get_definition(CodeInfo('definition', source_code,
72 path, line = p.get_definition(CodeInfo('definition', source_code,
77 docs = p.get_info(CodeInfo('info', source_code, len(source_code),
87 docs = p.get_info(CodeInfo('info', source_code, len(source_code),
105 completions = p.get_completions(CodeInfo('completions', source_code,
117 completions = p.get_completions(CodeInfo('completions', source_code,
[all …]
H A Dtest_rope_plugin.py14 from spyder.utils.introspection.manager import CodeInfo
32 docs = p.get_info(CodeInfo('info', source_code, len(source_code), __file__))
39 completions = p.get_completions(CodeInfo('completions', source_code,
46 completions = p.get_completions(CodeInfo('completions', source_code,
53 completions = p.get_completions(CodeInfo('completions', source_code,
61 path, line_nr = p.get_definition(CodeInfo('definition', source_code,
72 path, line = p.get_definition(CodeInfo('definition', source_code,
77 docs = p.get_info(CodeInfo('info', source_code, len(source_code),
87 docs = p.get_info(CodeInfo('info', source_code, len(source_code),
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/Core/
H A DCheatManager.cpp27 CodeInfo CheatManager::GetGGCodeInfo(string ggCode) in GetGGCodeInfo()
36 CodeInfo code = { }; in GetGGCodeInfo()
77 CodeInfo code = { }; in GetPARCodeInfo()
86 void CheatManager::AddCode(CodeInfo &code) in AddCode()
106 CodeInfo info = GetGGCodeInfo(code); in AddGameGenieCode()
112 CodeInfo info = GetPARCodeInfo(code); in AddProActionRockyCode()
118 CodeInfo code; in AddCustomCode()
162 CodeInfo code = _absoluteCheatCodes[i]; in ApplyPrgCodes()
171 vector<CodeInfo> CheatManager::GetCheats() in GetCheats()
174 vector<CodeInfo> cheats; in GetCheats()
[all …]
H A DCheatManager.h7 struct CodeInfo struct
39 vector<unique_ptr<vector<CodeInfo>>> _relativeCheatCodes;
40 vector<CodeInfo> _absoluteCheatCodes;
43 CodeInfo GetGGCodeInfo(string ggCode);
44 CodeInfo GetPARCodeInfo(uint32_t parCode);
45 void AddCode(CodeInfo &code);
55 vector<CodeInfo> GetCheats();
56 void SetCheats(vector<CodeInfo> &cheats);
H A DSaveStateMessage.h10 vector<CodeInfo> _activeCheats;
15 CodeInfo* _cheats;
25 _cheatArraySize = (uint32_t)_activeCheats.size() * sizeof(CodeInfo); in ProtectedStreamState()
54 vector<CodeInfo> cheats; in LoadState()
55 for(uint32_t i = 0; i < _cheatArraySize / sizeof(CodeInfo); i++) { in LoadState()
56 cheats.push_back(((CodeInfo*)_cheats)[i]); in LoadState()
/dports/devel/asmjit/asmjit-911a9a50a2cbc9802c4d44e94b8b99e1d9285cf3/src/asmjit/core/
H A Dtarget.h24 class CodeInfo {
42 inline CodeInfo() noexcept in CodeInfo() function
50 …inline explicit CodeInfo(uint32_t archId, uint32_t archMode = 0, uint64_t baseAddress = Globals::k…
58 inline CodeInfo(const CodeInfo& other) noexcept { init(other); } in CodeInfo() function
64 inline void init(const CodeInfo& other) noexcept { in init()
91 inline CodeInfo& operator=(const CodeInfo& other) noexcept = default;
93 …inline bool operator==(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
94 …inline bool operator!=(const CodeInfo& other) const noexcept { return ::memcmp(this, &other, sizeo…
150 CodeInfo _codeInfo;
176 inline const CodeInfo& codeInfo() const noexcept { return _codeInfo; } in codeInfo()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/scripting/mozjs/
H A Dcode.cpp46 const JSFunctionSpec CodeInfo::methods[2] = {
47 MONGO_ATTACH_JS_CONSTRAINED_METHOD(toString, CodeInfo), JS_FS_END,
50 const char* const CodeInfo::className = "Code";
52 void CodeInfo::Functions::toString::call(JSContext* cx, JS::CallArgs args) { in call()
62 void CodeInfo::construct(JSContext* cx, JS::CallArgs args) { in construct()
70 scope->getProto<CodeInfo>().newObject(&thisv); in construct()
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp37 ClonedCodeInfo *CodeInfo) { in CloneBasicBlock() argument
61 if (CodeInfo) { in CloneBasicBlock()
62 CodeInfo->ContainsCalls |= hasCalls; in CloneBasicBlock()
64 CodeInfo->ContainsDynamicAllocas |= hasDynamicAllocas; in CloneBasicBlock()
65 CodeInfo->ContainsDynamicAllocas |= hasStaticAllocas && in CloneBasicBlock()
116 CodeInfo); in CloneFunctionInto()
144 ClonedCodeInfo *CodeInfo) { in CloneFunction() argument
188 ClonedCodeInfo *CodeInfo; member
302 if (CodeInfo) { in CloneBlock()
303 CodeInfo->ContainsCalls |= hasCalls; in CloneBlock()
[all …]
/dports/security/clamav-lts/clamav-0.103.5/libclamav/c++/llvm/include/llvm/Transforms/Utils/
H A DCloning.h107 ClonedCodeInfo *CodeInfo = 0);
130 ClonedCodeInfo *CodeInfo = 0);
134 inline Function *CloneFunction(const Function *F, ClonedCodeInfo *CodeInfo = 0){
136 return CloneFunction(F, VMap, CodeInfo);
153 ClonedCodeInfo *CodeInfo = 0);
171 ClonedCodeInfo *CodeInfo = 0,
/dports/devel/llvm80/llvm-8.0.1.src/lib/Transforms/Utils/
H A DCloneFunction.cpp43 ClonedCodeInfo *CodeInfo, in CloneBasicBlock() argument
73 if (CodeInfo) { in CloneBasicBlock()
74 CodeInfo->ContainsCalls |= hasCalls; in CloneBasicBlock()
252 CodeInfo); in CloneFunction()
267 ClonedCodeInfo *CodeInfo; member
275 CodeInfo(codeInfo) {} in PruningFunctionCloner()
355 if (CodeInfo) in CloneBlock()
412 if (CodeInfo) in CloneBlock()
423 if (CodeInfo) { in CloneBlock()
424 CodeInfo->ContainsCalls |= hasCalls; in CloneBlock()
[all …]
/dports/devel/llvm70/llvm-7.0.1.src/lib/Transforms/Utils/
H A DCloneFunction.cpp42 ClonedCodeInfo *CodeInfo, in CloneBasicBlock() argument
72 if (CodeInfo) { in CloneBasicBlock()
73 CodeInfo->ContainsCalls |= hasCalls; in CloneBasicBlock()
251 CodeInfo); in CloneFunction()
266 ClonedCodeInfo *CodeInfo; member
274 CodeInfo(codeInfo) {} in PruningFunctionCloner()
354 if (CodeInfo) in CloneBlock()
411 if (CodeInfo) in CloneBlock()
422 if (CodeInfo) { in CloneBlock()
423 CodeInfo->ContainsCalls |= hasCalls; in CloneBlock()
[all …]
/dports/security/cryptopp/cryptopp-8.6.0/
H A Dzinflate.h60 struct CodeInfo struct
62CodeInfo(code_t code=0, unsigned int len=0, value_t value=0) : code(code), len(len), value(value) … in code() argument
63 inline bool operator<(const CodeInfo &rhs) const {return code < rhs.code;}
75 const CodeInfo *begin; argument
80 const CodeInfo *end;
88 std::vector<CodeInfo, AllocatorWithCleanup<CodeInfo> > m_codeToValue;
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cryptopp/
H A Dzinflate.h57 struct CodeInfo struct
59CodeInfo(code_t code=0, unsigned int len=0, value_t value=0) : code(code), len(len), value(value) … in code() argument
60 inline bool operator<(const CodeInfo &rhs) const {return code < rhs.code;}
72 const CodeInfo *begin; argument
77 const CodeInfo *end;
85 std::vector<CodeInfo, AllocatorWithCleanup<CodeInfo> > m_codeToValue;
/dports/emulators/citra-qt5/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dzinflate.h60 struct CodeInfo struct
62CodeInfo(code_t code=0, unsigned int len=0, value_t value=0) : code(code), len(len), value(value) … in code() argument
63 inline bool operator<(const CodeInfo &rhs) const {return code < rhs.code;}
75 const CodeInfo *begin; argument
80 const CodeInfo *end;
88 std::vector<CodeInfo, AllocatorWithCleanup<CodeInfo> > m_codeToValue;

12345678